Skip to content

Commit

Permalink
Regenerate client from commit 049920eb of spec repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ci.datadog-api-spec committed Oct 10, 2024
1 parent 31def0c commit f5fa580
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2024-10-10 18:55:09.560778",
"spec_repo_commit": "1bd8568a"
"regenerated": "2024-10-10 19:46:04.854996",
"spec_repo_commit": "049920eb"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-10-10 18:55:09.580319",
"spec_repo_commit": "1bd8568a"
"regenerated": "2024-10-10 19:46:04.873453",
"spec_repo_commit": "049920eb"
}
}
}
10 changes: 10 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4189,6 +4189,7 @@ components:
- cws_containers_usage
- cws_hosts_usage
- data_jobs_monitoring_usage
- data_stream_monitoring_usage
- dbm_hosts_usage
- dbm_queries_usage
- error_tracking_usage
Expand Down Expand Up @@ -4263,6 +4264,7 @@ components:
- CWS_CONTAINERS_USAGE
- CWS_HOSTS_USAGE
- DATA_JOBS_MONITORING_USAGE
- DATA_STREAM_MONITORING_USAGE
- DBM_HOSTS_USAGE
- DBM_QUERIES_USAGE
- ERROR_TRACKING_USAGE
Expand Down Expand Up @@ -7945,6 +7947,8 @@ components:
- cws_hosts_usage
- data_jobs_monitoring_usage
- data_jobs_monitoring_percentage
- data_stream_monitoring_usage
- data_stream_monitoring_percentage
- dbm_hosts_percentage
- dbm_hosts_usage
- dbm_queries_percentage
Expand Down Expand Up @@ -8088,6 +8092,8 @@ components:
- CWS_HOSTS_USAGE
- DATA_JOBS_MONITORING_USAGE
- DATA_JOBS_MONITORING_PERCENTAGE
- DATA_STREAM_MONITORING_USAGE
- DATA_STREAM_MONITORING_PERCENTAGE
- DBM_HOSTS_PERCENTAGE
- DBM_HOSTS_USAGE
- DBM_QUERIES_PERCENTAGE
Expand Down Expand Up @@ -8379,6 +8385,10 @@ components:
description: The Data Jobs Monitoring usage by tag(s).
format: double
type: number
data_stream_monitoring_usage:
description: The Data Stream Monitoring usage by tag(s).
format: double
type: number
dbm_hosts_percentage:
description: The percentage of Database Monitoring host usage by tag(s).
format: double
Expand Down
6 changes: 3 additions & 3 deletions lib/datadog_api_client/v1/api/usage_metering_api.rb

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ class HourlyUsageAttributionUsageType
CWS_CONTAINERS_USAGE = "cws_containers_usage".freeze
CWS_HOSTS_USAGE = "cws_hosts_usage".freeze
DATA_JOBS_MONITORING_USAGE = "data_jobs_monitoring_usage".freeze
DATA_STREAM_MONITORING_USAGE = "data_stream_monitoring_usage".freeze
DBM_HOSTS_USAGE = "dbm_hosts_usage".freeze
DBM_QUERIES_USAGE = "dbm_queries_usage".freeze
ERROR_TRACKING_USAGE = "error_tracking_usage".freeze
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ class MonthlyUsageAttributionSupportedMetrics
CWS_HOSTS_USAGE = "cws_hosts_usage".freeze
DATA_JOBS_MONITORING_USAGE = "data_jobs_monitoring_usage".freeze
DATA_JOBS_MONITORING_PERCENTAGE = "data_jobs_monitoring_percentage".freeze
DATA_STREAM_MONITORING_USAGE = "data_stream_monitoring_usage".freeze
DATA_STREAM_MONITORING_PERCENTAGE = "data_stream_monitoring_percentage".freeze
DBM_HOSTS_PERCENTAGE = "dbm_hosts_percentage".freeze
DBM_HOSTS_USAGE = "dbm_hosts_usage".freeze
DBM_QUERIES_PERCENTAGE = "dbm_queries_percentage".freeze
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,9 @@ class MonthlyUsageAttributionValues
# The Data Jobs Monitoring usage by tag(s).
attr_accessor :data_jobs_monitoring_usage

