Skip to content

Commit c7f4876

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit c2d7132 of spec repo
1 parent 465a9b4 commit c7f4876

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
@@ -55270,11 +55270,13 @@ paths:
5527055270
security:
5527155271
- apiKeyAuth: []
5527255272
appKeyAuth: []
55273-
- AuthZ:
55274-
- cloud_cost_management_write
5527555273
summary: Create or update a budget
5527655274
tags:
5527755275
- Cloud Cost Management
55276+
x-permission:
55277+
operator: OR
55278+
permissions:
55279+
- cloud_cost_management_write
5527855280
/api/v2/cost/budget/{budget_id}:
5527955281
delete:
5528055282
description: Delete a budget.
@@ -55338,11 +55340,13 @@ paths:
5533855340
security:
5533955341
- apiKeyAuth: []
5534055342
appKeyAuth: []
55341-
- AuthZ:
55342-
- cloud_cost_management_read
5534355343
summary: List budgets
5534455344
tags:
5534555345
- Cloud Cost Management
55346+
x-permission:
55347+
operator: OR
55348+
permissions:
55349+
- cloud_cost_management_read
5534655350
/api/v2/cost/custom_costs:
5534755351
get:
5534855352
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)