From 998879f1ee107b103d2f2455e5e06430f1139169 Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Fri, 23 Jan 2026 14:08:27 +0000 Subject: [PATCH] Regenerate client from commit 0fee65c of spec repo --- .generator/schemas/v2/openapi.yaml | 2 +- src/datadog_api_client/v2/api/cloud_cost_management_api.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index de9b3ca4f4..55cdf70631 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -71267,7 +71267,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/BudgetValidationRequest' + $ref: '#/components/schemas/BudgetWithEntries' description: OK '429': $ref: '#/components/responses/TooManyRequestsResponse' diff --git a/src/datadog_api_client/v2/api/cloud_cost_management_api.py b/src/datadog_api_client/v2/api/cloud_cost_management_api.py index a8afc30e62..a1b54c5f68 100644 --- a/src/datadog_api_client/v2/api/cloud_cost_management_api.py +++ b/src/datadog_api_client/v2/api/cloud_cost_management_api.py @@ -320,7 +320,7 @@ def __init__(self, api_client=None): self._get_budget_endpoint = _Endpoint( settings={ - "response_type": (BudgetValidationRequest,), + "response_type": (BudgetWithEntries,), "auth": ["apiKeyAuth", "appKeyAuth"], "endpoint_path": "/api/v2/cost/budget/{budget_id}", "operation_id": "get_budget", @@ -1095,14 +1095,14 @@ def delete_tag_pipelines_ruleset( def get_budget( self, budget_id: str, - ) -> BudgetValidationRequest: + ) -> BudgetWithEntries: """Get budget. Get a budget :param budget_id: Budget id. :type budget_id: str - :rtype: BudgetValidationRequest + :rtype: BudgetWithEntries """ kwargs: Dict[str, Any] = {} kwargs["budget_id"] = budget_id