@@ -135,6 +135,10 @@ type MonthlyUsageAttributionValues struct {
135135 FargatePercentage * float64 `json:"fargate_percentage,omitempty"`
136136 // The Fargate usage by tags.
137137 FargateUsage * float64 `json:"fargate_usage,omitempty"`
138+ // The percentage of Flex Logs Starter usage by tags.
139+ FlexLogsStarterPercentage * float64 `json:"flex_logs_starter_percentage,omitempty"`
140+ // The Flex Logs Starter usage by tags.
141+ FlexLogsStarterUsage * float64 `json:"flex_logs_starter_usage,omitempty"`
138142 // The percentage of Flex Stored Logs usage by tags.
139143 FlexStoredLogsPercentage * float64 `json:"flex_stored_logs_percentage,omitempty"`
140144 // The Flex Stored Logs usage by tags.
@@ -2085,6 +2089,62 @@ func (o *MonthlyUsageAttributionValues) SetFargateUsage(v float64) {
20852089 o .FargateUsage = & v
20862090}
20872091
2092+ // GetFlexLogsStarterPercentage returns the FlexLogsStarterPercentage field value if set, zero value otherwise.
2093+ func (o * MonthlyUsageAttributionValues ) GetFlexLogsStarterPercentage () float64 {
2094+ if o == nil || o .FlexLogsStarterPercentage == nil {
2095+ var ret float64
2096+ return ret
2097+ }
2098+ return * o .FlexLogsStarterPercentage
2099+ }
2100+
2101+ // GetFlexLogsStarterPercentageOk returns a tuple with the FlexLogsStarterPercentage field value if set, nil otherwise
2102+ // and a boolean to check if the value has been set.
2103+ func (o * MonthlyUsageAttributionValues ) GetFlexLogsStarterPercentageOk () (* float64 , bool ) {
2104+ if o == nil || o .FlexLogsStarterPercentage == nil {
2105+ return nil , false
2106+ }
2107+ return o .FlexLogsStarterPercentage , true
2108+ }
2109+
2110+ // HasFlexLogsStarterPercentage returns a boolean if a field has been set.
2111+ func (o * MonthlyUsageAttributionValues ) HasFlexLogsStarterPercentage () bool {
2112+ return o != nil && o .FlexLogsStarterPercentage != nil
2113+ }
2114+
2115+ // SetFlexLogsStarterPercentage gets a reference to the given float64 and assigns it to the FlexLogsStarterPercentage field.
2116+ func (o * MonthlyUsageAttributionValues ) SetFlexLogsStarterPercentage (v float64 ) {
2117+ o .FlexLogsStarterPercentage = & v
2118+ }
2119+
2120+ // GetFlexLogsStarterUsage returns the FlexLogsStarterUsage field value if set, zero value otherwise.
2121+ func (o * MonthlyUsageAttributionValues ) GetFlexLogsStarterUsage () float64 {
2122+ if o == nil || o .FlexLogsStarterUsage == nil {
2123+ var ret float64
2124+ return ret
2125+ }
2126+ return * o .FlexLogsStarterUsage
2127+ }
2128+
2129+ // GetFlexLogsStarterUsageOk returns a tuple with the FlexLogsStarterUsage field value if set, nil otherwise
2130+ // and a boolean to check if the value has been set.
2131+ func (o * MonthlyUsageAttributionValues ) GetFlexLogsStarterUsageOk () (* float64 , bool ) {
2132+ if o == nil || o .FlexLogsStarterUsage == nil {
2133+ return nil , false
2134+ }
2135+ return o .FlexLogsStarterUsage , true
2136+ }
2137+
2138+ // HasFlexLogsStarterUsage returns a boolean if a field has been set.
2139+ func (o * MonthlyUsageAttributionValues ) HasFlexLogsStarterUsage () bool {
2140+ return o != nil && o .FlexLogsStarterUsage != nil
2141+ }
2142+
2143+ // SetFlexLogsStarterUsage gets a reference to the given float64 and assigns it to the FlexLogsStarterUsage field.
2144+ func (o * MonthlyUsageAttributionValues ) SetFlexLogsStarterUsage (v float64 ) {
2145+ o .FlexLogsStarterUsage = & v
2146+ }
2147+
20882148// GetFlexStoredLogsPercentage returns the FlexStoredLogsPercentage field value if set, zero value otherwise.
20892149func (o * MonthlyUsageAttributionValues ) GetFlexStoredLogsPercentage () float64 {
20902150 if o == nil || o .FlexStoredLogsPercentage == nil {
@@ -4965,6 +5025,12 @@ func (o MonthlyUsageAttributionValues) MarshalJSON() ([]byte, error) {
49655025 if o .FargateUsage != nil {
49665026 toSerialize ["fargate_usage" ] = o .FargateUsage
49675027 }
5028+ if o .FlexLogsStarterPercentage != nil {
5029+ toSerialize ["flex_logs_starter_percentage" ] = o .FlexLogsStarterPercentage
5030+ }
5031+ if o .FlexLogsStarterUsage != nil {
5032+ toSerialize ["flex_logs_starter_usage" ] = o .FlexLogsStarterUsage
5033+ }
49685034 if o .FlexStoredLogsPercentage != nil {
49695035 toSerialize ["flex_stored_logs_percentage" ] = o .FlexStoredLogsPercentage
49705036 }
@@ -5325,6 +5391,8 @@ func (o *MonthlyUsageAttributionValues) UnmarshalJSON(bytes []byte) (err error)
53255391 EstimatedIngestedSpansUsage * float64 `json:"estimated_ingested_spans_usage,omitempty"`
53265392 FargatePercentage * float64 `json:"fargate_percentage,omitempty"`
53275393 FargateUsage * float64 `json:"fargate_usage,omitempty"`
5394+ FlexLogsStarterPercentage * float64 `json:"flex_logs_starter_percentage,omitempty"`
5395+ FlexLogsStarterUsage * float64 `json:"flex_logs_starter_usage,omitempty"`
53285396 FlexStoredLogsPercentage * float64 `json:"flex_stored_logs_percentage,omitempty"`
53295397 FlexStoredLogsUsage * float64 `json:"flex_stored_logs_usage,omitempty"`
53305398 FunctionsPercentage * float64 `json:"functions_percentage,omitempty"`
@@ -5427,7 +5495,7 @@ func (o *MonthlyUsageAttributionValues) UnmarshalJSON(bytes []byte) (err error)
54275495 }
54285496 additionalProperties := make (map [string ]interface {})
54295497 if err = datadog .Unmarshal (bytes , & additionalProperties ); err == nil {
5430- datadog .DeleteKeys (additionalProperties , & []string {"api_percentage" , "api_usage" , "apm_fargate_percentage" , "apm_fargate_usage" , "apm_host_percentage" , "apm_host_usage" , "apm_usm_percentage" , "apm_usm_usage" , "appsec_fargate_percentage" , "appsec_fargate_usage" , "appsec_percentage" , "appsec_usage" , "asm_serverless_traced_invocations_percentage" , "asm_serverless_traced_invocations_usage" , "bits_ai_investigations_percentage" , "bits_ai_investigations_usage" , "browser_percentage" , "browser_usage" , "ci_pipeline_indexed_spans_percentage" , "ci_pipeline_indexed_spans_usage" , "ci_test_indexed_spans_percentage" , "ci_test_indexed_spans_usage" , "ci_visibility_itr_percentage" , "ci_visibility_itr_usage" , "cloud_siem_percentage" , "cloud_siem_usage" , "code_security_host_percentage" , "code_security_host_usage" , "container_excl_agent_percentage" , "container_excl_agent_usage" , "container_percentage" , "container_usage" , "cspm_containers_percentage" , "cspm_containers_usage" , "cspm_hosts_percentage" , "cspm_hosts_usage" , "custom_event_percentage" , "custom_event_usage" , "custom_ingested_timeseries_percentage" , "custom_ingested_timeseries_usage" , "custom_timeseries_percentage" , "custom_timeseries_usage" , "cws_containers_percentage" , "cws_containers_usage" , "cws_fargate_task_percentage" , "cws_fargate_task_usage" , "cws_hosts_percentage" , "cws_hosts_usage" , "data_jobs_monitoring_usage" , "data_stream_monitoring_usage" , "dbm_hosts_percentage" , "dbm_hosts_usage" , "dbm_queries_percentage" , "dbm_queries_usage" , "error_tracking_percentage" , "error_tracking_usage" , "estimated_indexed_spans_percentage" , "estimated_indexed_spans_usage" , "estimated_ingested_spans_percentage" , "estimated_ingested_spans_usage" , "fargate_percentage" , "fargate_usage" , "flex_stored_logs_percentage" , "flex_stored_logs_usage" , "functions_percentage" , "functions_usage" , "incident_management_monthly_active_users_percentage" , "incident_management_monthly_active_users_usage" , "indexed_spans_percentage" , "indexed_spans_usage" , "infra_host_percentage" , "infra_host_usage" , "ingested_logs_bytes_percentage" , "ingested_logs_bytes_usage" , "ingested_spans_bytes_percentage" , "ingested_spans_bytes_usage" , "invocations_percentage" , "invocations_usage" , "lambda_traced_invocations_percentage" , "lambda_traced_invocations_usage" , "llm_observability_percentage" , "llm_observability_usage" , "llm_spans_percentage" , "llm_spans_usage" , "logs_indexed_15day_percentage" , "logs_indexed_15day_usage" , "logs_indexed_180day_percentage" , "logs_indexed_180day_usage" , "logs_indexed_1day_percentage" , "logs_indexed_1day_usage" , "logs_indexed_30day_percentage" , "logs_indexed_30day_usage" , "logs_indexed_360day_percentage" , "logs_indexed_360day_usage" , "logs_indexed_3day_percentage" , "logs_indexed_3day_usage" , "logs_indexed_45day_percentage" , "logs_indexed_45day_usage" , "logs_indexed_60day_percentage" , "logs_indexed_60day_usage" , "logs_indexed_7day_percentage" , "logs_indexed_7day_usage" , "logs_indexed_90day_percentage" , "logs_indexed_90day_usage" , "logs_indexed_custom_retention_percentage" , "logs_indexed_custom_retention_usage" , "mobile_app_testing_percentage" , "mobile_app_testing_usage" , "ndm_netflow_percentage" , "ndm_netflow_usage" , "network_device_wireless_percentage" , "network_device_wireless_usage" , "npm_host_percentage" , "npm_host_usage" , "obs_pipeline_bytes_percentage" , "obs_pipeline_bytes_usage" , "obs_pipelines_vcpu_percentage" , "obs_pipelines_vcpu_usage" , "online_archive_percentage" , "online_archive_usage" , "product_analytics_session_percentage" , "product_analytics_session_usage" , "profiled_container_percentage" , "profiled_container_usage" , "profiled_fargate_percentage" , "profiled_fargate_usage" , "profiled_host_percentage" , "profiled_host_usage" , "published_app_percentage" , "published_app_usage" , "rum_browser_mobile_sessions_percentage" , "rum_browser_mobile_sessions_usage" , "rum_ingested_percentage" , "rum_ingested_usage" , "rum_investigate_percentage" , "rum_investigate_usage" , "rum_replay_sessions_percentage" , "rum_replay_sessions_usage" , "rum_session_replay_add_on_percentage" , "rum_session_replay_add_on_usage" , "sca_fargate_percentage" , "sca_fargate_usage" , "sds_scanned_bytes_percentage" , "sds_scanned_bytes_usage" , "serverless_apps_percentage" , "serverless_apps_usage" , "siem_analyzed_logs_add_on_percentage" , "siem_analyzed_logs_add_on_usage" , "siem_ingested_bytes_percentage" , "siem_ingested_bytes_usage" , "snmp_percentage" , "snmp_usage" , "universal_service_monitoring_percentage" , "universal_service_monitoring_usage" , "vuln_management_hosts_percentage" , "vuln_management_hosts_usage" , "workflow_executions_percentage" , "workflow_executions_usage" })
5498+ datadog .DeleteKeys (additionalProperties , & []string {"api_percentage" , "api_usage" , "apm_fargate_percentage" , "apm_fargate_usage" , "apm_host_percentage" , "apm_host_usage" , "apm_usm_percentage" , "apm_usm_usage" , "appsec_fargate_percentage" , "appsec_fargate_usage" , "appsec_percentage" , "appsec_usage" , "asm_serverless_traced_invocations_percentage" , "asm_serverless_traced_invocations_usage" , "bits_ai_investigations_percentage" , "bits_ai_investigations_usage" , "browser_percentage" , "browser_usage" , "ci_pipeline_indexed_spans_percentage" , "ci_pipeline_indexed_spans_usage" , "ci_test_indexed_spans_percentage" , "ci_test_indexed_spans_usage" , "ci_visibility_itr_percentage" , "ci_visibility_itr_usage" , "cloud_siem_percentage" , "cloud_siem_usage" , "code_security_host_percentage" , "code_security_host_usage" , "container_excl_agent_percentage" , "container_excl_agent_usage" , "container_percentage" , "container_usage" , "cspm_containers_percentage" , "cspm_containers_usage" , "cspm_hosts_percentage" , "cspm_hosts_usage" , "custom_event_percentage" , "custom_event_usage" , "custom_ingested_timeseries_percentage" , "custom_ingested_timeseries_usage" , "custom_timeseries_percentage" , "custom_timeseries_usage" , "cws_containers_percentage" , "cws_containers_usage" , "cws_fargate_task_percentage" , "cws_fargate_task_usage" , "cws_hosts_percentage" , "cws_hosts_usage" , "data_jobs_monitoring_usage" , "data_stream_monitoring_usage" , "dbm_hosts_percentage" , "dbm_hosts_usage" , "dbm_queries_percentage" , "dbm_queries_usage" , "error_tracking_percentage" , "error_tracking_usage" , "estimated_indexed_spans_percentage" , "estimated_indexed_spans_usage" , "estimated_ingested_spans_percentage" , "estimated_ingested_spans_usage" , "fargate_percentage" , "fargate_usage" , "flex_logs_starter_percentage" , "flex_logs_starter_usage" , "flex_stored_logs_percentage" , "flex_stored_logs_usage" , "functions_percentage" , "functions_usage" , "incident_management_monthly_active_users_percentage" , "incident_management_monthly_active_users_usage" , "indexed_spans_percentage" , "indexed_spans_usage" , "infra_host_percentage" , "infra_host_usage" , "ingested_logs_bytes_percentage" , "ingested_logs_bytes_usage" , "ingested_spans_bytes_percentage" , "ingested_spans_bytes_usage" , "invocations_percentage" , "invocations_usage" , "lambda_traced_invocations_percentage" , "lambda_traced_invocations_usage" , "llm_observability_percentage" , "llm_observability_usage" , "llm_spans_percentage" , "llm_spans_usage" , "logs_indexed_15day_percentage" , "logs_indexed_15day_usage" , "logs_indexed_180day_percentage" , "logs_indexed_180day_usage" , "logs_indexed_1day_percentage" , "logs_indexed_1day_usage" , "logs_indexed_30day_percentage" , "logs_indexed_30day_usage" , "logs_indexed_360day_percentage" , "logs_indexed_360day_usage" , "logs_indexed_3day_percentage" , "logs_indexed_3day_usage" , "logs_indexed_45day_percentage" , "logs_indexed_45day_usage" , "logs_indexed_60day_percentage" , "logs_indexed_60day_usage" , "logs_indexed_7day_percentage" , "logs_indexed_7day_usage" , "logs_indexed_90day_percentage" , "logs_indexed_90day_usage" , "logs_indexed_custom_retention_percentage" , "logs_indexed_custom_retention_usage" , "mobile_app_testing_percentage" , "mobile_app_testing_usage" , "ndm_netflow_percentage" , "ndm_netflow_usage" , "network_device_wireless_percentage" , "network_device_wireless_usage" , "npm_host_percentage" , "npm_host_usage" , "obs_pipeline_bytes_percentage" , "obs_pipeline_bytes_usage" , "obs_pipelines_vcpu_percentage" , "obs_pipelines_vcpu_usage" , "online_archive_percentage" , "online_archive_usage" , "product_analytics_session_percentage" , "product_analytics_session_usage" , "profiled_container_percentage" , "profiled_container_usage" , "profiled_fargate_percentage" , "profiled_fargate_usage" , "profiled_host_percentage" , "profiled_host_usage" , "published_app_percentage" , "published_app_usage" , "rum_browser_mobile_sessions_percentage" , "rum_browser_mobile_sessions_usage" , "rum_ingested_percentage" , "rum_ingested_usage" , "rum_investigate_percentage" , "rum_investigate_usage" , "rum_replay_sessions_percentage" , "rum_replay_sessions_usage" , "rum_session_replay_add_on_percentage" , "rum_session_replay_add_on_usage" , "sca_fargate_percentage" , "sca_fargate_usage" , "sds_scanned_bytes_percentage" , "sds_scanned_bytes_usage" , "serverless_apps_percentage" , "serverless_apps_usage" , "siem_analyzed_logs_add_on_percentage" , "siem_analyzed_logs_add_on_usage" , "siem_ingested_bytes_percentage" , "siem_ingested_bytes_usage" , "snmp_percentage" , "snmp_usage" , "universal_service_monitoring_percentage" , "universal_service_monitoring_usage" , "vuln_management_hosts_percentage" , "vuln_management_hosts_usage" , "workflow_executions_percentage" , "workflow_executions_usage" })
54315499 } else {
54325500 return err
54335501 }
@@ -5493,6 +5561,8 @@ func (o *MonthlyUsageAttributionValues) UnmarshalJSON(bytes []byte) (err error)
54935561 o .EstimatedIngestedSpansUsage = all .EstimatedIngestedSpansUsage
54945562 o .FargatePercentage = all .FargatePercentage
54955563 o .FargateUsage = all .FargateUsage
5564+ o .FlexLogsStarterPercentage = all .FlexLogsStarterPercentage
5565+ o .FlexLogsStarterUsage = all .FlexLogsStarterUsage
54965566 o .FlexStoredLogsPercentage = all .FlexStoredLogsPercentage
54975567 o .FlexStoredLogsUsage = all .FlexStoredLogsUsage
54985568 o .FunctionsPercentage = all .FunctionsPercentage
0 commit comments