Skip to content

Commit c9bc828

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 31efdf2 of spec repo
1 parent 5a17363 commit c9bc828

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
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/main/java/com/datadog/api/client/v2/api/CloudCostManagementApi.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2815,7 +2815,7 @@ public ApiResponse<BudgetArray> listBudgetsWithHttpInfo() throws ApiException {
28152815
localVarHeaderParams,
28162816
new HashMap<String, String>(),
28172817
new String[] {"application/json"},
2818-
new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"});
2818+
new String[] {"apiKeyAuth", "appKeyAuth"});
28192819
return apiClient.invokeAPI(
28202820
"GET",
28212821
builder,
@@ -2851,7 +2851,7 @@ public CompletableFuture<ApiResponse<BudgetArray>> listBudgetsWithHttpInfoAsync(
28512851
localVarHeaderParams,
28522852
new HashMap<String, String>(),
28532853
new String[] {"application/json"},
2854-
new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"});
2854+
new String[] {"apiKeyAuth", "appKeyAuth"});
28552855
} catch (ApiException ex) {
28562856
CompletableFuture<ApiResponse<BudgetArray>> result = new CompletableFuture<>();
28572857
result.completeExceptionally(ex);
@@ -4819,7 +4819,7 @@ public ApiResponse<BudgetWithEntries> upsertBudgetWithHttpInfo(BudgetWithEntries
48194819
localVarHeaderParams,
48204820
new HashMap<String, String>(),
48214821
new String[] {"application/json"},
4822-
new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"});
4822+
new String[] {"apiKeyAuth", "appKeyAuth"});
48234823
return apiClient.invokeAPI(
48244824
"PUT",
48254825
builder,
@@ -4865,7 +4865,7 @@ public CompletableFuture<ApiResponse<BudgetWithEntries>> upsertBudgetWithHttpInf
48654865
localVarHeaderParams,
48664866
new HashMap<String, String>(),
48674867
new String[] {"application/json"},
4868-
new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"});
4868+
new String[] {"apiKeyAuth", "appKeyAuth"});
48694869
} catch (ApiException ex) {
48704870
CompletableFuture<ApiResponse<BudgetWithEntries>> result = new CompletableFuture<>();
48714871
result.completeExceptionally(ex);

0 commit comments

Comments
 (0)