Skip to content

Commit 911403c

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit 0f5c928e of spec repo (#2290)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 22b1d7c commit 911403c

File tree

5 files changed

+52
-7
lines changed

5 files changed

+52
-7
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2025-03-18 16:20:32.486865",
8-
"spec_repo_commit": "78376979"
7+
"regenerated": "2025-03-20 15:01:21.019349",
8+
"spec_repo_commit": "0f5c928e"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-03-18 16:20:32.502823",
13-
"spec_repo_commit": "78376979"
12+
"regenerated": "2025-03-20 15:01:21.035270",
13+
"spec_repo_commit": "0f5c928e"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20315,6 +20315,11 @@ components:
2031520315
Plus over all hours in the current date for the given org.
2031620316
format: int64
2031720317
type: integer
20318+
error_tracking_apm_error_events_sum:
20319+
description: Shows the sum of all Error Tracking APM error events over all
20320+
hours in the current date for the given org.
20321+
format: int64
20322+
type: integer
2031820323
error_tracking_error_events_sum:
2031920324
description: Shows the sum of all Error Tracking error events over all hours
2032020325
in the current date for the given org.
@@ -21200,6 +21205,11 @@ components:
2120021205
Plus over all hours in the current date for the given org.
2120121206
format: int64
2120221207
type: integer
21208+
error_tracking_apm_error_events_sum:
21209+
description: Shows the sum of all Error Tracking APM error events over all
21210+
hours in the current date for the given org.
21211+
format: int64
21212+
type: integer
2120321213
error_tracking_error_events_sum:
2120421214
description: Shows the sum of all Error Tracking error events over all hours
2120521215
in the current date for the given org.
@@ -22090,6 +22100,11 @@ components:
2209022100
Plus over all hours in the current month for all organizations.
2209122101
format: int64
2209222102
type: integer
22103+
error_tracking_apm_error_events_agg_sum:
22104+
description: Shows the sum of all Error Tracking APM error events over all
22105+
hours in the current month for all organizations.
22106+
format: int64
22107+
type: integer
2209322108
error_tracking_error_events_agg_sum:
2209422109
description: Shows the sum of all Error Tracking error events over all hours
2209522110
in the current month for all organizations.

lib/datadog_api_client/v1/models/usage_summary_date.rb

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,9 @@ class UsageSummaryDate
237237
# Shows the sum of all ephemeral infrastructure hosts for Pro Plus over all hours in the current date for the given org.
238238
attr_accessor :eph_infra_host_proplus_sum
239239

240+
# Shows the sum of all Error Tracking APM error events over all hours in the current date for the given org.
241+
attr_accessor :error_tracking_apm_error_events_sum
242+
240243
# Shows the sum of all Error Tracking error events over all hours in the current date for the given org.
241244
attr_accessor :error_tracking_error_events_sum
242245

@@ -585,6 +588,7 @@ def self.attribute_map
585588
:'eph_infra_host_opentelemetry_sum' => :'eph_infra_host_opentelemetry_sum',
586589
:'eph_infra_host_pro_sum' => :'eph_infra_host_pro_sum',
587590
:'eph_infra_host_proplus_sum' => :'eph_infra_host_proplus_sum',
591+
:'error_tracking_apm_error_events_sum' => :'error_tracking_apm_error_events_sum',
588592
:'error_tracking_error_events_sum' => :'error_tracking_error_events_sum',
589593
:'error_tracking_events_sum' => :'error_tracking_events_sum',
590594
:'error_tracking_rum_error_events_sum' => :'error_tracking_rum_error_events_sum',
@@ -754,6 +758,7 @@ def self.openapi_types
754758
:'eph_infra_host_opentelemetry_sum' => :'Integer',
755759
:'eph_infra_host_pro_sum' => :'Integer',
756760
:'eph_infra_host_proplus_sum' => :'Integer',
761+
:'error_tracking_apm_error_events_sum' => :'Integer',
757762
:'error_tracking_error_events_sum' => :'Integer',
758763
:'error_tracking_events_sum' => :'Integer',
759764
:'error_tracking_rum_error_events_sum' => :'Integer',
@@ -1153,6 +1158,10 @@ def initialize(attributes = {})
11531158
self.eph_infra_host_proplus_sum = attributes[:'eph_infra_host_proplus_sum']
11541159
end
11551160

1161+
if attributes.key?(:'error_tracking_apm_error_events_sum')
1162+
self.error_tracking_apm_error_events_sum = attributes[:'error_tracking_apm_error_events_sum']
1163+
end
1164+
11561165
if attributes.key?(:'error_tracking_error_events_sum')
11571166
self.error_tracking_error_events_sum = attributes[:'error_tracking_error_events_sum']
11581167
end
@@ -1614,6 +1623,7 @@ def ==(o)
16141623
eph_infra_host_opentelemetry_sum == o.eph_infra_host_opentelemetry_sum &&
16151624
eph_infra_host_pro_sum == o.eph_infra_host_pro_sum &&
16161625
eph_infra_host_proplus_sum == o.eph_infra_host_proplus_sum &&
1626+
error_tracking_apm_error_events_sum == o.error_tracking_apm_error_events_sum &&
16171627
error_tracking_error_events_sum == o.error_tracking_error_events_sum &&
16181628
error_tracking_events_sum == o.error_tracking_events_sum &&
16191629
error_tracking_rum_error_events_sum == o.error_tracking_rum_error_events_sum &&
@@ -1711,7 +1721,7 @@ def ==(o)
17111721
# @return [Integer] Hash code
17121722
# @!visibility private
17131723
def hash
1714-
[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_error_events_sum, error_tracking_events_sum, error_tracking_rum_error_events_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, 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, 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, profiling_aas_count_top99p, profiling_host_top99p, 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_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_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, additional_properties].hash
1724+
[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, 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, 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, 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, profiling_aas_count_top99p, profiling_host_top99p, 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_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_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, additional_properties].hash
17151725
end
17161726
end
17171727
end

0 commit comments

Comments
 (0)