Skip to content

Commit dd2a537

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit f8a8872 of spec repo
1 parent 6818a6f commit dd2a537

File tree

7 files changed

+39
-26
lines changed

7 files changed

+39
-26
lines changed

.generator/schemas/v2/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75602,7 +75602,7 @@ paths:
7560275602
appKeyAuth: []
7560375603
- AuthZ:
7560475604
- cloud_cost_management_read
75605-
summary: Get ruleset
75605+
summary: Get a tag pipeline ruleset
7560675606
tags:
7560775607
- Cloud Cost Management
7560875608
patch:
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2025-10-14T20:06:56.512Z

cassettes/features/v2/cloud_cost_management/Get-a-tag-pipeline-ruleset-returns-OK-response.yml

Lines changed: 24 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Get ruleset returns "OK" response
1+
# Get a tag pipeline ruleset returns "OK" response
22

33
require "datadog_api_client"
44
api_instance = DatadogAPIClient::V2::CloudCostManagementAPI.new
5-
p api_instance.get_tag_pipelines_ruleset("ruleset_id")
5+
p api_instance.get_tag_pipelines_ruleset("a1e9de9b-b88e-41c6-a0cd-cc0ebd7092de")

examples/v2/cloud-cost-management/GetTagPipelinesRuleset_2339377367.rb

Lines changed: 0 additions & 5 deletions
This file was deleted.

features/v2/cloud_cost_management.feature

Lines changed: 9 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,15 @@ Feature: Cloud Cost Management
262262
When the request is sent
263263
Then the response status is 200 OK
264264

265+
@replay-only @team:DataDog/cloud-cost-management
266+
Scenario: Get a tag pipeline ruleset returns "OK" response
267+
Given new "GetTagPipelinesRuleset" request
268+
And request contains "ruleset_id" parameter with value "a1e9de9b-b88e-41c6-a0cd-cc0ebd7092de"
269+
When the request is sent
270+
Then the response status is 200 OK
271+
And the response "data.type" is equal to "ruleset"
272+
And the response "data.attributes.name" is equal to "EVP Cost Tags"
273+
265274
@replay-only @team:DataDog/cloud-cost-management
266275
Scenario: Get cost AWS CUR config returns "OK" response
267276
Given new "GetCostAWSCURConfig" request
@@ -288,22 +297,6 @@ Feature: Cloud Cost Management
288297
When the request is sent
289298
Then the response status is 200 OK
290299

291-
@generated @skip @team:DataDog/cloud-cost-management
292-
Scenario: Get ruleset returns "OK" response
293-
Given new "GetTagPipelinesRuleset" request
294-
And request contains "ruleset_id" parameter from "REPLACE.ME"
295-
When the request is sent
296-
Then the response status is 200 OK
297-
298-
@replay-only @team:DataDog/cloud-cost-management
299-
Scenario: Get tag pipeline ruleset returns "OK" response
300-
Given new "GetTagPipelinesRuleset" request
301-
And request contains "ruleset_id" parameter with value "ee10c3ff-312f-464c-b4f6-46adaa6d00a1"
302-
When the request is sent
303-
Then the response status is 200 OK
304-
And the response "data.type" is equal to "ruleset"
305-
And the response "data.attributes.name" is equal to "New Ruleset"
306-
307300
@replay-only @team:DataDog/cloud-cost-management
308301
Scenario: List Cloud Cost Management AWS CUR configs returns "OK" response
309302
Given new "ListCostAWSCURConfigs" request

lib/datadog_api_client/v2/api/cloud_cost_management_api.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1215,15 +1215,15 @@ def get_custom_costs_file_with_http_info(file_id, opts = {})
12151215
return data, status_code, headers
12161216
end
12171217

1218-
# Get ruleset.
1218+
# Get a tag pipeline ruleset.
12191219
#
12201220
# @see #get_tag_pipelines_ruleset_with_http_info
12211221
def get_tag_pipelines_ruleset(ruleset_id, opts = {})
12221222
data, _status_code, _headers = get_tag_pipelines_ruleset_with_http_info(ruleset_id, opts)
12231223
data
12241224
end
12251225

1226-
# Get ruleset.
1226+
# Get a tag pipeline ruleset.
12271227
#
12281228
# Get a specific tag pipeline ruleset - Retrieve a specific tag pipeline ruleset by its ID
12291229
#

0 commit comments

Comments
 (0)