Skip to content

Commit 508b534

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit e1e67881 of spec repo
1 parent 8926c01 commit 508b534

File tree

117 files changed

+174
-259
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+174
-259
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-05-12 09:40:18.860888",
8-
"spec_repo_commit": "c4d0aeef"
7+
"regenerated": "2025-05-12 19:17:26.118911",
8+
"spec_repo_commit": "e1e67881"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-05-12 09:40:18.876442",
13-
"spec_repo_commit": "c4d0aeef"
12+
"regenerated": "2025-05-12 19:17:26.135627",
13+
"spec_repo_commit": "e1e67881"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 10 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -21247,38 +21247,8 @@ components:
2124721247
- space
2124821248
type: object
2124921249
MetricCustomAggregations:
21250-
description: 'A list of queryable aggregation combinations for a count, rate,
21251-
or gauge metric.
21252-
21253-
By default, count and rate metrics require the (time: sum, space: sum) aggregation
21254-
and
21255-
21256-
Gauge metrics require the (time: avg, space: avg) aggregation.
21257-
21258-
Additional time & space combinations are also available:
21259-
21260-
21261-
- time: avg, space: avg
21262-
21263-
- time: avg, space: max
21264-
21265-
- time: avg, space: min
21266-
21267-
- time: avg, space: sum
21268-
21269-
- time: count, space: sum
21270-
21271-
- time: max, space: max
21272-
21273-
- time: min, space: min
21274-
21275-
- time: sum, space: avg
21276-
21277-
- time: sum, space: sum
21278-
21279-
21280-
Can only be applied to non_distribution metrics that have a `metric_type`
21281-
of `count`, `rate`, or `gauge`.'
21250+
description: Deprecated. You no longer need to configure specific time and space
21251+
aggregations for Metrics Without Limits.
2128221252
example:
2128321253
- space: sum
2128421254
time: sum
@@ -50306,8 +50276,7 @@ paths:
5030650276
maximum: 2147483647
5030750277
minimum: 49
5030850278
type: integer
50309-
- description: The number of aggregations that a `count`, `rate`, or `gauge`
50310-
metric is configured to use. Max number of aggregation combos is 9.
50279+
- description: Deprecated. Number of aggregations has no impact on volume.
5031150280
example: 1
5031250281
in: query
5031350282
name: filter[num_aggregations]
@@ -50515,17 +50484,16 @@ paths:
5051550484
description: 'Create and define a list of queryable tag keys for an existing
5051650485
count/gauge/rate/distribution metric.
5051750486

50518-
Optionally, include percentile aggregations on any distribution metric or
50519-
configure custom aggregations
50487+
Optionally, include percentile aggregations on any distribution metric. By
50488+
setting `exclude_tags_mode`
5052050489

50521-
on any count, rate, or gauge metric. By setting `exclude_tags_mode` to true
50522-
the behavior is changed
50490+
to true, the behavior is changed from an allow-list to a deny-list, and tags
50491+
in the defined list are
5052350492

50524-
from an allow-list to a deny-list, and tags in the defined list will not be
50525-
queryable.
50493+
not queryable. Can only be used with application keys of users with the `Manage
50494+
Tags for Metrics`
5052650495

50527-
Can only be used with application keys of users with the `Manage Tags for
50528-
Metrics` permission.'
50496+
permission.'
5052950497
operationId: CreateTagConfiguration
5053050498
parameters:
5053150499
- $ref: '#/components/parameters/MetricName'

src/main/java/com/datadog/api/client/v2/api/MetricsApi.java

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -248,11 +248,10 @@ public CompletableFuture<MetricTagConfigurationResponse> createTagConfigurationA
248248