# The Data Stream Monitoring usage by tag(s).
attr_accessor :data_stream_monitoring_usage

# The percentage of Database Monitoring host usage by tag(s).
attr_accessor :dbm_hosts_percentage

Expand Down Expand Up @@ -487,6 +490,7 @@ def self.attribute_map
:'cws_hosts_percentage' => :'cws_hosts_percentage',
:'cws_hosts_usage' => :'cws_hosts_usage',
:'data_jobs_monitoring_usage' => :'data_jobs_monitoring_usage',
:'data_stream_monitoring_usage' => :'data_stream_monitoring_usage',
:'dbm_hosts_percentage' => :'dbm_hosts_percentage',
:'dbm_hosts_usage' => :'dbm_hosts_usage',
:'dbm_queries_percentage' => :'dbm_queries_percentage',
Expand Down Expand Up @@ -633,6 +637,7 @@ def self.openapi_types
:'cws_hosts_percentage' => :'Float',
:'cws_hosts_usage' => :'Float',
:'data_jobs_monitoring_usage' => :'Float',
:'data_stream_monitoring_usage' => :'Float',
:'dbm_hosts_percentage' => :'Float',
:'dbm_hosts_usage' => :'Float',
:'dbm_queries_percentage' => :'Float',
Expand Down Expand Up @@ -922,6 +927,10 @@ def initialize(attributes = {})
self.data_jobs_monitoring_usage = attributes[:'data_jobs_monitoring_usage']
end

if attributes.key?(:'data_stream_monitoring_usage')
self.data_stream_monitoring_usage = attributes[:'data_stream_monitoring_usage']
end

if attributes.key?(:'dbm_hosts_percentage')
self.dbm_hosts_percentage = attributes[:'dbm_hosts_percentage']
end
Expand Down Expand Up @@ -1376,6 +1385,7 @@ def ==(o)
cws_hosts_percentage == o.cws_hosts_percentage &&
cws_hosts_usage == o.cws_hosts_usage &&
data_jobs_monitoring_usage == o.data_jobs_monitoring_usage &&
data_stream_monitoring_usage == o.data_stream_monitoring_usage &&
dbm_hosts_percentage == o.dbm_hosts_percentage &&
dbm_hosts_usage == o.dbm_hosts_usage &&
dbm_queries_percentage == o.dbm_queries_percentage &&
Expand Down Expand Up @@ -1479,7 +1489,7 @@ def ==(o)
# @return [Integer] Hash code
# @!visibility private
def hash
[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, 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, 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_hosts_percentage, cws_hosts_usage, data_jobs_monitoring_usage, dbm_hosts_percentage, dbm_hosts_usage, dbm_queries_percentage, dbm_queries_usage, error_tracking_percentage, error_tracking_usage, estimated_indexed_logs_percentage, estimated_indexed_logs_usage, estimated_indexed_spans_percentage, estimated_indexed_spans_usage, estimated_ingested_logs_percentage, estimated_ingested_logs_usage, estimated_ingested_spans_percentage, estimated_ingested_spans_usage, estimated_rum_sessions_percentage, estimated_rum_sessions_usage, fargate_percentage, fargate_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, 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, 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, profiled_container_percentage, profiled_container_usage, profiled_fargate_percentage, profiled_fargate_usage, profiled_host_percentage, profiled_host_usage, rum_browser_mobile_sessions_percentage, rum_browser_mobile_sessions_usage, rum_replay_sessions_percentage, rum_replay_sessions_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].hash
[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, 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, 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_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_logs_percentage, estimated_indexed_logs_usage, estimated_indexed_spans_percentage, estimated_indexed_spans_usage, estimated_ingested_logs_percentage, estimated_ingested_logs_usage, estimated_ingested_spans_percentage, estimated_ingested_spans_usage, estimated_rum_sessions_percentage, estimated_rum_sessions_usage, fargate_percentage, fargate_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, 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, 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, profiled_container_percentage, profiled_container_usage, profiled_fargate_percentage, profiled_fargate_usage, profiled_host_percentage, profiled_host_usage, rum_browser_mobile_sessions_percentage, rum_browser_mobile_sessions_usage, rum_replay_sessions_percentage, rum_replay_sessions_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].hash
end
end
end

0 comments on commit f5fa580

Please sign in to comment.