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
4 changes: 2 additions & 2 deletions .generated-info
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"spec_repo_commit": "e22129c",
"generated": "2025-08-25 17:47:35.253"
"spec_repo_commit": "1e6c346",
"generated": "2025-08-25 18:45:37.801"
}
12 changes: 12 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49699,6 +49699,12 @@ paths:
schema:
$ref: '#/components/schemas/APIErrorResponse'
description: Forbidden
'404':
content:
application/json:
schema:
$ref: '#/components/schemas/APIErrorResponse'
description: Not Found
'429':
$ref: '#/components/responses/TooManyRequestsResponse'
security:
Expand Down Expand Up @@ -49851,6 +49857,12 @@ paths:
schema:
$ref: '#/components/schemas/APIErrorResponse'
description: Forbidden
'404':
content:
application/json:
schema:
$ref: '#/components/schemas/APIErrorResponse'
description: Not Found
'429':
$ref: '#/components/responses/TooManyRequestsResponse'
security:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2025-08-25T15:10:14.494Z

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2025-08-25T15:10:28.926Z

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions features/v2/cloud_cost_management.feature
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,14 @@ Feature: Cloud Cost Management
When the request is sent
Then the response status is 200 OK

@team:Datadog/cloud-cost-management
Scenario: Update Cloud Cost Management AWS CUR config returns "Not Found" response
Given new "UpdateCostAWSCURConfig" request
And request contains "cloud_account_id" parameter with value 12345678
And body with value {"data": {"attributes": {"is_enabled": true}, "type": "aws_cur_config_patch_request"}}
When the request is sent
Then the response status is 404 Not Found

@replay-only @team:Datadog/cloud-cost-management
Scenario: Update Cloud Cost Management AWS CUR config returns "OK" response
Given new "UpdateCostAWSCURConfig" request
Expand All @@ -284,6 +292,14 @@ Feature: Cloud Cost Management
When the request is sent
Then the response status is 400 Bad Request

@team:Datadog/cloud-cost-management
Scenario: Update Cloud Cost Management Azure config returns "Not Found" response
Given new "UpdateCostAzureUCConfigs" request
And request contains "cloud_account_id" parameter with value 12345678
And body with value {"data": {"attributes": {"is_enabled": true}, "type": "azure_uc_config_patch_request"}}
When the request is sent
Then the response status is 404 Not Found

@replay-only @team:Datadog/cloud-cost-management
Scenario: Update Cloud Cost Management Azure config returns "OK" response
Given new "UpdateCostAzureUCConfigs" request
Expand Down
Loading