249249
/**
250250
* Create and define a list of queryable tag keys for an existing count/gauge/rate/distribution
251-
* metric. Optionally, include percentile aggregations on any distribution metric or configure
252-
* custom aggregations on any count, rate, or gauge metric. By setting <code>exclude_tags_mode
253-
* </code> to true the behavior is changed from an allow-list to a deny-list, and tags in the
254-
* defined list will not be queryable. Can only be used with application keys of users with the
255-
* <code>Manage Tags for Metrics</code> permission.
251+
* metric. Optionally, include percentile aggregations on any distribution metric. By setting
252+
* <code>exclude_tags_mode</code> to true, the behavior is changed from an allow-list to a
253+
* deny-list, and tags in the defined list are not queryable. Can only be used with application
254+
* keys of users with the <code>Manage Tags for Metrics</code> permission.
256255
*
257256
* @param metricName The name of the metric. (required)
258257
* @param body (required)
@@ -697,9 +696,8 @@ public EstimateMetricsOutputSeriesOptionalParameters filterHoursAgo(Integer filt
697696
/**
698697
* Set filterNumAggregations.
699698
*
700-
* @param filterNumAggregations The number of aggregations that a <code>count</code>, <code>rate
701-
* </code>, or <code>gauge</code> metric is configured to use. Max number of aggregation
702-
* combos is 9. (optional)
699+
* @param filterNumAggregations Deprecated. Number of aggregations has no impact on volume.
700+
* (optional)
703701
* @return EstimateMetricsOutputSeriesOptionalParameters
704702
*/
705703
public EstimateMetricsOutputSeriesOptionalParameters filterNumAggregations(

src/main/java/com/datadog/api/client/v2/model/MetricTagConfigurationAttributes.java

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -73,25 +73,8 @@ public MetricTagConfigurationAttributes addAggregationsItem(
7373
}
7474

7575
/**
76-
* A list of queryable aggregation combinations for a count, rate, or gauge metric. By default,
77-
* count and rate metrics require the (time: sum, space: sum) aggregation and Gauge metrics
78-
* require the (time: avg, space: avg) aggregation. Additional time &amp; space combinations are
79-
* also available:
80-
*
81-
* <ul>
82-
* <li>time: avg, space: avg
83-
* <li>time: avg, space: max
84-
* <li>time: avg, space: min
85-
* <li>time: avg, space: sum
86-
* <li>time: count, space: sum
87-
* <li>time: max, space: max
88-
* <li>time: min, space: min
89-
* <li>time: sum, space: avg
90-
* <li>time: sum, space: sum
91-
* </ul>
92-
*
93-
* <p>Can only be applied to non_distribution metrics that have a <code>metric_type</code> of
94-
* <code>count</code>, <code>rate</code>, or <code>gauge</code>.
76+
* Deprecated. You no longer need to configure specific time and space aggregations for Metrics
77+
* Without Limits.
9578
*
9679
* @return aggregations
9780
*/

src/main/java/com/datadog/api/client/v2/model/MetricTagConfigurationCreateAttributes.java

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -78,25 +78,8 @@ public MetricTagConfigurationCreateAttributes addAggregationsItem(
7878
}
7979

8080
/**
81-
* A list of queryable aggregation combinations for a count, rate, or gauge metric. By default,
82-
* count and rate metrics require the (time: sum, space: sum) aggregation and Gauge metrics
83-
* require the (time: avg, space: avg) aggregation. Additional time &amp; space combinations are
84-
* also available:
85-
*
86-
* <ul>
87-
* <li>time: avg, space: avg
88-
* <li>time: avg, space: max
89-
* <li>time: avg, space: min
90-
* <li>time: avg, space: sum
91-
* <li>time: count, space: sum
92-
* <li>time: max, space: max
93-
* <li>time: min, space: min
94-
* <li>time: sum, space: avg
95-
* <li>time: sum, space: sum
96-
* </ul>
97-
*
98-
* <p>Can only be applied to non_distribution metrics that have a <code>metric_type</code> of
99-
* <code>count</code>, <code>rate</code>, or <code>gauge</code>.
81+
* Deprecated. You no longer need to configure specific time and space aggregations for Metrics
82+
* Without Limits.
10083
*
10184
* @return aggregations
10285
*/

src/main/java/com/datadog/api/client/v2/model/MetricTagConfigurationUpdateAttributes.java

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -61,25 +61,8 @@ public MetricTagConfigurationUpdateAttributes addAggregationsItem(
6161
}
6262

6363
/**
64-
* A list of queryable aggregation combinations for a count, rate, or gauge metric. By default,
65-
* count and rate metrics require the (time: sum, space: sum) aggregation and Gauge metrics
66-
* require the (time: avg, space: avg) aggregation. Additional time &amp; space combinations are
67-
* also available:
68-
*
69-
* <ul>
70-
* <li>time: avg, space: avg
71-
* <li>time: avg, space: max
72-
* <li>time: avg, space: min
73-
* <li>time: avg, space: sum
74-
* <li>time: count, space: sum
75-
* <li>time: max, space: max
76-
* <li>time: min, space: min
77-
* <li>time: sum, space: avg
78-
* <li>time: sum, space: sum
79-
* </ul>
80-
*
81-
* <p>Can only be applied to non_distribution metrics that have a <code>metric_type</code> of
82-
* <code>count</code>, <code>rate</code>, or <code>gauge</code>.
64+
* Deprecated. You no longer need to configure specific time and space aggregations for Metrics
65+
* Without Limits.
8366
*
8467
* @return aggregations
8568
*/

src/test/resources/cassettes/features/v1/Create_a_user_returns_User_created_response_test.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@
5353
"timeToLive": {
5454
"unlimited": true
5555
},
56-
"id": "af617072-2860-ba27-e045-b00c8baf0187"
56+
"id": "af617072-2860-ba27-e045-b00c8baf0188"
5757
}
5858
]

src/test/resources/cassettes/features/v1/Create_a_user_returns_null_access_role.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@
5353
"timeToLive": {
5454
"unlimited": true
5555
},
56-
"id": "af617072-2860-ba27-e045-b00c8baf0188"
56+
"id": "af617072-2860-ba27-e045-b00c8baf0187"
5757
}
5858
]

src/test/resources/cassettes/features/v1/Get_all_hosts_with_metadata_deserializes_successfully.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
"timeToLive": {
2929
"unlimited": true
3030
},
31-
"id": "d5bade64-6ebb-4f4d-903d-8069b52bb31d"
31+
"id": "d5bade64-6ebb-4f4d-903d-8069b52bb31e"
3232
}
3333
]

src/test/resources/cassettes/features/v1/Get_all_hosts_with_metadata_for_your_organization_returns_OK_response.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
"timeToLive": {
2929
"unlimited": true
3030
},
31-
"id": "d5bade64-6ebb-4f4d-903d-8069b52bb31e"
31+
"id": "d5bade64-6ebb-4f4d-903d-8069b52bb31d"
3232
}
3333
]

0 commit comments

Comments
 (0)