Skip to content

Commit 0e2d726

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 9e61c76 of spec repo
1 parent e74b66c commit 0e2d726

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.generator/schemas/v2/openapi.yaml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55252,11 +55252,13 @@ paths:
5525255252
security:
5525355253
- apiKeyAuth: []
5525455254
appKeyAuth: []
55255-
- AuthZ:
55256-
- cloud_cost_management_write
5525755255
summary: Create or update a budget
5525855256
tags:
5525955257
- Cloud Cost Management
55258+
x-permission:
55259+
operator: OR
55260+
permissions:
55261+
- cloud_cost_management_write
5526055262
/api/v2/cost/budget/{budget_id}:
5526155263
delete:
5526255264
description: Delete a budget.
@@ -55320,11 +55322,13 @@ paths:
5532055322
security:
5532155323
- apiKeyAuth: []
5532255324
appKeyAuth: []
55323-
- AuthZ:
55324-
- cloud_cost_management_read
5532555325
summary: List budgets
5532655326
tags:
5532755327
- Cloud Cost Management
55328+
x-permission:
55329+
operator: OR
55330+
permissions:
55331+
- cloud_cost_management_read
5532855332
/api/v2/cost/custom_costs:
5532955333
get:
5533055334
description: List the Custom Costs files.

src/datadog_api_client/v2/api/cloud_cost_management_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ def __init__(self, api_client=None):
495495
self._list_budgets_endpoint = _Endpoint(
496496
settings={
497497
"response_type": (BudgetArray,),
498-
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
498+
"auth": ["apiKeyAuth", "appKeyAuth"],
499499
"endpoint_path": "/api/v2/cost/budgets",
500500
"operation_id": "list_budgets",
501501
"http_method": "GET",
@@ -803,7 +803,7 @@ def __init__(self, api_client=None):
803803
self._upsert_budget_endpoint = _Endpoint(
804804
settings={
805805
"response_type": (BudgetWithEntries,),
806-
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
806+
"auth": ["apiKeyAuth", "appKeyAuth"],
807807
"endpoint_path": "/api/v2/cost/budget",
808808
"operation_id": "upsert_budget",
809809
"http_method": "PUT",

0 commit comments

Comments
 (0)