Skip to content

Commit d7caf74

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Added spec for flex_logs_starter (#3645)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent 7346b32 commit d7caf74

4 files changed

Lines changed: 91 additions & 1 deletion

File tree

.generator/schemas/v1/openapi.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4514,6 +4514,7 @@ components:
45144514
- estimated_indexed_spans_usage
45154515
- estimated_ingested_spans_usage
45164516
- fargate_usage
4517+
- flex_logs_starter
45174518
- flex_stored_logs
45184519
- functions_usage
45194520
- incident_management_monthly_active_users_usage
@@ -4598,6 +4599,7 @@ components:
45984599
- ESTIMATED_INDEXED_SPANS_USAGE
45994600
- ESTIMATED_INGESTED_SPANS_USAGE
46004601
- FARGATE_USAGE
4602+
- FLEX_LOGS_STARTER
46014603
- FLEX_STORED_LOGS
46024604
- FUNCTIONS_USAGE
46034605
- INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE
@@ -9086,6 +9088,8 @@ components:
90869088
- estimated_ingested_spans_percentage
90879089
- fargate_usage
90889090
- fargate_percentage
9091+
- flex_logs_starter_usage
9092+
- flex_logs_starter_percentage
90899093
- flex_stored_logs_usage
90909094
- flex_stored_logs_percentage
90919095
- functions_usage
@@ -9249,6 +9253,8 @@ components:
92499253
- ESTIMATED_INGESTED_SPANS_PERCENTAGE
92509254
- FARGATE_USAGE
92519255
- FARGATE_PERCENTAGE
9256+
- FLEX_LOGS_STARTER_USAGE
9257+
- FLEX_LOGS_STARTER_PERCENTAGE
92529258
- FLEX_STORED_LOGS_USAGE
92539259
- FLEX_STORED_LOGS_PERCENTAGE
92549260
- FUNCTIONS_USAGE
@@ -9620,6 +9626,14 @@ components:
96209626
description: The Fargate usage by tags.
96219627
format: double
96229628
type: number
9629+
flex_logs_starter_percentage:
9630+
description: The percentage of Flex Logs Starter usage by tags.
9631+
format: double
9632+
type: number
9633+
flex_logs_starter_usage:
9634+
description: The Flex Logs Starter usage by tags.
9635+
format: double
9636+
type: number
96239637
flex_stored_logs_percentage:
96249638
description: The percentage of Flex Stored Logs usage by tags.
96259639
format: double

api/datadogV1/model_hourly_usage_attribution_usage_type.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ const (
5050
HOURLYUSAGEATTRIBUTIONUSAGETYPE_ESTIMATED_INDEXED_SPANS_USAGE HourlyUsageAttributionUsageType = "estimated_indexed_spans_usage"
5151
HOURLYUSAGEATTRIBUTIONUSAGETYPE_ESTIMATED_INGESTED_SPANS_USAGE HourlyUsageAttributionUsageType = "estimated_ingested_spans_usage"
5252
HOURLYUSAGEATTRIBUTIONUSAGETYPE_FARGATE_USAGE HourlyUsageAttributionUsageType = "fargate_usage"
53+
HOURLYUSAGEATTRIBUTIONUSAGETYPE_FLEX_LOGS_STARTER HourlyUsageAttributionUsageType = "flex_logs_starter"
5354
HOURLYUSAGEATTRIBUTIONUSAGETYPE_FLEX_STORED_LOGS HourlyUsageAttributionUsageType = "flex_stored_logs"
5455
HOURLYUSAGEATTRIBUTIONUSAGETYPE_FUNCTIONS_USAGE HourlyUsageAttributionUsageType = "functions_usage"
5556
HOURLYUSAGEATTRIBUTIONUSAGETYPE_INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE HourlyUsageAttributionUsageType = "incident_management_monthly_active_users_usage"
@@ -135,6 +136,7 @@ var allowedHourlyUsageAttributionUsageTypeEnumValues = []HourlyUsageAttributionU
135136
HOURLYUSAGEATTRIBUTIONUSAGETYPE_ESTIMATED_INDEXED_SPANS_USAGE,
136137
HOURLYUSAGEATTRIBUTIONUSAGETYPE_ESTIMATED_INGESTED_SPANS_USAGE,
137138
HOURLYUSAGEATTRIBUTIONUSAGETYPE_FARGATE_USAGE,
139+
HOURLYUSAGEATTRIBUTIONUSAGETYPE_FLEX_LOGS_STARTER,
138140
HOURLYUSAGEATTRIBUTIONUSAGETYPE_FLEX_STORED_LOGS,
139141
HOURLYUSAGEATTRIBUTIONUSAGETYPE_FUNCTIONS_USAGE,
140142
HOURLYUSAGEATTRIBUTIONUSAGETYPE_INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE,

api/datadogV1/model_monthly_usage_attribution_supported_metrics.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ const (
7373
MONTHLYUSAGEATTRIBUTIONSUPPORTEDMETRICS_ESTIMATED_INGESTED_SPANS_PERCENTAGE MonthlyUsageAttributionSupportedMetrics = "estimated_ingested_spans_percentage"
7474
MONTHLYUSAGEATTRIBUTIONSUPPORTEDMETRICS_FARGATE_USAGE MonthlyUsageAttributionSupportedMetrics = "fargate_usage"
7575
MONTHLYUSAGEATTRIBUTIONSUPPORTEDMETRICS_FARGATE_PERCENTAGE MonthlyUsageAttributionSupportedMetrics = "fargate_percentage"
76+
MONTHLYUSAGEATTRIBUTIONSUPPORTEDMETRICS_FLEX_LOGS_STARTER_USAGE MonthlyUsageAttributionSupportedMetrics = "flex_logs_starter_usage"
77+
MONTHLYUSAGEATTRIBUTIONSUPPORTEDMETRICS_FLEX_LOGS_STARTER_PERCENTAGE MonthlyUsageAttributionSupportedMetrics = "flex_logs_starter_percentage"
7678
MONTHLYUSAGEATTRIBUTIONSUPPORTEDMETRICS_FLEX_STORED_LOGS_USAGE MonthlyUsageAttributionSupportedMetrics = "flex_stored_logs_usage"
7779
MONTHLYUSAGEATTRIBUTIONSUPPORTEDMETRICS_FLEX_STORED_LOGS_PERCENTAGE MonthlyUsageAttributionSupportedMetrics = "flex_stored_logs_percentage"
7880
MONTHLYUSAGEATTRIBUTIONSUPPORTEDMETRICS_FUNCTIONS_USAGE MonthlyUsageAttributionSupportedMetrics = "functions_usage"
@@ -237,6 +239,8 @@ var allowedMonthlyUsageAttributionSupportedMetricsEnumValues = []MonthlyUsageAtt
237239
MONTHLYUSAGEATTRIBUTIONSUPPORTEDMETRICS_ESTIMATED_INGESTED_SPANS_PERCENTAGE,
238240
MONTHLYUSAGEATTRIBUTIONSUPPORTEDMETRICS_FARGATE_USAGE,
239241
MONTHLYUSAGEATTRIBUTIONSUPPORTEDMETRICS_FARGATE_PERCENTAGE,
242+
MONTHLYUSAGEATTRIBUTIONSUPPORTEDMETRICS_FLEX_LOGS_STARTER_USAGE,
243+
MONTHLYUSAGEATTRIBUTIONSUPPORTEDMETRICS_FLEX_LOGS_STARTER_PERCENTAGE,
240244
MONTHLYUSAGEATTRIBUTIONSUPPORTEDMETRICS_FLEX_STORED_LOGS_USAGE,
241245
MONTHLYUSAGEATTRIBUTIONSUPPORTEDMETRICS_FLEX_STORED_LOGS_PERCENTAGE,
242246
MONTHLYUSAGEATTRIBUTIONSUPPORTEDMETRICS_FUNCTIONS_USAGE,

api/datadogV1/model_monthly_usage_attribution_values.go

Lines changed: 71 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.
20892149
func (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

Comments
 (0)