Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.4.1.dev6",
"regenerated": "2021-04-22 12:36:13.157210",
"spec_repo_commit": "fa07bf6"
"regenerated": "2021-04-22 16:18:54.220157",
"spec_repo_commit": "cb2432f"
},
"v2": {
"apigentools_version": "1.4.1.dev6",
"regenerated": "2021-04-22 12:37:03.824810",
"spec_repo_commit": "fa07bf6"
"regenerated": "2021-04-22 16:19:39.256096",
"spec_repo_commit": "cb2432f"
}
}
}
6 changes: 0 additions & 6 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2401,9 +2401,6 @@ paths:
- Metrics
x-undo:
type: safe
x-unstable: |-
**Note: This endpoint is in public beta. If you have any feedback,
contact [Datadog support](https://docs.datadoghq.com/help/).**
x-accepts: application/json
/api/v2/metrics/{metric_name}/tags:
delete:
Expand Down Expand Up @@ -2701,9 +2698,6 @@ paths:
- Metrics
x-undo:
type: safe
x-unstable: |-
**Note: This endpoint is in public beta. If you have any feedback,
contact [Datadog support](https://docs.datadoghq.com/help/).**
x-accepts: application/json
/api/v2/permissions:
get:
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/datadog/api/v2/client/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,6 @@ public class ApiClient extends JavaTimeFormatter {
put("deleteTagConfiguration", false);
put("listTagConfigurationByName", false);
put("listTagConfigurations", false);
put("listTagsByMetricName", false);
put("listVolumesByMetricName", false);
put("updateTagConfiguration", false);
put("listSecurityMonitoringSignals", false);
put("searchSecurityMonitoringSignals", false);
Expand Down
6 changes: 0 additions & 6 deletions src/main/java/com/datadog/api/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6428,9 +6428,6 @@ paths:
- Metrics
x-undo:
type: safe
x-unstable: '**Note: This endpoint is in public beta. If you have any feedback,

contact [Datadog support](https://docs.datadoghq.com/help/).**'
/api/v2/metrics/{metric_name}/tags:
delete:
description: 'Deletes a metric''s tag configuration. Can only be used with application
Expand Down Expand Up @@ -6686,9 +6683,6 @@ paths:
- Metrics
x-undo:
type: safe
x-unstable: '**Note: This endpoint is in public beta. If you have any feedback,

contact [Datadog support](https://docs.datadoghq.com/help/).**'
/api/v2/permissions:
get:
description: Returns a list of all permissions, including name, description,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,23 +75,20 @@ Feature: Metrics

@generated @skip
Scenario: List distinct metric volumes by metric name returns "Bad Request" response
Given operation "ListVolumesByMetricName" enabled
And new "ListVolumesByMetricName" request
Given new "ListVolumesByMetricName" request
And request contains "metric_name" parameter from "<PATH>"
When the request is sent
Then the response status is 400 Bad Request

@generated @skip
Scenario: List distinct metric volumes by metric name returns "Not Found" response
Given operation "ListVolumesByMetricName" enabled
And new "ListVolumesByMetricName" request
Given new "ListVolumesByMetricName" request
And request contains "metric_name" parameter from "<PATH>"
When the request is sent
Then the response status is 404 Not Found

Scenario: List distinct metric volumes by metric name returns "Success" response
Given there is a valid "metric_tag_configuration" in the system
And operation "ListVolumesByMetricName" enabled
And new "ListVolumesByMetricName" request
And request contains "metric_name" parameter from "metric_tag_configuration.data.id"
When the request is sent
Expand All @@ -100,8 +97,7 @@ Feature: Metrics

@generated @skip
Scenario: List distinct metric volumes by metric name returns "Too Many Requests" response
Given operation "ListVolumesByMetricName" enabled
And new "ListVolumesByMetricName" request
Given new "ListVolumesByMetricName" request
And request contains "metric_name" parameter from "<PATH>"
When the request is sent
Then the response status is 429 Too Many Requests
Expand Down Expand Up @@ -163,23 +159,20 @@ Feature: Metrics

@generated @skip
Scenario: List tags by metric name returns "Bad Request" response
Given operation "ListTagsByMetricName" enabled
And new "ListTagsByMetricName" request
Given new "ListTagsByMetricName" request
And request contains "metric_name" parameter from "<PATH>"
When the request is sent
Then the response status is 400 Bad Request

@generated @skip
Scenario: List tags by metric name returns "Not Found" response
Given operation "ListTagsByMetricName" enabled
And new "ListTagsByMetricName" request
Given new "ListTagsByMetricName" request
And request contains "metric_name" parameter from "<PATH>"
When the request is sent
Then the response status is 404 Not Found

Scenario: List tags by metric name returns "Success" response
Given there is a valid "metric_tag_configuration" in the system
And operation "ListTagsByMetricName" enabled
And new "ListTagsByMetricName" request
And request contains "metric_name" parameter from "metric_tag_configuration.data.id"
When the request is sent
Expand All @@ -188,8 +181,7 @@ Feature: Metrics

@generated @skip
Scenario: List tags by metric name returns "Too Many Requests" response
Given operation "ListTagsByMetricName" enabled
And new "ListTagsByMetricName" request
Given new "ListTagsByMetricName" request
And request contains "metric_name" parameter from "<PATH>"
When the request is sent
Then the response status is 429 Too Many Requests
Expand Down