Skip to content

Commit 74b6078

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit c8707cdc of spec repo
1 parent 25106c2 commit 74b6078

File tree

3 files changed

+51
-4
lines changed

3 files changed

+51
-4
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-02-14 15:03:44.521676",
8-
"spec_repo_commit": "a739b49f"
7+
"regenerated": "2025-02-18 20:22:44.958059",
8+
"spec_repo_commit": "c8707cdc"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-02-14 15:03:44.537023",
13-
"spec_repo_commit": "a739b49f"
12+
"regenerated": "2025-02-18 20:22:44.973454",
13+
"spec_repo_commit": "c8707cdc"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

+23
Original file line numberDiff line numberDiff line change
@@ -18141,6 +18141,29 @@ components:
1814118141

1814218142
Defaults to false.'
1814318143
type: boolean
18144+
include_actively_queried_tags_window:
18145+
description: 'When provided, all tags that have been actively queried are
18146+
18147+
configured (and, therefore, remain queryable) for each metric that
18148+
18149+
matches the given prefix. Minimum value is 1 second, and maximum
18150+
18151+
value is 7,776,000 seconds (90 days).'
18152+
format: double
18153+
maximum: 7776000
18154+
minimum: 1
18155+
type: number
18156+
override_existing_configurations:
18157+
description: 'When set to true, the configuration overrides any existing
18158+
18159+
configurations for the given metric with the new set of tags in this
18160+
18161+
configuration request. If false, old configurations are kept and
18162+
18163+
are merged with the set of tags in this configuration request.
18164+
18165+
Defaults to true.'
18166+
type: boolean
1814418167
tags:
1814518168
$ref: '#/components/schemas/MetricBulkTagConfigTagNameList'
1814618169
type: object

packages/datadog-api-client-v2/models/MetricBulkTagConfigCreateAttributes.ts

+24
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,21 @@ export class MetricBulkTagConfigCreateAttributes {
2020
* Defaults to false.
2121
*/
2222
"excludeTagsMode"?: boolean;
23+
/**
24+
* When provided, all tags that have been actively queried are
25+
* configured (and, therefore, remain queryable) for each metric that
26+
* matches the given prefix. Minimum value is 1 second, and maximum
27+
* value is 7,776,000 seconds (90 days).
28+
*/
29+
"includeActivelyQueriedTagsWindow"?: number;
30+
/**
31+
* When set to true, the configuration overrides any existing
32+
* configurations for the given metric with the new set of tags in this
33+
* configuration request. If false, old configurations are kept and
34+
* are merged with the set of tags in this configuration request.
35+
* Defaults to true.
36+
*/
37+
"overrideExistingConfigurations"?: boolean;
2338
/**
2439
* A list of tag names to apply to the configuration.
2540
*/
@@ -49,6 +64,15 @@ export class MetricBulkTagConfigCreateAttributes {
4964
baseName: "exclude_tags_mode",
5065
type: "boolean",
5166
},
67+
includeActivelyQueriedTagsWindow: {
68+
baseName: "include_actively_queried_tags_window",
69+
type: "number",
70+
format: "double",
71+
},
72+
overrideExistingConfigurations: {
73+
baseName: "override_existing_configurations",
74+
type: "boolean",
75+
},
5276
tags: {
5377
baseName: "tags",
5478
type: "Array<string>",

0 commit comments

Comments
 (0)