Skip to content

Commit 889a255

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add Flex_Logs_Compute_XL to API Spec (#3266)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent 56f985a commit 889a255

File tree

5 files changed

+125
-5
lines changed

5 files changed

+125
-5
lines changed

.generated-info

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"spec_repo_commit": "6e520c2",
3-
"generated": "2025-08-05 21:12:28.679"
2+
"spec_repo_commit": "f391bf6",
3+
"generated": "2025-08-06 15:15:49.158"
44
}

.generator/schemas/v1/openapi.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20817,6 +20817,11 @@ components:
2081720817
over all hours in the current date for the given org.
2081820818
format: int64
2081920819
type: integer
20820+
flex_logs_compute_xlarge_avg:
20821+
description: Shows the average number of Flex Logs Compute Extra Large Instances
20822+
over all hours in the current date for the given org.
20823+
format: int64
20824+
type: integer
2082020825
flex_logs_compute_xsmall_avg:
2082120826
description: Shows the average number of Flex Logs Compute Extra Small Instances
2082220827
over all hours in the current date for the given org.
@@ -21761,6 +21766,11 @@ components:
2176121766
over all hours in the current date for the given org.
2176221767
format: int64
2176321768
type: integer
21769+
flex_logs_compute_xlarge_avg:
21770+
description: Shows the average number of Flex Logs Compute Extra Large Instances
21771+
over all hours in the current date for the given org.
21772+
format: int64
21773+
type: integer
2176421774
flex_logs_compute_xsmall_avg:
2176521775
description: Shows the average number of Flex Logs Compute Extra Small Instances
2176621776
over all hours in the current date for the given org.
@@ -22712,6 +22722,11 @@ components:
2271222722
over all hours in the current months for all organizations.
2271322723
format: int64
2271422724
type: integer
22725+
flex_logs_compute_xlarge_avg_sum:
22726+
description: Shows the average number of Flex Logs Compute Extra Large Instances
22727+
over all hours in the current months for all organizations.
22728+
format: int64
22729+
type: integer
2271522730
flex_logs_compute_xsmall_avg_sum:
2271622731
description: Shows the average number of Flex Logs Compute Extra Small Instances
2271722732
over all hours in the current months for all organizations.

