Skip to content

Commit e5d4732

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
and
ci.datadog-api-spec
authored
Regenerate client from commit 088737f of spec repo (#791)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 0bd5dcd commit e5d4732

File tree

6 files changed

+15
-9
lines changed

6 files changed

+15
-9
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.4.1.dev6",
7-
"regenerated": "2021-04-27 12:57:41.547490",
8-
"spec_repo_commit": "6b0114c"
7+
"regenerated": "2021-04-27 16:17:58.448956",
8+
"spec_repo_commit": "088737f"
99
},
1010
"v2": {
1111
"apigentools_version": "1.4.1.dev6",
12-
"regenerated": "2021-04-27 12:58:07.719359",
13-
"spec_repo_commit": "6b0114c"
12+
"regenerated": "2021-04-27 16:18:21.882286",
13+
"spec_repo_commit": "088737f"
1414
}
1515
}
1616
}

api_docs/v2/MetricTagConfigurationMetricTypes.md

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99

1010
* `COUNT` (value: `"count"`)
1111

12+
* `RATE` (value: `"rate"`)
13+
1214
* `DISTRIBUTION` (value: `"distribution"`)
1315

1416

api_docs/v2/MetricsApi.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Method | HTTP request | Description
2020
2121
Create a tag configuration
2222

23-
Create and define a list of queryable tag keys for a count/gauge/rate/distribution metric. Optionally, include percentile aggregations on any distribution metric.
23+
Create and define a list of queryable tag keys for an existing count/gauge/rate/distribution metric. Optionally, include percentile aggregations on any distribution metric.
2424
Can only be used with application keys of users with the `Manage Tags for Metrics` permission.
2525

2626
### Example
@@ -284,7 +284,7 @@ Name | Type | Description | Notes
284284
------------- | ------------- | ------------- | -------------
285285
**filterConfigured** | **Boolean**| Filter metrics that have configured tags. | [optional]
286286
**filterTagsConfigured** | **String**| Filter tag configurations by configured tags. | [optional]
287-
**filterMetricType** | **MetricTagConfigurationMetricTypes**| Filter tag configurations by metric type. | [optional] [enum: gauge, count, distribution]
287+
**filterMetricType** | **MetricTagConfigurationMetricTypes**| Filter tag configurations by metric type. | [optional] [enum: gauge, count, rate, distribution]
288288
**filterIncludePercentiles** | **Boolean**| Filter distributions with additional percentile aggregations enabled or disabled. | [optional]
289289
**filterTags** | **String**| Filter metrics that have been submitted with the given tags. Supports boolean and wildcard expressions. Cannot be combined with other filters. | [optional]
290290
**windowSeconds** | **Long**| The number of seconds of look back (from now) to apply to a filter[tag] query. Defaults value is 3600 (1 hour), maximum value is 172,800 (2 days). | [optional]

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public void setApiClient(ApiClient apiClient) {
4949
}
5050

5151
/**
52-
* Create a tag configuration Create and define a list of queryable tag keys for a
52+
* Create a tag configuration Create and define a list of queryable tag keys for an existing
5353
* count/gauge/rate/distribution metric. Optionally, include percentile aggregations on any
5454
* distribution metric. Can only be used with application keys of users with the &#x60;Manage Tags
5555
* for Metrics&#x60; permission.
@@ -74,7 +74,7 @@ public MetricTagConfigurationResponse createTagConfiguration(
7474
}
7575

7676
/**
77-
* Create a tag configuration Create and define a list of queryable tag keys for a
77+
* Create a tag configuration Create and define a list of queryable tag keys for an existing
7878
* count/gauge/rate/distribution metric. Optionally, include percentile aggregations on any
7979
* distribution metric. Can only be used with application keys of users with the &#x60;Manage Tags
8080
* for Metrics&#x60; permission.

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

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ public enum MetricTagConfigurationMetricTypes {
2020

2121
COUNT("count"),
2222

23+
RATE("rate"),
24+
2325
DISTRIBUTION("distribution");
2426

2527
private String value;

src/main/java/com/datadog/api/v2/openapi.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -2587,7 +2587,7 @@ paths:
25872587
x-accepts: application/json
25882588
post:
25892589
description: |-
2590-
Create and define a list of queryable tag keys for a count/gauge/rate/distribution metric. Optionally, include percentile aggregations on any distribution metric.
2590+
Create and define a list of queryable tag keys for an existing count/gauge/rate/distribution metric. Optionally, include percentile aggregations on any distribution metric.
25912591
Can only be used with application keys of users with the `Manage Tags for Metrics` permission.
25922592
operationId: CreateTagConfiguration
25932593
parameters:
@@ -9312,12 +9312,14 @@ components:
93129312
enum:
93139313
- gauge
93149314
- count
9315+
- rate
93159316
- distribution
93169317
example: count
93179318
type: string
93189319
x-enum-varnames:
93199320
- GAUGE
93209321
- COUNT
9322+
- RATE
93219323
- DISTRIBUTION
93229324
MetricTagConfigurationResponse:
93239325
description: Response object which includes a single metric's tag configuration.

0 commit comments

Comments
 (0)