Skip to content

Commit dc67e48

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit b1f4bbfd of spec repo
1 parent 8e48eeb commit dc67e48

6 files changed

+15
-14
lines changed

.apigentools-info

+4-4
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-04-29 18:57:43.853175",
8-
"spec_repo_commit": "d1252b21"
7+
"regenerated": "2025-04-30 00:24:45.086234",
8+
"spec_repo_commit": "b1f4bbfd"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-04-29 18:57:43.868755",
13-
"spec_repo_commit": "d1252b21"
12+
"regenerated": "2025-04-30 00:24:45.103358",
13+
"spec_repo_commit": "b1f4bbfd"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

+6-5
Original file line numberDiff line numberDiff line change
@@ -20803,6 +20803,7 @@ components:
2080320803
- space
2080420804
type: object
2080520805
MetricCustomAggregations:
20806+
deprecated: true
2080620807
description: 'A list of queryable aggregation combinations for a count, rate,
2080720808
or gauge metric.
2080820809

@@ -49413,9 +49414,8 @@ paths:
4941349414
- Metrics
4941449415
/api/v2/metrics/{metric_name}/estimate:
4941549416
get:
49416-
description: Returns the estimated cardinality for a metric with a given tag,
49417-
percentile and number of aggregations configuration using Metrics without
49418-
Limits™.
49417+
description: Returns the estimated cardinality for a metric with a given tag
49418+
and percentile configuration using Metrics without Limits™.
4941949419
operationId: EstimateMetricsOutputSeries
4942049420
parameters:
4942149421
- $ref: '#/components/parameters/MetricName'
@@ -49437,8 +49437,9 @@ paths:
4943749437
maximum: 2147483647
4943849438
minimum: 49
4943949439
type: integer
49440-
- description: The number of aggregations that a `count`, `rate`, or `gauge`
49441-
metric is configured to use. Max number of aggregation combos is 9.
49440+
- deprecated: true
49441+
description: This argument has no effect as all time and space combinations
49442+
are now available with no impact on customer bills.
4944249443
example: 1
4944349444
in: query
4944449445
name: filter[num_aggregations]

src/datadog_api_client/v2/api/metrics_api.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -592,15 +592,15 @@ def estimate_metrics_output_series(
592592
) -> MetricEstimateResponse:
593593
"""Tag Configuration Cardinality Estimator.
594594
595-
Returns the estimated cardinality for a metric with a given tag, percentile and number of aggregations configuration using Metrics without Limits™.
595+
Returns the estimated cardinality for a metric with a given tag and percentile configuration using Metrics without Limits™.
596596
597597
:param metric_name: The name of the metric.
598598
:type metric_name: str
599599
:param filter_groups: Filtered tag keys that the metric is configured to query with.
600600
:type filter_groups: str, optional
601601
:param filter_hours_ago: The number of hours of look back (from now) to estimate cardinality with. If unspecified, it defaults to 0 hours.
602602
:type filter_hours_ago: int, optional
603-
:param filter_num_aggregations: The number of aggregations that a ``count`` , ``rate`` , or ``gauge`` metric is configured to use. Max number of aggregation combos is 9.
603+
:param filter_num_aggregations: This argument has no effect as all time and space combinations are now available with no impact on customer bills.
604604
:type filter_num_aggregations: int, optional
605605
:param filter_pct: A boolean, for distribution metrics only, to estimate cardinality if the metric includes additional percentile aggregators.
606606
:type filter_pct: bool, optional

src/datadog_api_client/v2/model/metric_tag_configuration_attributes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def __init__(
7474
* time: sum, space: avg
7575
* time: sum, space: sum
7676
77-
Can only be applied to non_distribution metrics that have a ``metric_type`` of ``count`` , ``rate`` , or ``gauge``.
77+
Can only be applied to non_distribution metrics that have a ``metric_type`` of ``count`` , ``rate`` , or ``gauge``. **Deprecated**.
7878
:type aggregations: MetricCustomAggregations, optional
7979
8080
:param created_at: Timestamp when the tag configuration was created.

src/datadog_api_client/v2/model/metric_tag_configuration_create_attributes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def __init__(
6666
* time: sum, space: avg
6767
* time: sum, space: sum
6868
69-
Can only be applied to non_distribution metrics that have a ``metric_type`` of ``count`` , ``rate`` , or ``gauge``.
69+
Can only be applied to non_distribution metrics that have a ``metric_type`` of ``count`` , ``rate`` , or ``gauge``. **Deprecated**.
7070
:type aggregations: MetricCustomAggregations, optional
7171
7272
:param exclude_tags_mode: When set to true, the configuration will exclude the configured tags and include any other submitted tags.

src/datadog_api_client/v2/model/metric_tag_configuration_update_attributes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def __init__(
6262
* time: sum, space: avg
6363
* time: sum, space: sum
6464
65-
Can only be applied to non_distribution metrics that have a ``metric_type`` of ``count`` , ``rate`` , or ``gauge``.
65+
Can only be applied to non_distribution metrics that have a ``metric_type`` of ``count`` , ``rate`` , or ``gauge``. **Deprecated**.
6666
:type aggregations: MetricCustomAggregations, optional
6767
6868
:param exclude_tags_mode: When set to true, the configuration will exclude the configured tags and include any other submitted tags.

0 commit comments

Comments
 (0)