api/datadogV1/model_usage_summary_date.go

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,8 @@ type UsageSummaryDate struct {
187187
FlexLogsComputeMediumAvg *int64 `json:"flex_logs_compute_medium_avg,omitempty"`
188188
// Shows the average number of Flex Logs Compute Small Instances over all hours in the current date for the given org.
189189
FlexLogsComputeSmallAvg *int64 `json:"flex_logs_compute_small_avg,omitempty"`
190+
// Shows the average number of Flex Logs Compute Extra Large Instances over all hours in the current date for the given org.
191+
FlexLogsComputeXlargeAvg *int64 `json:"flex_logs_compute_xlarge_avg,omitempty"`
190192
// Shows the average number of Flex Logs Compute Extra Small Instances over all hours in the current date for the given org.
191193
FlexLogsComputeXsmallAvg *int64 `json:"flex_logs_compute_xsmall_avg,omitempty"`
192194
// Shows the average number of Flex Logs Starter Instances over all hours in the current date for the given org.
@@ -2813,6 +2815,34 @@ func (o *UsageSummaryDate) SetFlexLogsComputeSmallAvg(v int64) {
28132815
o.FlexLogsComputeSmallAvg = &v
28142816
}
28152817

2818+
// GetFlexLogsComputeXlargeAvg returns the FlexLogsComputeXlargeAvg field value if set, zero value otherwise.
2819+
func (o *UsageSummaryDate) GetFlexLogsComputeXlargeAvg() int64 {
2820+
if o == nil || o.FlexLogsComputeXlargeAvg == nil {
2821+
var ret int64
2822+
return ret
2823+
}
2824+
return *o.FlexLogsComputeXlargeAvg
2825+
}
2826+
2827+
// GetFlexLogsComputeXlargeAvgOk returns a tuple with the FlexLogsComputeXlargeAvg field value if set, nil otherwise
2828+
// and a boolean to check if the value has been set.
2829+
func (o *UsageSummaryDate) GetFlexLogsComputeXlargeAvgOk() (*int64, bool) {
2830+
if o == nil || o.FlexLogsComputeXlargeAvg == nil {
2831+
return nil, false
2832+
}
2833+
return o.FlexLogsComputeXlargeAvg, true
2834+
}
2835+
2836+
// HasFlexLogsComputeXlargeAvg returns a boolean if a field has been set.
2837+
func (o *UsageSummaryDate) HasFlexLogsComputeXlargeAvg() bool {
2838+
return o != nil && o.FlexLogsComputeXlargeAvg != nil
2839+
}
2840+
2841+
// SetFlexLogsComputeXlargeAvg gets a reference to the given int64 and assigns it to the FlexLogsComputeXlargeAvg field.
2842+
func (o *UsageSummaryDate) SetFlexLogsComputeXlargeAvg(v int64) {
2843+
o.FlexLogsComputeXlargeAvg = &v
2844+
}
2845+
28162846
// GetFlexLogsComputeXsmallAvg returns the FlexLogsComputeXsmallAvg field value if set, zero value otherwise.
28172847
func (o *UsageSummaryDate) GetFlexLogsComputeXsmallAvg() int64 {
28182848
if o == nil || o.FlexLogsComputeXsmallAvg == nil {
@@ -5578,6 +5608,9 @@ func (o UsageSummaryDate) MarshalJSON() ([]byte, error) {
55785608
if o.FlexLogsComputeSmallAvg != nil {
55795609
toSerialize["flex_logs_compute_small_avg"] = o.FlexLogsComputeSmallAvg
55805610
}
5611+
if o.FlexLogsComputeXlargeAvg != nil {
5612+
toSerialize["flex_logs_compute_xlarge_avg"] = o.FlexLogsComputeXlargeAvg
5613+
}
55815614
if o.FlexLogsComputeXsmallAvg != nil {
55825615
toSerialize["flex_logs_compute_xsmall_avg"] = o.FlexLogsComputeXsmallAvg
55835616
}
@@ -5938,6 +5971,7 @@ func (o *UsageSummaryDate) UnmarshalJSON(bytes []byte) (err error) {
59385971
FlexLogsComputeLargeAvg *int64 `json:"flex_logs_compute_large_avg,omitempty"`
59395972
FlexLogsComputeMediumAvg *int64 `json:"flex_logs_compute_medium_avg,omitempty"`
59405973
FlexLogsComputeSmallAvg *int64 `json:"flex_logs_compute_small_avg,omitempty"`
5974+
FlexLogsComputeXlargeAvg *int64 `json:"flex_logs_compute_xlarge_avg,omitempty"`
59415975
FlexLogsComputeXsmallAvg *int64 `json:"flex_logs_compute_xsmall_avg,omitempty"`
59425976
FlexLogsStarterAvg *int64 `json:"flex_logs_starter_avg,omitempty"`
59435977
FlexLogsStarterStorageIndexAvg *int64 `json:"flex_logs_starter_storage_index_avg,omitempty"`
@@ -6032,7 +6066,7 @@ func (o *UsageSummaryDate) UnmarshalJSON(bytes []byte) (err error) {
60326066
}
60336067
additionalProperties := make(map[string]interface{})
60346068
if err = datadog.Unmarshal(bytes, &additionalProperties); err == nil {
6035-
datadog.DeleteKeys(additionalProperties, &[]string{"agent_host_top99p", "apm_azure_app_service_host_top99p", "apm_devsecops_host_top99p", "apm_fargate_count_avg", "apm_host_top99p", "appsec_fargate_count_avg", "asm_serverless_sum", "audit_logs_lines_indexed_sum", "audit_trail_enabled_hwm", "avg_profiled_fargate_tasks", "aws_host_top99p", "aws_lambda_func_count", "aws_lambda_invocations_sum", "azure_app_service_top99p", "billable_ingested_bytes_sum", "browser_rum_lite_session_count_sum", "browser_rum_replay_session_count_sum", "browser_rum_units_sum", "ci_pipeline_indexed_spans_sum", "ci_test_indexed_spans_sum", "ci_visibility_itr_committers_hwm", "ci_visibility_pipeline_committers_hwm", "ci_visibility_test_committers_hwm", "cloud_cost_management_aws_host_count_avg", "cloud_cost_management_azure_host_count_avg", "cloud_cost_management_gcp_host_count_avg", "cloud_cost_management_host_count_avg", "cloud_siem_events_sum", "code_analysis_sa_committers_hwm", "code_analysis_sca_committers_hwm", "code_security_host_top99p", "container_avg", "container_excl_agent_avg", "container_hwm", "csm_container_enterprise_compliance_count_sum", "csm_container_enterprise_cws_count_sum", "csm_container_enterprise_total_count_sum", "csm_host_enterprise_aas_host_count_top99p", "csm_host_enterprise_aws_host_count_top99p", "csm_host_enterprise_azure_host_count_top99p", "csm_host_enterprise_compliance_host_count_top99p", "csm_host_enterprise_cws_host_count_top99p", "csm_host_enterprise_gcp_host_count_top99p", "csm_host_enterprise_total_host_count_top99p", "cspm_aas_host_top99p", "cspm_aws_host_top99p", "cspm_azure_host_top99p", "cspm_container_avg", "cspm_container_hwm", "cspm_gcp_host_top99p", "cspm_host_top99p", "custom_ts_avg", "cws_container_count_avg", "cws_fargate_task_avg", "cws_host_top99p", "data_jobs_monitoring_host_hr_sum", "date", "dbm_host_top99p", "dbm_queries_count_avg", "eph_infra_host_agent_sum", "eph_infra_host_alibaba_sum", "eph_infra_host_aws_sum", "eph_infra_host_azure_sum", "eph_infra_host_ent_sum", "eph_infra_host_gcp_sum", "eph_infra_host_heroku_sum", "eph_infra_host_only_aas_sum", "eph_infra_host_only_vsphere_sum", "eph_infra_host_opentelemetry_apm_sum", "eph_infra_host_opentelemetry_sum", "eph_infra_host_pro_sum", "eph_infra_host_proplus_sum", "error_tracking_apm_error_events_sum", "error_tracking_error_events_sum", "error_tracking_events_sum", "error_tracking_rum_error_events_sum", "event_management_correlation_correlated_events_sum", "event_management_correlation_correlated_related_events_sum", "event_management_correlation_sum", "fargate_container_profiler_profiling_fargate_avg", "fargate_container_profiler_profiling_fargate_eks_avg", "fargate_tasks_count_avg", "fargate_tasks_count_hwm", "flex_logs_compute_large_avg", "flex_logs_compute_medium_avg", "flex_logs_compute_small_avg", "flex_logs_compute_xsmall_avg", "flex_logs_starter_avg", "flex_logs_starter_storage_index_avg", "flex_logs_starter_storage_retention_adjustment_avg", "flex_stored_logs_avg", "forwarding_events_bytes_sum", "gcp_host_top99p", "heroku_host_top99p", "incident_management_monthly_active_users_hwm", "indexed_events_count_sum", "infra_host_top99p", "ingested_events_bytes_sum", "iot_device_sum", "iot_device_top99p", "llm_observability_min_spend_sum", "llm_observability_sum", "mobile_rum_lite_session_count_sum", "mobile_rum_session_count_android_sum", "mobile_rum_session_count_flutter_sum", "mobile_rum_session_count_ios_sum", "mobile_rum_session_count_reactnative_sum", "mobile_rum_session_count_roku_sum", "mobile_rum_session_count_sum", "mobile_rum_units_sum", "ndm_netflow_events_sum", "netflow_indexed_events_count_sum", "network_device_wireless_top99p", "npm_host_top99p", "observability_pipelines_bytes_processed_sum", "oci_host_sum", "oci_host_top99p", "online_archive_events_count_sum", "opentelemetry_apm_host_top99p", "opentelemetry_host_top99p", "orgs", "product_analytics_sum", "profiling_aas_count_top99p", "profiling_host_top99p", "published_app_hwm", "rum_browser_and_mobile_session_count", "rum_browser_legacy_session_count_sum", "rum_browser_lite_session_count_sum", "rum_browser_replay_session_count_sum", "rum_indexed_sessions_sum", "rum_ingested_sessions_sum", "rum_lite_session_count_sum", "rum_mobile_legacy_session_count_android_sum", "rum_mobile_legacy_session_count_flutter_sum", "rum_mobile_legacy_session_count_ios_sum", "rum_mobile_legacy_session_count_reactnative_sum", "rum_mobile_legacy_session_count_roku_sum", "rum_mobile_lite_session_count_android_sum", "rum_mobile_lite_session_count_flutter_sum", "rum_mobile_lite_session_count_ios_sum", "rum_mobile_lite_session_count_kotlinmultiplatform_sum", "rum_mobile_lite_session_count_reactnative_sum", "rum_mobile_lite_session_count_roku_sum", "rum_mobile_lite_session_count_unity_sum", "rum_mobile_replay_session_count_android_sum", "rum_mobile_replay_session_count_ios_sum", "rum_mobile_replay_session_count_kotlinmultiplatform_sum", "rum_mobile_replay_session_count_reactnative_sum", "rum_replay_session_count_sum", "rum_session_count_sum", "rum_session_replay_add_on_sum", "rum_total_session_count_sum", "rum_units_sum", "sca_fargate_count_avg", "sca_fargate_count_hwm", "sds_apm_scanned_bytes_sum", "sds_events_scanned_bytes_sum", "sds_logs_scanned_bytes_sum", "sds_rum_scanned_bytes_sum", "sds_total_scanned_bytes_sum", "serverless_apps_azure_count_avg", "serverless_apps_google_count_avg", "serverless_apps_total_count_avg", "siem_analyzed_logs_add_on_count_sum", "synthetics_browser_check_calls_count_sum", "synthetics_check_calls_count_sum", "synthetics_mobile_test_runs_sum", "synthetics_parallel_testing_max_slots_hwm", "trace_search_indexed_events_count_sum", "twol_ingested_events_bytes_sum", "universal_service_monitoring_host_top99p", "vsphere_host_top99p", "vuln_management_host_count_top99p", "workflow_executions_usage_sum"})
6069+
datadog.DeleteKeys(additionalProperties, &[]string{"agent_host_top99p", "apm_azure_app_service_host_top99p", "apm_devsecops_host_top99p", "apm_fargate_count_avg", "apm_host_top99p", "appsec_fargate_count_avg", "asm_serverless_sum", "audit_logs_lines_indexed_sum", "audit_trail_enabled_hwm", "avg_profiled_fargate_tasks", "aws_host_top99p", "aws_lambda_func_count", "aws_lambda_invocations_sum", "azure_app_service_top99p", "billable_ingested_bytes_sum", "browser_rum_lite_session_count_sum", "browser_rum_replay_session_count_sum", "browser_rum_units_sum", "ci_pipeline_indexed_spans_sum", "ci_test_indexed_spans_sum", "ci_visibility_itr_committers_hwm", "ci_visibility_pipeline_committers_hwm", "ci_visibility_test_committers_hwm", "cloud_cost_management_aws_host_count_avg", "cloud_cost_management_azure_host_count_avg", "cloud_cost_management_gcp_host_count_avg", "cloud_cost_management_host_count_avg", "cloud_siem_events_sum", "code_analysis_sa_committers_hwm", "code_analysis_sca_committers_hwm", "code_security_host_top99p", "container_avg", "container_excl_agent_avg", "container_hwm", "csm_container_enterprise_compliance_count_sum", "csm_container_enterprise_cws_count_sum", "csm_container_enterprise_total_count_sum", "csm_host_enterprise_aas_host_count_top99p", "csm_host_enterprise_aws_host_count_top99p", "csm_host_enterprise_azure_host_count_top99p", "csm_host_enterprise_compliance_host_count_top99p", "csm_host_enterprise_cws_host_count_top99p", "csm_host_enterprise_gcp_host_count_top99p", "csm_host_enterprise_total_host_count_top99p", "cspm_aas_host_top99p", "cspm_aws_host_top99p", "cspm_azure_host_top99p", "cspm_container_avg", "cspm_container_hwm", "cspm_gcp_host_top99p", "cspm_host_top99p", "custom_ts_avg", "cws_container_count_avg", "cws_fargate_task_avg", "cws_host_top99p", "data_jobs_monitoring_host_hr_sum", "date", "dbm_host_top99p", "dbm_queries_count_avg", "eph_infra_host_agent_sum", "eph_infra_host_alibaba_sum", "eph_infra_host_aws_sum", "eph_infra_host_azure_sum", "eph_infra_host_ent_sum", "eph_infra_host_gcp_sum", "eph_infra_host_heroku_sum", "eph_infra_host_only_aas_sum", "eph_infra_host_only_vsphere_sum", "eph_infra_host_opentelemetry_apm_sum", "eph_infra_host_opentelemetry_sum", "eph_infra_host_pro_sum", "eph_infra_host_proplus_sum", "error_tracking_apm_error_events_sum", "error_tracking_error_events_sum", "error_tracking_events_sum", "error_tracking_rum_error_events_sum", "event_management_correlation_correlated_events_sum", "event_management_correlation_correlated_related_events_sum", "event_management_correlation_sum", "fargate_container_profiler_profiling_fargate_avg", "fargate_container_profiler_profiling_fargate_eks_avg", "fargate_tasks_count_avg", "fargate_tasks_count_hwm", "flex_logs_compute_large_avg", "flex_logs_compute_medium_avg", "flex_logs_compute_small_avg", "flex_logs_compute_xlarge_avg", "flex_logs_compute_xsmall_avg", "flex_logs_starter_avg", "flex_logs_starter_storage_index_avg", "flex_logs_starter_storage_retention_adjustment_avg", "flex_stored_logs_avg", "forwarding_events_bytes_sum", "gcp_host_top99p", "heroku_host_top99p", "incident_management_monthly_active_users_hwm", "indexed_events_count_sum", "infra_host_top99p", "ingested_events_bytes_sum", "iot_device_sum", "iot_device_top99p", "llm_observability_min_spend_sum", "llm_observability_sum", "mobile_rum_lite_session_count_sum", "mobile_rum_session_count_android_sum", "mobile_rum_session_count_flutter_sum", "mobile_rum_session_count_ios_sum", "mobile_rum_session_count_reactnative_sum", "mobile_rum_session_count_roku_sum", "mobile_rum_session_count_sum", "mobile_rum_units_sum", "ndm_netflow_events_sum", "netflow_indexed_events_count_sum", "network_device_wireless_top99p", "npm_host_top99p", "observability_pipelines_bytes_processed_sum", "oci_host_sum", "oci_host_top99p", "online_archive_events_count_sum", "opentelemetry_apm_host_top99p", "opentelemetry_host_top99p", "orgs", "product_analytics_sum", "profiling_aas_count_top99p", "profiling_host_top99p", "published_app_hwm", "rum_browser_and_mobile_session_count", "rum_browser_legacy_session_count_sum", "rum_browser_lite_session_count_sum", "rum_browser_replay_session_count_sum", "rum_indexed_sessions_sum", "rum_ingested_sessions_sum", "rum_lite_session_count_sum", "rum_mobile_legacy_session_count_android_sum", "rum_mobile_legacy_session_count_flutter_sum", "rum_mobile_legacy_session_count_ios_sum", "rum_mobile_legacy_session_count_reactnative_sum", "rum_mobile_legacy_session_count_roku_sum", "rum_mobile_lite_session_count_android_sum", "rum_mobile_lite_session_count_flutter_sum", "rum_mobile_lite_session_count_ios_sum", "rum_mobile_lite_session_count_kotlinmultiplatform_sum", "rum_mobile_lite_session_count_reactnative_sum", "rum_mobile_lite_session_count_roku_sum", "rum_mobile_lite_session_count_unity_sum", "rum_mobile_replay_session_count_android_sum", "rum_mobile_replay_session_count_ios_sum", "rum_mobile_replay_session_count_kotlinmultiplatform_sum", "rum_mobile_replay_session_count_reactnative_sum", "rum_replay_session_count_sum", "rum_session_count_sum", "rum_session_replay_add_on_sum", "rum_total_session_count_sum", "rum_units_sum", "sca_fargate_count_avg", "sca_fargate_count_hwm", "sds_apm_scanned_bytes_sum", "sds_events_scanned_bytes_sum", "sds_logs_scanned_bytes_sum", "sds_rum_scanned_bytes_sum", "sds_total_scanned_bytes_sum", "serverless_apps_azure_count_avg", "serverless_apps_google_count_avg", "serverless_apps_total_count_avg", "siem_analyzed_logs_add_on_count_sum", "synthetics_browser_check_calls_count_sum", "synthetics_check_calls_count_sum", "synthetics_mobile_test_runs_sum", "synthetics_parallel_testing_max_slots_hwm", "trace_search_indexed_events_count_sum", "twol_ingested_events_bytes_sum", "universal_service_monitoring_host_top99p", "vsphere_host_top99p", "vuln_management_host_count_top99p", "workflow_executions_usage_sum"})
60366070
} else {
60376071
return err
60386072
}
@@ -6122,6 +6156,7 @@ func (o *UsageSummaryDate) UnmarshalJSON(bytes []byte) (err error) {
61226156
o.FlexLogsComputeLargeAvg = all.FlexLogsComputeLargeAvg
61236157
o.FlexLogsComputeMediumAvg = all.FlexLogsComputeMediumAvg
61246158
o.FlexLogsComputeSmallAvg = all.FlexLogsComputeSmallAvg
6159+
o.FlexLogsComputeXlargeAvg = all.FlexLogsComputeXlargeAvg
61256160
o.FlexLogsComputeXsmallAvg = all.FlexLogsComputeXsmallAvg
61266161
o.FlexLogsStarterAvg = all.FlexLogsStarterAvg
61276162
o.FlexLogsStarterStorageIndexAvg = all.FlexLogsStarterStorageIndexAvg

0 commit comments

Comments
 (0)