Skip to content

Commit c4ecd6a

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 31efdf2 of spec repo
1 parent 3edc49a commit c4ecd6a

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
@@ -55330,11 +55330,13 @@ paths:
5533055330
security:
5533155331
- apiKeyAuth: []
5533255332
appKeyAuth: []
55333-
- AuthZ:
55334-
- cloud_cost_management_write
5533555333
summary: Create or update a budget
5533655334
tags:
5533755335
- Cloud Cost Management
55336+
x-permission:
55337+
operator: OR
55338+
permissions:
55339+
- cloud_cost_management_write
5533855340
/api/v2/cost/budget/{budget_id}:
5533955341
delete:
5534055342
description: Delete a budget.
@@ -55398,11 +55400,13 @@ paths:
5539855400
security:
5539955401
- apiKeyAuth: []
5540055402
appKeyAuth: []
55401-
- AuthZ:
55402-
- cloud_cost_management_read
5540355403
summary: List budgets
5540455404
tags:
5540555405
- Cloud Cost Management
55406+
x-permission:
55407+
operator: OR
55408+
permissions:
55409+
- cloud_cost_management_read
5540655410
/api/v2/cost/custom_costs:
5540755411
get:
5540855412
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)