Skip to content

Commit 175378f

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 1885e38d of spec repo
1 parent b575b7c commit 175378f

File tree

7 files changed

+37
-10
lines changed

7 files changed

+37
-10
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-06-30 17:05:09.046861",
8-
"spec_repo_commit": "d8e7ee77"
7+
"regenerated": "2025-07-01 18:01:35.315740",
8+
"spec_repo_commit": "1885e38d"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-06-30 17:05:09.202568",
13-
"spec_repo_commit": "d8e7ee77"
12+
"regenerated": "2025-07-01 18:01:35.331331",
13+
"spec_repo_commit": "1885e38d"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4171,7 +4171,10 @@ components:
41714171
type: array
41724172
type: object
41734173
HourlyUsageAttributionUsageType:
4174-
description: Supported products for hourly usage attribution requests.
4174+
description: 'Supported products for hourly usage attribution requests.
4175+
4176+
The following values have been deprecated: `estimated_indexed_spans_usage`,
4177+
`estimated_ingested_spans_usage`.'
41754178
enum:
41764179
- api_usage
41774180
- apm_fargate_usage
@@ -8355,7 +8358,10 @@ components:
83558358
- SCA_FARGATE_PERCENTAGE
83568359
- ALL
83578360
MonthlyUsageAttributionValues:
8358-
description: Fields in Usage Summary by tag(s).
8361+
description: 'Fields in Usage Summary by tag(s).
8362+
8363+
The following values have been deprecated: `estimated_indexed_spans_usage`,
8364+
`estimated_indexed_spans_percentage`, `estimated_ingested_spans_usage`, `estimated_ingested_spans_percentage`.'
83598365
properties:
83608366
api_percentage:
83618367
description: The percentage of synthetic API test usage by tag(s).
@@ -34965,7 +34971,9 @@ paths:
3496534971
schema:
3496634972
format: date-time
3496734973
type: string
34968-
- description: Usage type to retrieve.
34974+
- description: 'Usage type to retrieve. The following values have been **deprecated**:
34975+
34976+
`estimated_indexed_spans_usage`, `estimated_ingested_spans_usage`.'
3496934977
in: query
3497034978
name: usage_type
3497134979
required: true
@@ -35515,8 +35523,13 @@ paths:
3551535523
schema:
3551635524
format: date-time
3551735525
type: string
35518-
- description: Comma-separated list of usage types to return, or `*` for all
35526+
- description: 'Comma-separated list of usage types to return, or `*` for all
3551935527
usage types.
35528+
35529+
The following values have been **deprecated**:
35530+
35531+
`estimated_indexed_spans_usage`, `estimated_indexed_spans_percentage`, `estimated_ingested_spans_usage`,
35532+
`estimated_ingested_spans_percentage`.'
3552035533
in: query
3552135534
name: fields
3552235535
required: true
@@ -35528,7 +35541,12 @@ paths:
3552835541
required: false
3552935542
schema:
3553035543
$ref: '#/components/schemas/UsageSortDirection'
35531-
- description: The field to sort by.
35544+
- description: 'The field to sort by.
35545+
35546+
The following values have been **deprecated**:
35547+
35548+
`estimated_indexed_spans_usage`, `estimated_indexed_spans_percentage`, `estimated_ingested_spans_usage`,
35549+
`estimated_ingested_spans_percentage`.'
3553235550
in: query
3553335551
name: sort_name
3553435552
required: false

