Skip to content

Commit 9d442f4

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit dfe05b82 of spec repo (#699)
Co-authored-by: ci.datadog-api-spec <[email protected]> Co-authored-by: api-clients-generation-pipeline[bot] <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
1 parent f6ce636 commit 9d442f4

12 files changed

+4
-92
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.2",
7-
"regenerated": "2022-06-01 08:09:47.676672",
8-
"spec_repo_commit": "921d5a27"
7+
"regenerated": "2022-06-03 14:41:26.225908",
8+
"spec_repo_commit": "dfe05b82"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.2",
12-
"regenerated": "2022-06-01 08:09:47.689138",
13-
"spec_repo_commit": "921d5a27"
12+
"regenerated": "2022-06-03 14:41:26.241896",
13+
"spec_repo_commit": "dfe05b82"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -9575,10 +9575,6 @@ paths:
95759575
x-menu-order: 5
95769576
x-undo:
95779577
type: safe
9578-
x-unstable: "**Note: Use of this endpoint for count/gauge/rate metric types
9579-
is only accessible for Metrics without Limits&trade; beta customers.\nIf you\u2019re
9580-
interested in Metrics without Limits&trade;, please contact your Customer
9581-
Success Manager.**"
95829578
/api/v2/metrics/config/bulk-tags:
95839579
delete:
95849580
description: 'Delete all custom lists of queryable tag keys for a set of existing
@@ -9885,10 +9881,6 @@ paths:
98859881
x-menu-order: 4
98869882
x-undo:
98879883
type: idempotent
9888-
x-unstable: "**Note: Use of this endpoint for count/gauge/rate metric types
9889-
is only accessible for Metrics without Limits&trade; beta customers.\nIf you\u2019re
9890-
interested in Metrics without Limits&trade;, please contact your Customer
9891-
Success Manager.**"
98929884
get:
98939885
description: Returns the tag configuration for the given metric name.
98949886
operationId: ListTagConfigurationByName
@@ -9925,10 +9917,6 @@ paths:
99259917
x-menu-order: 2
99269918
x-undo:
99279919
type: safe
9928-
x-unstable: "**Note: Use of this endpoint for count/gauge/rate metric types
9929-
is only accessible for Metrics without Limits&trade; beta customers.\nIf you\u2019re
9930-
interested in Metrics without Limits&trade;, please contact your Customer
9931-
Success Manager.**"
99329920
patch:
99339921
description: 'Update the tag configuration of a metric or percentile aggregations
99349922
of a distribution metric or custom aggregations
@@ -9984,10 +9972,6 @@ paths:
99849972
x-menu-order: 3
99859973
x-undo:
99869974
type: idempotent
9987-
x-unstable: "**Note: Use of this endpoint for count/gauge/rate metric types
9988-
is only accessible for Metrics without Limits&trade; beta customers.\nIf you\u2019re
9989-
interested in Metrics without Limits&trade;, please contact your Customer
9990-
Success Manager.**"
99919975
post:
99929976
description: 'Create and define a list of queryable tag keys for an existing
99939977
count/gauge/rate/distribution metric.
@@ -10061,21 +10045,11 @@ paths:
1006110045
- name: metric_name
1006210046
source: data.id
1006310047
type: unsafe
10064-
x-unstable: "**Note: Use of this endpoint for count/gauge/rate metric types
10065-
is only accessible for Metrics without Limits&trade; beta customers.\nIf you\u2019re
10066-
interested in Metrics without Limits&trade;, please contact your Customer
10067-
Success Manager.**"
1006810048
/api/v2/metrics/{metric_name}/volumes:
1006910049
get:
1007010050
description: 'View distinct metrics volumes for the given metric name.
1007110051
1007210052
10073-
Custom distribution metrics will return both ingested and indexed custom metric
10074-
volumes.
10075-
10076-
For Metrics without Limits&trade; beta customers, all metrics will return
10077-
both ingested/indexed volumes.
10078-
1007910053
Custom metrics generated in-app from other products will return `null` for
1008010054
ingested volumes.'
1008110055
operationId: ListVolumesByMetricName

examples/v2/metrics/CreateTagConfiguration.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import { v2 } from "@datadog/datadog-api-client";
66

77
const configuration = v2.createConfiguration();
8-
configuration.unstableOperations["createTagConfiguration"] = true;
98
const apiInstance = new v2.MetricsApi(configuration);
109

1110
const params: v2.MetricsApiCreateTagConfigurationRequest = {

examples/v2/metrics/DeleteTagConfiguration.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import { v2 } from "@datadog/datadog-api-client";
66

77
const configuration = v2.createConfiguration();
8-
configuration.unstableOperations["deleteTagConfiguration"] = true;
98
const apiInstance = new v2.MetricsApi(configuration);
109

1110
const params: v2.MetricsApiDeleteTagConfigurationRequest = {

examples/v2/metrics/ListTagConfigurationByName.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import { v2 } from "@datadog/datadog-api-client";
66

77
const configuration = v2.createConfiguration();
8-
configuration.unstableOperations["listTagConfigurationByName"] = true;
98
const apiInstance = new v2.MetricsApi(configuration);
109

1110
// there is a valid "metric_tag_configuration" in the system

examples/v2/metrics/ListTagConfigurations.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import { v2 } from "@datadog/datadog-api-client";
66

77
const configuration = v2.createConfiguration();
8-
configuration.unstableOperations["listTagConfigurations"] = true;
98
const apiInstance = new v2.MetricsApi(configuration);
109

1110
apiInstance

examples/v2/metrics/ListTagConfigurations_103226315.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import { v2 } from "@datadog/datadog-api-client";
66

77
const configuration = v2.createConfiguration();
8-
configuration.unstableOperations["listTagConfigurations"] = true;
98
const apiInstance = new v2.MetricsApi(configuration);
109

1110
const params: v2.MetricsApiListTagConfigurationsRequest = {

examples/v2/metrics/ListTagConfigurations_1799362914.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import { v2 } from "@datadog/datadog-api-client";
66

77
const configuration = v2.createConfiguration();
8-
configuration.unstableOperations["listTagConfigurations"] = true;
98
const apiInstance = new v2.MetricsApi(configuration);
109

1110
const params: v2.MetricsApiListTagConfigurationsRequest = {

examples/v2/metrics/UpdateTagConfiguration.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import { v2 } from "@datadog/datadog-api-client";
66

77
const configuration = v2.createConfiguration();
8-
configuration.unstableOperations["updateTagConfiguration"] = true;
98
const apiInstance = new v2.MetricsApi(configuration);
109

1110
// there is a valid "metric_tag_configuration" in the system

features/v2/metrics.feature

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ Feature: Metrics
4141
@generated @skip @team:DataDog/points-aggregation
4242
Scenario: Create a tag configuration returns "Bad Request" response
4343
Given a valid "appKeyAuth" key in the system
44-
And operation "CreateTagConfiguration" enabled
4544
And new "CreateTagConfiguration" request
4645
And request contains "metric_name" parameter from "REPLACE.ME"
4746
And body with value {"data": {"attributes": {"include_percentiles": false, "metric_type": "distribution", "tags": ["app", "datacenter"]}, "id": "http.endpoint.request", "type": "manage_tags"}}
@@ -51,7 +50,6 @@ Feature: Metrics
5150
@generated @skip @team:DataDog/points-aggregation
5251
Scenario: Create a tag configuration returns "Conflict" response
5352
Given a valid "appKeyAuth" key in the system
54-
And operation "CreateTagConfiguration" enabled
5553
And new "CreateTagConfiguration" request
5654
And request contains "metric_name" parameter from "REPLACE.ME"
5755
And body with value {"data": {"attributes": {"include_percentiles": false, "metric_type": "distribution", "tags": ["app", "datacenter"]}, "id": "http.endpoint.request", "type": "manage_tags"}}
@@ -61,7 +59,6 @@ Feature: Metrics
6159
@replay-only @team:DataDog/points-aggregation
6260
Scenario: Create a tag configuration returns "Created" response
6361
Given a valid "appKeyAuth" key in the system
64-
And operation "CreateTagConfiguration" enabled
6562
And new "CreateTagConfiguration" request
6663
And there is a valid "metric" in the system
6764
And request contains "metric_name" parameter with value "{{ unique_alnum }}"
@@ -74,7 +71,6 @@ Feature: Metrics
7471
Given there is a valid "metric" in the system
7572
And there is a valid "metric_tag_configuration" in the system
7673
And a valid "appKeyAuth" key in the system
77-
And operation "DeleteTagConfiguration" enabled
7874
And new "DeleteTagConfiguration" request
7975
And request contains "metric_name" parameter with value "{{ unique_alnum }}"
8076
When the request is sent
@@ -83,7 +79,6 @@ Feature: Metrics
8379
@generated @skip @team:DataDog/points-aggregation
8480
Scenario: Delete a tag configuration returns "Not found" response
8581
Given a valid "appKeyAuth" key in the system
86-
And operation "DeleteTagConfiguration" enabled
8782
And new "DeleteTagConfiguration" request
8883
And request contains "metric_name" parameter from "REPLACE.ME"
8984
When the request is sent
@@ -119,7 +114,6 @@ Feature: Metrics
119114
@generated @skip @team:DataDog/points-aggregation
120115
Scenario: List tag configuration by name returns "Not Found" response
121116
Given a valid "appKeyAuth" key in the system
122-
And operation "ListTagConfigurationByName" enabled
123117
And new "ListTagConfigurationByName" request
124118
And request contains "metric_name" parameter from "REPLACE.ME"
125119
When the request is sent
@@ -130,7 +124,6 @@ Feature: Metrics
130124
Given a valid "appKeyAuth" key in the system
131125
And there is a valid "metric" in the system
132126
And there is a valid "metric_tag_configuration" in the system
133-
And operation "ListTagConfigurationByName" enabled
134127
And new "ListTagConfigurationByName" request
135128
And request contains "metric_name" parameter from "metric_tag_configuration.data.id"
136129
When the request is sent
@@ -140,7 +133,6 @@ Feature: Metrics
140133
@generated @skip @team:DataDog/points-aggregation
141134
Scenario: List tag configurations returns "Bad Request" response
142135
Given a valid "appKeyAuth" key in the system
143-
And operation "ListTagConfigurations" enabled
144136
And new "ListTagConfigurations" request
145137
When the request is sent
146138
Then the response status is 400 Bad Request
@@ -149,15 +141,13 @@ Feature: Metrics
149141
Scenario: List tag configurations returns "Success" response
150142
Given a valid "appKeyAuth" key in the system
151143
And there is a valid "metric_tag_configuration" in the system
152-
And operation "ListTagConfigurations" enabled
153144
And new "ListTagConfigurations" request
154145
When the request is sent
155146
Then the response status is 200 Success
156147

157148
@team:DataDog/points-aggregation
158149
Scenario: List tag configurations with a tag filter returns "Success" response
159150
Given a valid "appKeyAuth" key in the system
160-
And operation "ListTagConfigurations" enabled
161151
And new "ListTagConfigurations" request
162152
And request contains "filter[tags]" parameter with value "{{ unique_alnum }}"
163153
When the request is sent
@@ -166,7 +156,6 @@ Feature: Metrics
166156
@team:DataDog/points-aggregation
167157
Scenario: List tag configurations with configured filter returns "Success" response
168158
Given a valid "appKeyAuth" key in the system
169-
And operation "ListTagConfigurations" enabled
170159
And new "ListTagConfigurations" request
171160
And request contains "filter[configured]" parameter with value true
172161
When the request is sent
@@ -247,7 +236,6 @@ Feature: Metrics
247236
@generated @skip @team:DataDog/points-aggregation
248237
Scenario: Update a tag configuration returns "Bad Request" response
249238
Given a valid "appKeyAuth" key in the system
250-
And operation "UpdateTagConfiguration" enabled
251239
And new "UpdateTagConfiguration" request
252240
And request contains "metric_name" parameter from "REPLACE.ME"
253241
And body with value {"data": {"attributes": {"group_by": ["app", "datacenter"], "include_percentiles": false}, "id": "http.endpoint.request", "type": "manage_tags"}}
@@ -257,7 +245,6 @@ Feature: Metrics
257245
@replay-only @team:DataDog/points-aggregation
258246
Scenario: Update a tag configuration returns "OK" response
259247
Given a valid "appKeyAuth" key in the system
260-
And operation "UpdateTagConfiguration" enabled
261248
And there is a valid "metric" in the system
262249
And there is a valid "metric_tag_configuration" in the system
263250
And new "UpdateTagConfiguration" request
@@ -270,7 +257,6 @@ Feature: Metrics
270257
@generated @skip @team:DataDog/points-aggregation
271258
Scenario: Update a tag configuration returns "Unprocessable Entity" response
272259
Given a valid "appKeyAuth" key in the system
273-
And operation "UpdateTagConfiguration" enabled
274260
And new "UpdateTagConfiguration" request
275261
And request contains "metric_name" parameter from "REPLACE.ME"
276262
And body with value {"data": {"attributes": {"group_by": ["app", "datacenter"], "include_percentiles": false}, "id": "http.endpoint.request", "type": "manage_tags"}}

0 commit comments

Comments
 (0)