src/datadog_api_client/v1/api/usage_metering_api.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1282,7 +1282,8 @@ def get_hourly_usage_attribution(
12821282
12831283
:param start_hr: Datetime in ISO-8601 format, UTC, precise to hour: ``[YYYY-MM-DDThh]`` for usage beginning at this hour.
12841284
:type start_hr: datetime
1285-
:param usage_type: Usage type to retrieve.
1285+
:param usage_type: Usage type to retrieve. The following values have been **deprecated** :
1286+
``estimated_indexed_spans_usage`` , ``estimated_ingested_spans_usage``.
12861287
:type usage_type: HourlyUsageAttributionUsageType
12871288
:param end_hr: Datetime in ISO-8601 format, UTC, precise to hour: ``[YYYY-MM-DDThh]`` for usage ending
12881289
**before** this hour.
@@ -1444,12 +1445,16 @@ def get_monthly_usage_attribution(
14441445
Maximum of 15 months ago.
14451446
:type start_month: datetime
14461447
:param fields: Comma-separated list of usage types to return, or ``*`` for all usage types.
1448+
The following values have been **deprecated** :
1449+
``estimated_indexed_spans_usage`` , ``estimated_indexed_spans_percentage`` , ``estimated_ingested_spans_usage`` , ``estimated_ingested_spans_percentage``.
14471450
:type fields: MonthlyUsageAttributionSupportedMetrics
14481451
:param end_month: Datetime in ISO-8601 format, UTC, precise to month: ``[YYYY-MM]`` for usage ending this month.
14491452
:type end_month: datetime, optional
14501453
:param sort_direction: The direction to sort by: ``[desc, asc]``.
14511454
:type sort_direction: UsageSortDirection, optional
14521455
:param sort_name: The field to sort by.
1456+
The following values have been **deprecated** :
1457+
``estimated_indexed_spans_usage`` , ``estimated_indexed_spans_percentage`` , ``estimated_ingested_spans_usage`` , ``estimated_ingested_spans_percentage``.
14531458
:type sort_name: MonthlyUsageAttributionSupportedMetrics, optional
14541459
:param tag_breakdown_keys: Comma separated list of tag keys used to group usage. If no value is provided the usage will not be broken down by tags.
14551460

src/datadog_api_client/v1/model/hourly_usage_attribution_body.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ def __init__(
9595
:type updated_at: str, optional
9696
9797
:param usage_type: Supported products for hourly usage attribution requests.
98+
The following values have been deprecated: ``estimated_indexed_spans_usage`` , ``estimated_ingested_spans_usage``.
9899
:type usage_type: HourlyUsageAttributionUsageType, optional
99100
"""
100101
if hour is not unset:

src/datadog_api_client/v1/model/hourly_usage_attribution_usage_type.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
class HourlyUsageAttributionUsageType(ModelSimple):
1616
"""
1717
Supported products for hourly usage attribution requests.
18+
The following values have been deprecated: `estimated_indexed_spans_usage`, `estimated_ingested_spans_usage`.
1819
1920
:param value: Must be one of ["api_usage", "apm_fargate_usage", "apm_host_usage", "apm_usm_usage", "appsec_fargate_usage", "appsec_usage", "asm_serverless_traced_invocations_usage", "asm_serverless_traced_invocations_percentage", "browser_usage", "ci_pipeline_indexed_spans_usage", "ci_test_indexed_spans_usage", "ci_visibility_itr_usage", "cloud_siem_usage", "code_security_host_usage", "container_excl_agent_usage", "container_usage", "cspm_containers_usage", "cspm_hosts_usage", "custom_event_usage", "custom_ingested_timeseries_usage", "custom_timeseries_usage", "cws_containers_usage", "cws_fargate_task_usage", "cws_hosts_usage", "data_jobs_monitoring_usage", "data_stream_monitoring_usage", "dbm_hosts_usage", "dbm_queries_usage", "error_tracking_usage", "error_tracking_percentage", "estimated_indexed_spans_usage", "estimated_ingested_spans_usage", "fargate_usage", "functions_usage", "incident_management_monthly_active_users_usage", "indexed_spans_usage", "infra_host_usage", "ingested_logs_bytes_usage", "ingested_spans_bytes_usage", "invocations_usage", "lambda_traced_invocations_usage", "logs_indexed_15day_usage", "logs_indexed_180day_usage", "logs_indexed_1day_usage", "logs_indexed_30day_usage", "logs_indexed_360day_usage", "logs_indexed_3day_usage", "logs_indexed_45day_usage", "logs_indexed_60day_usage", "logs_indexed_7day_usage", "logs_indexed_90day_usage", "logs_indexed_custom_retention_usage", "mobile_app_testing_usage", "ndm_netflow_usage", "npm_host_usage", "obs_pipeline_bytes_usage", "obs_pipelines_vcpu_usage", "online_archive_usage", "profiled_container_usage", "profiled_fargate_usage", "profiled_host_usage", "rum_browser_mobile_sessions_usage", "rum_replay_sessions_usage", "sca_fargate_usage", "sds_scanned_bytes_usage", "serverless_apps_usage", "siem_analyzed_logs_add_on_usage", "siem_ingested_bytes_usage", "snmp_usage", "universal_service_monitoring_usage", "vuln_management_hosts_usage", "workflow_executions_usage"].
2021
:type value: str

src/datadog_api_client/v1/model/monthly_usage_attribution_body.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ def __init__(
8989
:type updated_at: datetime, optional
9090
9191
:param values: Fields in Usage Summary by tag(s).
92+
The following values have been deprecated: ``estimated_indexed_spans_usage`` , ``estimated_indexed_spans_percentage`` , ``estimated_ingested_spans_usage`` , ``estimated_ingested_spans_percentage``.
9293
:type values: MonthlyUsageAttributionValues, optional
9394
"""
9495
if month is not unset:

src/datadog_api_client/v1/model/monthly_usage_attribution_values.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -442,6 +442,7 @@ def __init__(
442442
):
443443
"""
444444
Fields in Usage Summary by tag(s).
445+
The following values have been deprecated: ``estimated_indexed_spans_usage`` , ``estimated_indexed_spans_percentage`` , ``estimated_ingested_spans_usage`` , ``estimated_ingested_spans_percentage``.
445446
446447
:param api_percentage: The percentage of synthetic API test usage by tag(s).
447448
:type api_percentage: float, optional

0 commit comments

Comments
 (0)