diff --git a/.generated-info b/.generated-info index 47cfabbcc7c..19c26bde7ba 100644 --- a/.generated-info +++ b/.generated-info @@ -1,4 +1,4 @@ { - "spec_repo_commit": "671ba51", - "generated": "2025-07-16 20:18:30.103" + "spec_repo_commit": "0becaa3", + "generated": "2025-07-17 13:14:16.680" } diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index e713722382c..6511a44e042 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -25773,6 +25773,10 @@ paths: appKeyAuth: [] - AuthZ: - dashboards_public_share + - AuthZ: + - dashboards_embed_share + - AuthZ: + - dashboards_invite_share summary: Create a shared dashboard tags: - Dashboards @@ -25781,6 +25785,8 @@ paths: operator: OR permissions: - dashboards_public_share + - dashboards_embed_share + - dashboards_invite_share /api/v1/dashboard/public/{token}: delete: description: Revoke the public URL for a dashboard (rendering it private) associated @@ -25819,6 +25825,10 @@ paths: appKeyAuth: [] - AuthZ: - dashboards_public_share + - AuthZ: + - dashboards_embed_share + - AuthZ: + - dashboards_invite_share summary: Revoke a shared dashboard URL tags: - Dashboards @@ -25826,6 +25836,8 @@ paths: operator: OR permissions: - dashboards_public_share + - dashboards_embed_share + - dashboards_invite_share get: description: Fetch an existing shared dashboard's sharing metadata associated with the specified token. @@ -25936,6 +25948,10 @@ paths: appKeyAuth: [] - AuthZ: - dashboards_public_share + - AuthZ: + - dashboards_embed_share + - AuthZ: + - dashboards_invite_share summary: Update a shared dashboard tags: - Dashboards @@ -25944,6 +25960,8 @@ paths: operator: OR permissions: - dashboards_public_share + - dashboards_embed_share + - dashboards_invite_share /api/v1/dashboard/public/{token}/invitation: delete: description: Revoke previously sent invitation emails and active sessions used @@ -25991,7 +26009,7 @@ paths: - apiKeyAuth: [] appKeyAuth: [] - AuthZ: - - dashboards_public_share + - dashboards_invite_share summary: Revoke shared dashboard invitations tags: - Dashboards @@ -25999,7 +26017,7 @@ paths: x-permission: operator: OR permissions: - - dashboards_public_share + - dashboards_invite_share get: description: Describe the invitations that exist for the given shared dashboard (paginated). @@ -26050,14 +26068,14 @@ paths: - apiKeyAuth: [] appKeyAuth: [] - AuthZ: - - dashboards_public_share + - dashboards_invite_share summary: Get all invitations for a shared dashboard tags: - Dashboards x-permission: operator: OR permissions: - - dashboards_public_share + - dashboards_invite_share post: description: Send emails to specified email addresses containing links to access a given authenticated shared dashboard. Email addresses must already belong @@ -26115,7 +26133,7 @@ paths: - apiKeyAuth: [] appKeyAuth: [] - AuthZ: - - dashboards_public_share + - dashboards_invite_share summary: Send shared dashboard invitation email tags: - Dashboards @@ -26123,7 +26141,7 @@ paths: x-permission: operator: OR permissions: - - dashboards_public_share + - dashboards_invite_share /api/v1/dashboard/{dashboard_id}: delete: description: Delete a dashboard using the specified ID. diff --git a/.generator/src/generator/cli.py b/.generator/src/generator/cli.py index 67478ec3ad5..6e340f7777c 100644 --- a/.generator/src/generator/cli.py +++ b/.generator/src/generator/cli.py @@ -67,6 +67,7 @@ def cli(specs, output): env.globals["get_accessors"] = openapi.get_accessors env.globals["get_default"] = openapi.get_default env.globals["get_container_type"] = openapi.get_container_type + env.globals["get_security_names"] = openapi.get_security_names api_j2 = env.get_template("Api.j2") model_j2 = env.get_template("model.j2") diff --git a/.generator/src/generator/openapi.py b/.generator/src/generator/openapi.py index 9937976afb1..4f71c9e5865 100644 --- a/.generator/src/generator/openapi.py +++ b/.generator/src/generator/openapi.py @@ -589,6 +589,18 @@ def get_container_type(operation, attribute_path, stop=None): return type_to_java(parameter) +def get_security_names(security): + if security is None: + return [] + + auth_names = set() + for auth in security: + for key in auth.keys() if isinstance(auth, dict) else [auth]: + auth_names.add(key) + + return list(auth_names) + + class Operation: def __init__(self, name, spec, method, path): self.name = name diff --git a/.generator/src/generator/templates/Api.j2 b/.generator/src/generator/templates/Api.j2 index d23d52c46ff..96d9af1f982 100644 --- a/.generator/src/generator/templates/Api.j2 +++ b/.generator/src/generator/templates/Api.j2 @@ -379,7 +379,7 @@ public class {{ name }} { if ({{ name|variable_name }} != null) { localVarFormParams.put("{{ name }}", {{ name|variable_name }}); } {%- endfor %} - Invocation.Builder builder = apiClient.createBuilder("{{ version }}.{{ name }}.{{ operationId }}", localVarPath, {% if queryParams %}localVarQueryParams{% else %}new ArrayList(){% endif %}, localVarHeaderParams, new HashMap(), new String[] { {%- for mediaType in operation|accept_headers %}"{{ mediaType }}"{% if loop.nextitem %}, {% endif %}{% endfor %} }, new String[] { {% for authMethod in authMethods|reverse %}{%- for name in authMethod %}"{{ name }}"{% if loop.nextitem %}, {% endif %}{% endfor %}{% if loop.nextitem %}, {% endif %}{% endfor %} }); + Invocation.Builder builder = apiClient.createBuilder("{{ version }}.{{ name }}.{{ operationId }}", localVarPath, {% if queryParams %}localVarQueryParams{% else %}new ArrayList(){% endif %}, localVarHeaderParams, new HashMap(), new String[] { {%- for mediaType in operation|accept_headers %}"{{ mediaType }}"{% if loop.nextitem %}, {% endif %}{% endfor %} }, new String[] { {% for name in get_security_names(authMethods)|sort %}"{{ name }}"{% if loop.nextitem %}, {% endif %}{% endfor %} }); return apiClient.invokeAPI("{{ method.upper() }}", builder, localVarHeaderParams, new String[] { {%- if operation.requestBody is defined %} {%- for mediaType in operation.requestBody.content.keys() %}"{{ mediaType }}"{% if loop.nextitem %}, {% endif %}{%- endfor %}{%- endif %} }, localVarPostBody,{% if formParams %}localVarFormParams{% else %}new HashMap(){% endif %} , {% if operation.requestBody %}{% if operation.requestBody.nullable %}true{% else %}false{% endif %}{% else %}false{% endif %}, {% if returnType %}new GenericType<{{ returnType }}>() {}{% else %}null{% endif %}); } diff --git a/src/main/java/com/datadog/api/client/v1/api/DashboardListsApi.java b/src/main/java/com/datadog/api/client/v1/api/DashboardListsApi.java index 1c5fb782e5f..45155d39ec0 100644 --- a/src/main/java/com/datadog/api/client/v1/api/DashboardListsApi.java +++ b/src/main/java/com/datadog/api/client/v1/api/DashboardListsApi.java @@ -112,7 +112,7 @@ public ApiResponse createDashboardListWithHttpInfo(DashboardList localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -245,7 +245,7 @@ public ApiResponse deleteDashboardListWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -381,7 +381,7 @@ public ApiResponse getDashboardListWithHttpInfo(Long listId) thro localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -504,7 +504,7 @@ public ApiResponse listDashboardListsWithHttpInfo() localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -638,7 +638,7 @@ public ApiResponse updateDashboardListWithHttpInfo(Long listId, D localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PUT", builder, diff --git a/src/main/java/com/datadog/api/client/v1/api/DashboardsApi.java b/src/main/java/com/datadog/api/client/v1/api/DashboardsApi.java index bd4c4fab4f4..298694a1e33 100644 --- a/src/main/java/com/datadog/api/client/v1/api/DashboardsApi.java +++ b/src/main/java/com/datadog/api/client/v1/api/DashboardsApi.java @@ -125,7 +125,7 @@ public ApiResponse createDashboardWithHttpInfo(Dashboard body) throws localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -257,7 +257,7 @@ public ApiResponse createPublicDashboardWithHttpInfo(SharedDash localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -304,7 +304,7 @@ public CompletableFuture> createPublicDashboardWith localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"AuthZ", "AuthZ", "AuthZ", "apiKeyAuth", "appKeyAuth"}); } catch (ApiException ex) { CompletableFuture> result = new CompletableFuture<>(); result.completeExceptionally(ex); @@ -391,7 +391,7 @@ public ApiResponse deleteDashboardWithHttpInfo(String d localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -526,7 +526,7 @@ public ApiResponse deleteDashboardsWithHttpInfo(DashboardBulkDeleteRequest localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -660,7 +660,7 @@ public ApiResponse deletePublicDashboardWithHttpI localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -710,7 +710,7 @@ public ApiResponse deletePublicDashboardWithHttpI localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"AuthZ", "AuthZ", "AuthZ", "apiKeyAuth", "appKeyAuth"}); } catch (ApiException ex) { CompletableFuture> result = new CompletableFuture<>(); @@ -810,7 +810,7 @@ public ApiResponse deletePublicDashboardInvitationWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -959,7 +959,7 @@ public ApiResponse getDashboardWithHttpInfo(String dashboardId) throw localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1098,7 +1098,7 @@ public ApiResponse getPublicDashboardWithHttpInfo(String token) localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1308,7 +1308,7 @@ public ApiResponse getPublicDashboardInvitationsWithHttp localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1593,7 +1593,7 @@ public ApiResponse listDashboardsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1726,7 +1726,7 @@ public ApiResponse restoreDashboardsWithHttpInfo(DashboardRestoreRequest b localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PATCH", builder, @@ -1873,7 +1873,7 @@ public ApiResponse sendPublicDashboardInvitationWithHttp localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -2031,7 +2031,7 @@ public ApiResponse updateDashboardWithHttpInfo(String dashboardId, Da localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PUT", builder, @@ -2189,7 +2189,7 @@ public ApiResponse updatePublicDashboardWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PUT", builder, @@ -2248,7 +2248,7 @@ public CompletableFuture> updatePublicDashboardWith localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"AuthZ", "AuthZ", "AuthZ", "apiKeyAuth", "appKeyAuth"}); } catch (ApiException ex) { CompletableFuture> result = new CompletableFuture<>(); result.completeExceptionally(ex); diff --git a/src/main/java/com/datadog/api/client/v1/api/DowntimesApi.java b/src/main/java/com/datadog/api/client/v1/api/DowntimesApi.java index ee48b24db0a..dc85675837a 100644 --- a/src/main/java/com/datadog/api/client/v1/api/DowntimesApi.java +++ b/src/main/java/com/datadog/api/client/v1/api/DowntimesApi.java @@ -122,7 +122,7 @@ public ApiResponse cancelDowntimeWithHttpInfo(Long downtimeId) throws ApiE localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -269,7 +269,7 @@ public ApiResponse cancelDowntimesByScopeWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -409,7 +409,7 @@ public ApiResponse createDowntimeWithHttpInfo(Downtime body) throws Ap localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -551,7 +551,7 @@ public ApiResponse getDowntimeWithHttpInfo(Long downtimeId) throws Api localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -754,7 +754,7 @@ public ApiResponse> listDowntimesWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -894,7 +894,7 @@ public ApiResponse> listMonitorDowntimesWithHttpInfo(Long monitor localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1050,7 +1050,7 @@ public ApiResponse updateDowntimeWithHttpInfo(Long downtimeId, Downtim localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PUT", builder, diff --git a/src/main/java/com/datadog/api/client/v1/api/EventsApi.java b/src/main/java/com/datadog/api/client/v1/api/EventsApi.java index 9d9de1457f8..cf8f23b55a4 100644 --- a/src/main/java/com/datadog/api/client/v1/api/EventsApi.java +++ b/src/main/java/com/datadog/api/client/v1/api/EventsApi.java @@ -248,7 +248,7 @@ public ApiResponse getEventWithHttpInfo(Long eventId) throws ApiE localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -539,7 +539,7 @@ public ApiResponse listEventsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, diff --git a/src/main/java/com/datadog/api/client/v1/api/HostsApi.java b/src/main/java/com/datadog/api/client/v1/api/HostsApi.java index 2758e392aa6..c269e46283b 100644 --- a/src/main/java/com/datadog/api/client/v1/api/HostsApi.java +++ b/src/main/java/com/datadog/api/client/v1/api/HostsApi.java @@ -159,7 +159,7 @@ public ApiResponse getHostTotalsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -436,7 +436,7 @@ public ApiResponse listHostsWithHttpInfo(ListHostsOptionalPara localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, diff --git a/src/main/java/com/datadog/api/client/v1/api/LogsIndexesApi.java b/src/main/java/com/datadog/api/client/v1/api/LogsIndexesApi.java index 3dbb4494091..3dfa557b646 100644 --- a/src/main/java/com/datadog/api/client/v1/api/LogsIndexesApi.java +++ b/src/main/java/com/datadog/api/client/v1/api/LogsIndexesApi.java @@ -608,7 +608,7 @@ public ApiResponse listLogIndexesWithHttpInfo() throws Ap localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, diff --git a/src/main/java/com/datadog/api/client/v1/api/MetricsApi.java b/src/main/java/com/datadog/api/client/v1/api/MetricsApi.java index b655ca5092f..b5a2e60e71e 100644 --- a/src/main/java/com/datadog/api/client/v1/api/MetricsApi.java +++ b/src/main/java/com/datadog/api/client/v1/api/MetricsApi.java @@ -122,7 +122,7 @@ public ApiResponse getMetricMetadataWithHttpInfo(String metricNa localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -327,7 +327,7 @@ public ApiResponse listActiveMetricsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -470,7 +470,7 @@ public ApiResponse listMetricsWithHttpInfo(String q) throw localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -627,7 +627,7 @@ public ApiResponse queryMetricsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, diff --git a/src/main/java/com/datadog/api/client/v1/api/MonitorsApi.java b/src/main/java/com/datadog/api/client/v1/api/MonitorsApi.java index 50bf8c36b80..3e43e8b485d 100644 --- a/src/main/java/com/datadog/api/client/v1/api/MonitorsApi.java +++ b/src/main/java/com/datadog/api/client/v1/api/MonitorsApi.java @@ -124,7 +124,7 @@ public ApiResponse checkCanDeleteMonitorWithHttpI localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -599,7 +599,7 @@ public ApiResponse createMonitorWithHttpInfo(Monitor body) throws ApiEx localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -788,7 +788,7 @@ public ApiResponse deleteMonitorWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -1000,7 +1000,7 @@ public ApiResponse getMonitorWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1346,7 +1346,7 @@ public ApiResponse> listMonitorsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1584,7 +1584,7 @@ public ApiResponse searchMonitorGroupsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1814,7 +1814,7 @@ public ApiResponse searchMonitorsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1959,7 +1959,7 @@ public ApiResponse updateMonitorWithHttpInfo(Long monitorId, MonitorUpd localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PUT", builder, @@ -2113,7 +2113,7 @@ public ApiResponse validateExistingMonitorWithHttpInfo(Long monitorId, M localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -2258,7 +2258,7 @@ public ApiResponse validateMonitorWithHttpInfo(Monitor body) throws ApiE localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, diff --git a/src/main/java/com/datadog/api/client/v1/api/ServiceLevelObjectiveCorrectionsApi.java b/src/main/java/com/datadog/api/client/v1/api/ServiceLevelObjectiveCorrectionsApi.java index 9663c76eb41..9dd75b7a6fd 100644 --- a/src/main/java/com/datadog/api/client/v1/api/ServiceLevelObjectiveCorrectionsApi.java +++ b/src/main/java/com/datadog/api/client/v1/api/ServiceLevelObjectiveCorrectionsApi.java @@ -120,7 +120,7 @@ public ApiResponse createSLOCorrectionWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -640,7 +640,7 @@ public ApiResponse listSLOCorrectionWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, diff --git a/src/main/java/com/datadog/api/client/v1/api/ServiceLevelObjectivesApi.java b/src/main/java/com/datadog/api/client/v1/api/ServiceLevelObjectivesApi.java index ef4b7caca0a..50aae4cdc32 100644 --- a/src/main/java/com/datadog/api/client/v1/api/ServiceLevelObjectivesApi.java +++ b/src/main/java/com/datadog/api/client/v1/api/ServiceLevelObjectivesApi.java @@ -131,7 +131,7 @@ public ApiResponse checkCanDeleteSLOWithHttpInfo(Stri localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -265,7 +265,7 @@ public ApiResponse createSLOWithHttpInfo(ServiceLevelObjectiveR localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -455,7 +455,7 @@ public ApiResponse deleteSLOWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -598,7 +598,7 @@ public ApiResponse deleteSLOTimeframeInBulkWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -784,7 +784,7 @@ public ApiResponse getSLOWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -925,7 +925,7 @@ public ApiResponse getSLOCorrectionsWithHttpInfo(Stri localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1169,7 +1169,7 @@ public ApiResponse getSLOHistoryWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1498,7 +1498,7 @@ public ApiResponse listSLOsWithHttpInfo(ListSLOsOptionalParamet localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1723,7 +1723,7 @@ public ApiResponse searchSLOWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1866,7 +1866,7 @@ public ApiResponse updateSLOWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PUT", builder, diff --git a/src/main/java/com/datadog/api/client/v1/api/SnapshotsApi.java b/src/main/java/com/datadog/api/client/v1/api/SnapshotsApi.java index 0e28430bbd6..0118aee2827 100644 --- a/src/main/java/com/datadog/api/client/v1/api/SnapshotsApi.java +++ b/src/main/java/com/datadog/api/client/v1/api/SnapshotsApi.java @@ -260,7 +260,7 @@ public ApiResponse getGraphSnapshotWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, diff --git a/src/main/java/com/datadog/api/client/v1/api/SyntheticsApi.java b/src/main/java/com/datadog/api/client/v1/api/SyntheticsApi.java index a0c4808a25f..5a52ab78bd0 100644 --- a/src/main/java/com/datadog/api/client/v1/api/SyntheticsApi.java +++ b/src/main/java/com/datadog/api/client/v1/api/SyntheticsApi.java @@ -140,7 +140,7 @@ public ApiResponse createGlobalVariableWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -273,7 +273,7 @@ public ApiResponse createPrivateLocat localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -407,7 +407,7 @@ public ApiResponse createSyntheticsAPITestWithHttpInfo(Synthe localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -541,7 +541,7 @@ public ApiResponse createSyntheticsBrowserTestWithHttpInf localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -676,7 +676,7 @@ public ApiResponse createSyntheticsMobileTestWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -810,7 +810,7 @@ public ApiResponse deleteGlobalVariableWithHttpInfo(String variableId) thr localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -946,7 +946,7 @@ public ApiResponse deletePrivateLocationWithHttpInfo(String locationId) localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -1083,7 +1083,7 @@ public ApiResponse deleteTestsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -1229,7 +1229,7 @@ public ApiResponse editGlobalVariableWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PUT", builder, @@ -1375,7 +1375,7 @@ public ApiResponse> fetchUptimesWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -1507,7 +1507,7 @@ public ApiResponse getAPITestWithHttpInfo(String publicId) localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1729,7 +1729,7 @@ public ApiResponse getAPITestLatestRe localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1889,7 +1889,7 @@ public ApiResponse getAPITestResultWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -2038,7 +2038,7 @@ public ApiResponse getBrowserTestWithHttpInfo(String publ localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -2265,7 +2265,7 @@ public SyntheticsGetBrowserTestLatestResultsResponse getBrowserTestLatestResults localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -2430,7 +2430,7 @@ public ApiResponse getBrowserTestResultWithHttp localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -2581,7 +2581,7 @@ public ApiResponse getGlobalVariableWithHttpInfo(Strin localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -2717,7 +2717,7 @@ public ApiResponse getMobileTestWithHttpInfo(String public localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -2852,7 +2852,7 @@ public ApiResponse getPrivateLocationWithHttpInfo(Str localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -2987,7 +2987,7 @@ public ApiResponse getSyntheticsCIBatchWithHttpInfo(Stri localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -3230,7 +3230,7 @@ public ApiResponse getTestWithHttpInfo(String publicId) localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -3352,7 +3352,7 @@ public ApiResponse listGlobalVariablesWit localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -3463,7 +3463,7 @@ public ApiResponse listLocationsWithHttpInfo() throws ApiEx localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -3695,7 +3695,7 @@ public ApiResponse listTestsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -3840,7 +3840,7 @@ public ApiResponse patchTestWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PATCH", builder, @@ -4099,7 +4099,7 @@ public ApiResponse searchTestsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -4238,7 +4238,7 @@ public ApiResponse triggerCITestsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -4372,7 +4372,7 @@ public ApiResponse triggerTestsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -4518,7 +4518,7 @@ public ApiResponse updateAPITestWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PUT", builder, @@ -4675,7 +4675,7 @@ public ApiResponse updateBrowserTestWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PUT", builder, @@ -4832,7 +4832,7 @@ public ApiResponse updateMobileTestWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PUT", builder, @@ -4988,7 +4988,7 @@ public ApiResponse updatePrivateLocationWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PUT", builder, @@ -5147,7 +5147,7 @@ public ApiResponse updateTestPauseStatusWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PUT", builder, diff --git a/src/main/java/com/datadog/api/client/v1/api/TagsApi.java b/src/main/java/com/datadog/api/client/v1/api/TagsApi.java index c0f3fec0162..aa78d16765c 100644 --- a/src/main/java/com/datadog/api/client/v1/api/TagsApi.java +++ b/src/main/java/com/datadog/api/client/v1/api/TagsApi.java @@ -782,7 +782,7 @@ public ApiResponse listHostTagsWithHttpInfo(ListHostTagsOptionalPara localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, diff --git a/src/main/java/com/datadog/api/client/v1/api/UsageMeteringApi.java b/src/main/java/com/datadog/api/client/v1/api/UsageMeteringApi.java index 9715ac1b631..ad127c464f4 100644 --- a/src/main/java/com/datadog/api/client/v1/api/UsageMeteringApi.java +++ b/src/main/java/com/datadog/api/client/v1/api/UsageMeteringApi.java @@ -543,7 +543,7 @@ public ApiResponse getHourlyUsageAttributionWith localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -793,7 +793,7 @@ public ApiResponse getIncidentManagementWithHtt localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1015,7 +1015,7 @@ public ApiResponse getIngestedSpansWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1596,7 +1596,7 @@ public ApiResponse getMonthlyUsageAttributionWi localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -2163,7 +2163,7 @@ public ApiResponse getUsageAnalyzedLogsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -2377,7 +2377,7 @@ public ApiResponse getUsageAuditLogsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -2584,7 +2584,7 @@ public ApiResponse getUsageBillableSummaryWithHttp localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -2792,7 +2792,7 @@ public ApiResponse getUsageCIAppWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -3022,7 +3022,7 @@ public UsageCloudSecurityPostureManagementResponse getUsageCloudSecurityPostureM localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -3245,7 +3245,7 @@ public ApiResponse getUsageCWSWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -3462,7 +3462,7 @@ public ApiResponse getUsageDBMWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -3681,7 +3681,7 @@ public ApiResponse getUsageFargateWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -3898,7 +3898,7 @@ public ApiResponse getUsageHostsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -4121,7 +4121,7 @@ public ApiResponse getUsageIndexedSpansWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -4344,7 +4344,7 @@ public ApiResponse getUsageInternetOfThingsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -4562,7 +4562,7 @@ public ApiResponse getUsageLambdaWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -4779,7 +4779,7 @@ public ApiResponse getUsageLogsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -4999,7 +4999,7 @@ public ApiResponse getUsageLogsByIndexWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -5224,7 +5224,7 @@ public ApiResponse getUsageLogsByRetentionWithHttp localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -5451,7 +5451,7 @@ public ApiResponse getUsageNetworkFlowsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -5675,7 +5675,7 @@ public ApiResponse getUsageNetworkHostsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -5899,7 +5899,7 @@ public ApiResponse getUsageOnlineArchiveWithHttpInfo localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -6118,7 +6118,7 @@ public ApiResponse getUsageProfilingWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -6356,7 +6356,7 @@ public ApiResponse getUsageRumSessionsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -6578,7 +6578,7 @@ public ApiResponse getUsageRumUnitsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -6795,7 +6795,7 @@ public ApiResponse getUsageSDSWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -7012,7 +7012,7 @@ public ApiResponse getUsageSNMPWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -7251,7 +7251,7 @@ public ApiResponse getUsageSummaryWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -7475,7 +7475,7 @@ public ApiResponse getUsageSyntheticsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -7700,7 +7700,7 @@ public ApiResponse getUsageSyntheticsAPIWithHttpInfo localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -7925,7 +7925,7 @@ public ApiResponse getUsageSyntheticsBrowserWith localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -8150,7 +8150,7 @@ public ApiResponse getUsageTimeseriesWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -8399,7 +8399,7 @@ public ApiResponse getUsageTopAvgMetricsWithHttpInfo localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, diff --git a/src/main/java/com/datadog/api/client/v1/api/UsersApi.java b/src/main/java/com/datadog/api/client/v1/api/UsersApi.java index f18a62ecf04..89ea0700296 100644 --- a/src/main/java/com/datadog/api/client/v1/api/UsersApi.java +++ b/src/main/java/com/datadog/api/client/v1/api/UsersApi.java @@ -509,7 +509,7 @@ public ApiResponse listUsersWithHttpInfo() throws ApiException localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, diff --git a/src/main/java/com/datadog/api/client/v1/api/WebhooksIntegrationApi.java b/src/main/java/com/datadog/api/client/v1/api/WebhooksIntegrationApi.java index 91f0b44289b..be7144c8455 100644 --- a/src/main/java/com/datadog/api/client/v1/api/WebhooksIntegrationApi.java +++ b/src/main/java/com/datadog/api/client/v1/api/WebhooksIntegrationApi.java @@ -116,7 +116,7 @@ public ApiResponse createWebhooksIntegrationWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/ApiManagementApi.java b/src/main/java/com/datadog/api/client/v2/api/ApiManagementApi.java index c9e8c130bb9..f8c64e32154 100644 --- a/src/main/java/com/datadog/api/client/v2/api/ApiManagementApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/ApiManagementApi.java @@ -181,7 +181,7 @@ public ApiResponse createOpenAPIWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -335,7 +335,7 @@ public ApiResponse deleteOpenAPIWithHttpInfo(UUID id) throws ApiException localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -494,7 +494,7 @@ public ApiResponse getOpenAPIWithHttpInfo(UUID id) throws ApiException { localVarHeaderParams, new HashMap(), new String[] {"multipart/form-data", "application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -724,7 +724,7 @@ public ApiResponse listAPIsWithHttpInfo(ListAPIsOptionalParame localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -944,7 +944,7 @@ public ApiResponse updateOpenAPIWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PUT", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/CaseManagementApi.java b/src/main/java/com/datadog/api/client/v2/api/CaseManagementApi.java index bb61d1e4510..29c077f2e57 100644 --- a/src/main/java/com/datadog/api/client/v2/api/CaseManagementApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/CaseManagementApi.java @@ -136,7 +136,7 @@ public ApiResponse archiveCaseWithHttpInfo(String caseId, CaseEmpt localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -290,7 +290,7 @@ public ApiResponse assignCaseWithHttpInfo(String caseId, CaseAssig localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -432,7 +432,7 @@ public ApiResponse createCaseWithHttpInfo(CaseCreateRequest body) localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -564,7 +564,7 @@ public ApiResponse createProjectWithHttpInfo(ProjectCreateReque localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -695,7 +695,7 @@ public ApiResponse deleteProjectWithHttpInfo(String projectId) throws ApiE localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -829,7 +829,7 @@ public ApiResponse getCaseWithHttpInfo(String caseId) throws ApiEx localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -963,7 +963,7 @@ public ApiResponse getProjectWithHttpInfo(String projectId) thr localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1088,7 +1088,7 @@ public ApiResponse getProjectsWithHttpInfo() throws ApiExcepti localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1362,7 +1362,7 @@ public ApiResponse searchCasesWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1509,7 +1509,7 @@ public ApiResponse unarchiveCaseWithHttpInfo(String caseId, CaseEm localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -1665,7 +1665,7 @@ public ApiResponse unassignCaseWithHttpInfo(String caseId, CaseEmp localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -1822,7 +1822,7 @@ public ApiResponse updatePriorityWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -1980,7 +1980,7 @@ public ApiResponse updateStatusWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/CiVisibilityPipelinesApi.java b/src/main/java/com/datadog/api/client/v2/api/CiVisibilityPipelinesApi.java index a0cbfe760d1..516cccddc27 100644 --- a/src/main/java/com/datadog/api/client/v2/api/CiVisibilityPipelinesApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/CiVisibilityPipelinesApi.java @@ -125,7 +125,7 @@ public CIAppPipelinesAnalyticsAggregateResponse aggregateCIAppPipelineEvents( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -575,7 +575,7 @@ public ApiResponse listCIAppPipelineEventsWithHttpI localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -821,7 +821,7 @@ public ApiResponse searchCIAppPipelineEventsWithHtt localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/CiVisibilityTestsApi.java b/src/main/java/com/datadog/api/client/v2/api/CiVisibilityTestsApi.java index 2d0099b9acf..4e126c442b4 100644 --- a/src/main/java/com/datadog/api/client/v2/api/CiVisibilityTestsApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/CiVisibilityTestsApi.java @@ -123,7 +123,7 @@ public ApiResponse aggregateCIAppTestEvent localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -428,7 +428,7 @@ public ApiResponse listCIAppTestEventsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -671,7 +671,7 @@ public ApiResponse searchCIAppTestEventsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/CloudCostManagementApi.java b/src/main/java/com/datadog/api/client/v2/api/CloudCostManagementApi.java index bad44d7626e..df60a47a0e9 100644 --- a/src/main/java/com/datadog/api/client/v2/api/CloudCostManagementApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/CloudCostManagementApi.java @@ -130,7 +130,7 @@ public ApiResponse createCostAWSCURConfigWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -263,7 +263,7 @@ public ApiResponse createCostAzureUCConfigsWithHttpI localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -396,7 +396,7 @@ public ApiResponse createCostGCPUsageCostConfigWithH localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -527,7 +527,7 @@ public ApiResponse deleteBudgetWithHttpInfo(String budgetId) throws ApiExc localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -663,7 +663,7 @@ public ApiResponse deleteCostAWSCURConfigWithHttpInfo(String cloudAccountI localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -804,7 +804,7 @@ public ApiResponse deleteCostAzureUCConfigWithHttpInfo(String cloudAccount localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -946,7 +946,7 @@ public ApiResponse deleteCostGCPUsageCostConfigWithHttpInfo(String cloudAc localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -1082,7 +1082,7 @@ public ApiResponse deleteCustomCostsFileWithHttpInfo(String fileId) throws localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -1216,7 +1216,7 @@ public ApiResponse getBudgetWithHttpInfo(String budgetId) thr localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1350,7 +1350,7 @@ public ApiResponse getCustomCostsFileWithHttpInfo(St localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1471,7 +1471,7 @@ public ApiResponse listBudgetsWithHttpInfo() throws ApiException { localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1581,7 +1581,7 @@ public ApiResponse listCostAWSCURConfigsWithHttpInfo() localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1692,7 +1692,7 @@ public ApiResponse listCostAzureUCConfigsWithHttpInfo() localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1803,7 +1803,7 @@ public ApiResponse listCostGCPUsageCostConfigsWithH localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1915,7 +1915,7 @@ public ApiResponse listCustomCostsFilesWithHttpInfo localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -2053,7 +2053,7 @@ public ApiResponse updateCostAWSCURConfigWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PATCH", builder, @@ -2217,7 +2217,7 @@ public ApiResponse updateCostAzureUCConfigsWithHttpI localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PATCH", builder, @@ -2383,7 +2383,7 @@ public ApiResponse updateCostGCPUsageCostConfigWithH localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PATCH", builder, @@ -2533,7 +2533,7 @@ public ApiResponse uploadCustomCostsFileWithHttpI localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PUT", builder, @@ -2666,7 +2666,7 @@ public ApiResponse upsertBudgetWithHttpInfo(BudgetWithEntries localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PUT", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/ContainerImagesApi.java b/src/main/java/com/datadog/api/client/v2/api/ContainerImagesApi.java index 1caea3f0a51..190d0fa277d 100644 --- a/src/main/java/com/datadog/api/client/v2/api/ContainerImagesApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/ContainerImagesApi.java @@ -266,7 +266,7 @@ public ApiResponse listContainerImagesWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/ContainersApi.java b/src/main/java/com/datadog/api/client/v2/api/ContainersApi.java index ad10e101131..93c472e059d 100644 --- a/src/main/java/com/datadog/api/client/v2/api/ContainersApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/ContainersApi.java @@ -266,7 +266,7 @@ public ApiResponse listContainersWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/DashboardListsApi.java b/src/main/java/com/datadog/api/client/v2/api/DashboardListsApi.java index f571ffadd7c..386ffb44428 100644 --- a/src/main/java/com/datadog/api/client/v2/api/DashboardListsApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/DashboardListsApi.java @@ -457,7 +457,7 @@ public ApiResponse getDashboardListItemsWithHttpInfo(Long da localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/DatasetsApi.java b/src/main/java/com/datadog/api/client/v2/api/DatasetsApi.java index ead4186245e..ae3474052d0 100644 --- a/src/main/java/com/datadog/api/client/v2/api/DatasetsApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/DatasetsApi.java @@ -113,7 +113,7 @@ public ApiResponse createDatasetWithHttpInfo(DatasetCreat localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -245,7 +245,7 @@ public ApiResponse deleteDatasetWithHttpInfo(String datasetId) throws ApiE localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -366,7 +366,7 @@ public ApiResponse getAllDatasetsWithHttpInfo() throws Api localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -489,7 +489,7 @@ public ApiResponse getDatasetWithHttpInfo(String datasetI localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/DomainAllowlistApi.java b/src/main/java/com/datadog/api/client/v2/api/DomainAllowlistApi.java index 669f6c02633..8340f8dc4d6 100644 --- a/src/main/java/com/datadog/api/client/v2/api/DomainAllowlistApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/DomainAllowlistApi.java @@ -99,7 +99,7 @@ public ApiResponse getDomainAllowlistWithHttpInfo() thr localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -220,7 +220,7 @@ public ApiResponse patchDomainAllowlistWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PATCH", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/DoraMetricsApi.java b/src/main/java/com/datadog/api/client/v2/api/DoraMetricsApi.java index af627aee30a..18cf3e3aac9 100644 --- a/src/main/java/com/datadog/api/client/v2/api/DoraMetricsApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/DoraMetricsApi.java @@ -536,7 +536,7 @@ public ApiResponse getDORADeploymentWithHttpInfo(String deplo localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"appKeyAuth", "apiKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth"}); return apiClient.invokeAPI( "GET", builder, @@ -672,7 +672,7 @@ public ApiResponse getDORAFailureWithHttpInfo(String failureI localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"appKeyAuth", "apiKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth"}); return apiClient.invokeAPI( "GET", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/DowntimesApi.java b/src/main/java/com/datadog/api/client/v2/api/DowntimesApi.java index 5d7452585d0..efbe9115a7c 100644 --- a/src/main/java/com/datadog/api/client/v2/api/DowntimesApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/DowntimesApi.java @@ -124,7 +124,7 @@ public ApiResponse cancelDowntimeWithHttpInfo(String downtimeId) throws Ap localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -257,7 +257,7 @@ public ApiResponse createDowntimeWithHttpInfo(DowntimeCreateRe localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -448,7 +448,7 @@ public ApiResponse getDowntimeWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -726,7 +726,7 @@ public ApiResponse listDowntimesWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -987,7 +987,7 @@ public ApiResponse listMonitorDowntimesWithHttpInf localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1145,7 +1145,7 @@ public ApiResponse updateDowntimeWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PATCH", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/EventsApi.java b/src/main/java/com/datadog/api/client/v2/api/EventsApi.java index aaa85669c54..0a18dac2140 100644 --- a/src/main/java/com/datadog/api/client/v2/api/EventsApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/EventsApi.java @@ -434,7 +434,7 @@ public ApiResponse listEventsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/IncidentServicesApi.java b/src/main/java/com/datadog/api/client/v2/api/IncidentServicesApi.java index 16ca3c38c3b..bdb894151d3 100644 --- a/src/main/java/com/datadog/api/client/v2/api/IncidentServicesApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/IncidentServicesApi.java @@ -133,7 +133,7 @@ public ApiResponse createIncidentServiceWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -292,7 +292,7 @@ public ApiResponse deleteIncidentServiceWithHttpInfo(String serviceId) thr localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -518,7 +518,7 @@ public ApiResponse getIncidentServiceWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -779,7 +779,7 @@ public ApiResponse listIncidentServicesWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -953,7 +953,7 @@ public ApiResponse updateIncidentServiceWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PATCH", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/IncidentTeamsApi.java b/src/main/java/com/datadog/api/client/v2/api/IncidentTeamsApi.java index 401cd0e17cd..0f85e7b6d92 100644 --- a/src/main/java/com/datadog/api/client/v2/api/IncidentTeamsApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/IncidentTeamsApi.java @@ -133,7 +133,7 @@ public ApiResponse createIncidentTeamWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -292,7 +292,7 @@ public ApiResponse deleteIncidentTeamWithHttpInfo(String teamId) throws Ap localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -514,7 +514,7 @@ public ApiResponse getIncidentTeamWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -774,7 +774,7 @@ public ApiResponse listIncidentTeamsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -948,7 +948,7 @@ public ApiResponse updateIncidentTeamWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PATCH", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/IncidentsApi.java b/src/main/java/com/datadog/api/client/v2/api/IncidentsApi.java index 7c0af3d5dff..8404e190e66 100644 --- a/src/main/java/com/datadog/api/client/v2/api/IncidentsApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/IncidentsApi.java @@ -147,7 +147,7 @@ public ApiResponse createIncidentWithHttpInfo(IncidentCreateRe localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -312,7 +312,7 @@ public ApiResponse createIncidentIntegratio localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -496,7 +496,7 @@ public ApiResponse createIncidentTodoWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -661,7 +661,7 @@ public ApiResponse createIncidentTypeWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -812,7 +812,7 @@ public ApiResponse deleteIncidentWithHttpInfo(String incidentId) throws Ap localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -983,7 +983,7 @@ public ApiResponse deleteIncidentIntegrationWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -1165,7 +1165,7 @@ public ApiResponse deleteIncidentTodoWithHttpInfo(String incidentId, Strin localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -1332,7 +1332,7 @@ public ApiResponse deleteIncidentTypeWithHttpInfo(String incidentTypeId) localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -1545,7 +1545,7 @@ public ApiResponse getIncidentWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1722,7 +1722,7 @@ public ApiResponse getIncidentIntegrationWi localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1910,7 +1910,7 @@ public ApiResponse getIncidentTodoWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -2078,7 +2078,7 @@ public ApiResponse getIncidentTypeWithHttpInfo(String inci localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -2484,7 +2484,7 @@ public ApiResponse listIncidentIntegrat localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -2767,7 +2767,7 @@ public ApiResponse listIncidentsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -2919,7 +2919,7 @@ public ApiResponse listIncidentTodosWithHttpInfo(Strin localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -3115,7 +3115,7 @@ public ApiResponse listIncidentTypesWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -3437,7 +3437,7 @@ public ApiResponse searchIncidentsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -3677,7 +3677,7 @@ public ApiResponse updateIncidentWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PATCH", builder, @@ -4139,7 +4139,7 @@ public ApiResponse updateIncidentIntegratio localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PATCH", builder, @@ -4351,7 +4351,7 @@ public ApiResponse updateIncidentTodoWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PATCH", builder, @@ -4540,7 +4540,7 @@ public ApiResponse updateIncidentTypeWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PATCH", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/IpAllowlistApi.java b/src/main/java/com/datadog/api/client/v2/api/IpAllowlistApi.java index b7a7c29903e..8a1a9dc50c7 100644 --- a/src/main/java/com/datadog/api/client/v2/api/IpAllowlistApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/IpAllowlistApi.java @@ -101,7 +101,7 @@ public ApiResponse getIPAllowlistWithHttpInfo() throws ApiE localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -223,7 +223,7 @@ public ApiResponse updateIPAllowlistWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PATCH", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/MetricsApi.java b/src/main/java/com/datadog/api/client/v2/api/MetricsApi.java index 1ef558d1378..9896e63f014 100644 --- a/src/main/java/com/datadog/api/client/v2/api/MetricsApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/MetricsApi.java @@ -1231,7 +1231,7 @@ public ApiResponse listMetricAssetsWithHttpInfo(String met localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1371,7 +1371,7 @@ public ApiResponse listTagConfigurationByNameWit localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1758,7 +1758,7 @@ public ApiResponse listTagConfigurati localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1912,7 +1912,7 @@ public ApiResponse listTagsByMetricNameWithHttpInfo(Strin localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -2193,7 +2193,7 @@ public ApiResponse queryScalarDataWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -2328,7 +2328,7 @@ public ApiResponse queryTimeseriesDataWithHttpIn localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/MonitorsApi.java b/src/main/java/com/datadog/api/client/v2/api/MonitorsApi.java index ecb64cb4462..562893eb45d 100644 --- a/src/main/java/com/datadog/api/client/v2/api/MonitorsApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/MonitorsApi.java @@ -977,7 +977,7 @@ public ApiResponse getMonitorConfigPolicyWithHttpIn localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1175,7 +1175,7 @@ public ApiResponse getMonitorNotificationRuleWi localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1363,7 +1363,7 @@ public ApiResponse getMonitorNotificationRu localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1560,7 +1560,7 @@ public ApiResponse getMonitorUserTemplateWithHttpIn localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1705,7 +1705,7 @@ public ApiResponse listMonitorConfigPoliciesWit localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1823,7 +1823,7 @@ public ApiResponse listMonitorUserTemplatesWith localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/OnCallApi.java b/src/main/java/com/datadog/api/client/v2/api/OnCallApi.java index d7f61c7710a..f121061187a 100644 --- a/src/main/java/com/datadog/api/client/v2/api/OnCallApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/OnCallApi.java @@ -184,7 +184,7 @@ public ApiResponse createOnCallEscalationPolicyWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -383,7 +383,7 @@ public ApiResponse createOnCallScheduleWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -522,7 +522,7 @@ public ApiResponse deleteOnCallEscalationPolicyWithHttpInfo(String policyI localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -659,7 +659,7 @@ public ApiResponse deleteOnCallScheduleWithHttpInfo(String scheduleId) thr localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -856,7 +856,7 @@ public ApiResponse getOnCallEscalationPolicyWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1057,7 +1057,7 @@ public ApiResponse getOnCallScheduleWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1254,7 +1254,7 @@ public ApiResponse getOnCallTeamRoutingRulesWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1472,7 +1472,7 @@ public ApiResponse getScheduleOnCallUserWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1675,7 +1675,7 @@ public ApiResponse getTeamOnCallUsersWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1892,7 +1892,7 @@ public ApiResponse setOnCallTeamRoutingRulesWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PUT", builder, @@ -2128,7 +2128,7 @@ public ApiResponse updateOnCallEscalationPolicyWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PUT", builder, @@ -2367,7 +2367,7 @@ public ApiResponse updateOnCallScheduleWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PUT", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/OnCallPagingApi.java b/src/main/java/com/datadog/api/client/v2/api/OnCallPagingApi.java index 82c435d0d4e..938855ef928 100644 --- a/src/main/java/com/datadog/api/client/v2/api/OnCallPagingApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/OnCallPagingApi.java @@ -110,7 +110,7 @@ public ApiResponse acknowledgeOnCallPageWithHttpInfo(UUID pageId) throws A localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -240,7 +240,7 @@ public ApiResponse createOnCallPageWithHttpInfo(CreatePageRe localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -369,7 +369,7 @@ public ApiResponse escalateOnCallPageWithHttpInfo(UUID pageId) throws ApiE localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -499,7 +499,7 @@ public ApiResponse resolveOnCallPageWithHttpInfo(UUID pageId) throws ApiEx localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/PowerpackApi.java b/src/main/java/com/datadog/api/client/v2/api/PowerpackApi.java index 87b4a106fcd..20c007b77ef 100644 --- a/src/main/java/com/datadog/api/client/v2/api/PowerpackApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/PowerpackApi.java @@ -115,7 +115,7 @@ public ApiResponse createPowerpackWithHttpInfo(Powerpack body localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -246,7 +246,7 @@ public ApiResponse deletePowerpackWithHttpInfo(String powerpackId) throws localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -381,7 +381,7 @@ public ApiResponse getPowerpackWithHttpInfo(String powerpackI localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -623,7 +623,7 @@ public ApiResponse listPowerpacksWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -764,7 +764,7 @@ public ApiResponse updatePowerpackWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PATCH", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/ProcessesApi.java b/src/main/java/com/datadog/api/client/v2/api/ProcessesApi.java index e5235349508..99d922f38af 100644 --- a/src/main/java/com/datadog/api/client/v2/api/ProcessesApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/ProcessesApi.java @@ -286,7 +286,7 @@ public ApiResponse listProcessesWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/RestrictionPoliciesApi.java b/src/main/java/com/datadog/api/client/v2/api/RestrictionPoliciesApi.java index 7d75f0bd6ef..fb5b5f88228 100644 --- a/src/main/java/com/datadog/api/client/v2/api/RestrictionPoliciesApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/RestrictionPoliciesApi.java @@ -132,7 +132,7 @@ public ApiResponse deleteRestrictionPolicyWithHttpInfo(String resourceId) localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -294,7 +294,7 @@ public ApiResponse getRestrictionPolicyWithHttpInfo(S localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -583,7 +583,7 @@ public ApiResponse updateRestrictionPolicyWithHttpInf localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/RolesApi.java b/src/main/java/com/datadog/api/client/v2/api/RolesApi.java index 1370b63aa3b..74af8cb3a5d 100644 --- a/src/main/java/com/datadog/api/client/v2/api/RolesApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/RolesApi.java @@ -136,7 +136,7 @@ public ApiResponse addPermissionToRoleWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -292,7 +292,7 @@ public ApiResponse addUserToRoleWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -446,7 +446,7 @@ public ApiResponse cloneRoleWithHttpInfo(String roleId, RoleCloneR localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -586,7 +586,7 @@ public ApiResponse createRoleWithHttpInfo(RoleCreateRequest localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -716,7 +716,7 @@ public ApiResponse deleteRoleWithHttpInfo(String roleId) throws ApiExcepti localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -847,7 +847,7 @@ public ApiResponse getRoleWithHttpInfo(String roleId) throws ApiEx localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -968,7 +968,7 @@ public ApiResponse listPermissionsWithHttpInfo() throws Api localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1090,7 +1090,7 @@ public ApiResponse listRolePermissionsWithHttpInfo(String r localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1322,7 +1322,7 @@ public ApiResponse listRolesWithHttpInfo(ListRolesOptionalParamet localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1558,7 +1558,7 @@ public ApiResponse listRoleUsersWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1716,7 +1716,7 @@ public ApiResponse removePermissionFromRoleWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -1874,7 +1874,7 @@ public ApiResponse removeUserFromRoleWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -2030,7 +2030,7 @@ public ApiResponse updateRoleWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PATCH", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/RumApi.java b/src/main/java/com/datadog/api/client/v2/api/RumApi.java index 17aa974e462..9710e2a0a8c 100644 --- a/src/main/java/com/datadog/api/client/v2/api/RumApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/RumApi.java @@ -126,7 +126,7 @@ public ApiResponse aggregateRUMEventsWithHttpInfo localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -936,7 +936,7 @@ public ApiResponse listRUMEventsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1120,7 +1120,7 @@ public ApiResponse searchRUMEventsWithHttpInfo(RUMSearchEvent localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/SecurityMonitoringApi.java b/src/main/java/com/datadog/api/client/v2/api/SecurityMonitoringApi.java index cfb78c69363..6d6fffa0384 100644 --- a/src/main/java/com/datadog/api/client/v2/api/SecurityMonitoringApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/SecurityMonitoringApi.java @@ -187,7 +187,7 @@ public ApiResponse cancelHistoricalJobWithHttpInfo(String jobId) throws Ap localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PATCH", builder, @@ -337,7 +337,7 @@ public SecurityMonitoringRuleConvertResponse convertExistingSecurityMonitoringRu localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -633,7 +633,7 @@ public SecurityMonitoringRuleConvertResponse convertSecurityMonitoringRuleFromJS localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -772,7 +772,7 @@ public ApiResponse createCustomFrameworkWithHttpI localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -912,7 +912,7 @@ public ApiResponse createSecurityFilterWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -1045,7 +1045,7 @@ public ApiResponse createSecurityMonitoringRuleW localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -1184,7 +1184,7 @@ public SecurityMonitoringSuppressionResponse createSecurityMonitoringSuppression localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -1620,7 +1620,7 @@ public ApiResponse deleteCustomFrameworkWithHttpI localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -1777,7 +1777,7 @@ public ApiResponse deleteHistoricalJobWithHttpInfo(String jobId) throws Ap localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -1923,7 +1923,7 @@ public ApiResponse deleteSecurityFilterWithHttpInfo(String securityFilterI localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -2061,7 +2061,7 @@ public ApiResponse deleteSecurityMonitoringRuleWithHttpInfo(String ruleId) localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -2199,7 +2199,7 @@ public ApiResponse deleteSecurityMonitoringSuppressionWithHttpInfo(String localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -3136,7 +3136,7 @@ public ApiResponse getCustomFrameworkWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -3346,7 +3346,7 @@ public ApiResponse getFindingWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -3505,7 +3505,7 @@ public ApiResponse getHistoricalJobWithHttpInfo(String jo localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -3725,7 +3725,7 @@ public ApiResponse getResourceEvaluationFi localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -4344,7 +4344,7 @@ public ApiResponse getSecurityFilterWithHttpInfo(String localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -4483,7 +4483,7 @@ public ApiResponse getSecurityMonitoringRuleWith localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -4623,7 +4623,7 @@ public ApiResponse getSecurityMonitoringSignal localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -4767,7 +4767,7 @@ public SecurityMonitoringSuppressionResponse getSecurityMonitoringSuppression( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -6095,7 +6095,7 @@ public ApiResponse listFindingsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -6357,7 +6357,7 @@ public ApiResponse listHistoricalJobsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -6489,7 +6489,7 @@ public ApiResponse listSecurityFiltersWithHttpInfo() localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -6670,7 +6670,7 @@ public ApiResponse listSecurityMonitoringRu localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -6977,7 +6977,7 @@ public PaginationIterable listSecurityMonitoringSignal localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -7107,7 +7107,7 @@ public SecurityMonitoringSuppressionsResponse listSecurityMonitoringSuppressions localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -9341,7 +9341,7 @@ public ApiResponse runHistoricalJobWithHttpInfo(RunHistorical localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -9592,7 +9592,7 @@ public PaginationIterable searchSecurityMonitoringSign localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -9736,7 +9736,7 @@ public SecurityMonitoringRuleTestResponse testExistingSecurityMonitoringRule( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -9891,7 +9891,7 @@ public ApiResponse testSecurityMonitoringRul localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -10048,7 +10048,7 @@ public ApiResponse updateCustomFrameworkWithHttpI localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PUT", builder, @@ -10211,7 +10211,7 @@ public UpdateResourceEvaluationFiltersResponse updateResourceEvaluationFilters( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PUT", builder, @@ -10366,7 +10366,7 @@ public ApiResponse updateSecurityFilterWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PATCH", builder, @@ -10532,7 +10532,7 @@ public ApiResponse updateSecurityMonitoringRuleW localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PUT", builder, @@ -10703,7 +10703,7 @@ public SecurityMonitoringSuppressionResponse updateSecurityMonitoringSuppression localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PATCH", builder, @@ -10856,7 +10856,7 @@ public ApiResponse validateSecurityMonitoringRuleWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/ServiceDefinitionApi.java b/src/main/java/com/datadog/api/client/v2/api/ServiceDefinitionApi.java index 91a649f9aaa..e8918731230 100644 --- a/src/main/java/com/datadog/api/client/v2/api/ServiceDefinitionApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/ServiceDefinitionApi.java @@ -122,7 +122,7 @@ public ApiResponse createOrUpdateServiceDefinit localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -260,7 +260,7 @@ public ApiResponse deleteServiceDefinitionWithHttpInfo(String serviceName) localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -459,7 +459,7 @@ public ApiResponse getServiceDefinitionWithHttpInf localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -729,7 +729,7 @@ public ApiResponse listServiceDefinitionsWithHtt localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/ServiceLevelObjectivesApi.java b/src/main/java/com/datadog/api/client/v2/api/ServiceLevelObjectivesApi.java index 88bbbb7c1b5..e8ed14693f1 100644 --- a/src/main/java/com/datadog/api/client/v2/api/ServiceLevelObjectivesApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/ServiceLevelObjectivesApi.java @@ -124,7 +124,7 @@ public ApiResponse createSLOReportJobWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -277,7 +277,7 @@ public ApiResponse getSLOReportWithHttpInfo(String reportId) throws ApiE localVarHeaderParams, new HashMap(), new String[] {"text/csv", "application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -429,7 +429,7 @@ public ApiResponse getSLOReportJobStatusWithHttpInfo localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/ServiceScorecardsApi.java b/src/main/java/com/datadog/api/client/v2/api/ServiceScorecardsApi.java index 117ae703207..7bece7878d6 100644 --- a/src/main/java/com/datadog/api/client/v2/api/ServiceScorecardsApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/ServiceScorecardsApi.java @@ -131,7 +131,7 @@ public ApiResponse createScorecardOutcomesBatchWithHttpIn localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -280,7 +280,7 @@ public ApiResponse createScorecardRuleWithHttpInfo(CreateRul localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -429,7 +429,7 @@ public ApiResponse deleteScorecardRuleWithHttpInfo(String ruleId) throws A localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -808,7 +808,7 @@ public ApiResponse listScorecardOutcomesWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1203,7 +1203,7 @@ public ApiResponse listScorecardRulesWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1382,7 +1382,7 @@ public ApiResponse updateScorecardRuleWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PUT", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/SoftwareCatalogApi.java b/src/main/java/com/datadog/api/client/v2/api/SoftwareCatalogApi.java index bb2874a8a1b..6a29fed071f 100644 --- a/src/main/java/com/datadog/api/client/v2/api/SoftwareCatalogApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/SoftwareCatalogApi.java @@ -126,7 +126,7 @@ public ApiResponse deleteCatalogEntityWithHttpInfo(String entityId) throws localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -260,7 +260,7 @@ public ApiResponse deleteCatalogKindWithHttpInfo(String kindId) throws Api localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -615,7 +615,7 @@ public ApiResponse listCatalogEntityWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -899,7 +899,7 @@ public ApiResponse listCatalogKindWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1198,7 +1198,7 @@ public ApiResponse listCatalogRelationWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1337,7 +1337,7 @@ public ApiResponse upsertCatalogEntityWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -1472,7 +1472,7 @@ public ApiResponse upsertCatalogKindWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/SpansApi.java b/src/main/java/com/datadog/api/client/v2/api/SpansApi.java index 7bb915df153..24b0239b757 100644 --- a/src/main/java/com/datadog/api/client/v2/api/SpansApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/SpansApi.java @@ -122,7 +122,7 @@ public ApiResponse aggregateSpansWithHttpInfo(SpansAggre localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -309,7 +309,7 @@ public ApiResponse listSpansWithHttpInfo(SpansListRequest bod localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -612,7 +612,7 @@ public ApiResponse listSpansGetWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/TeamsApi.java b/src/main/java/com/datadog/api/client/v2/api/TeamsApi.java index bf0d185bd81..d59c8c92931 100644 --- a/src/main/java/com/datadog/api/client/v2/api/TeamsApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/TeamsApi.java @@ -152,7 +152,7 @@ public ApiResponse addMemberTeamWithHttpInfo(String superTeamId, AddMember localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -306,7 +306,7 @@ public ApiResponse createTeamWithHttpInfo(TeamCreateRequest body) localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -450,7 +450,7 @@ public ApiResponse createTeamLinkWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -607,7 +607,7 @@ public ApiResponse createTeamMembershipWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -750,7 +750,7 @@ public ApiResponse deleteTeamWithHttpInfo(String teamId) throws ApiExcepti localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -892,7 +892,7 @@ public ApiResponse deleteTeamLinkWithHttpInfo(String teamId, String linkId localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -1047,7 +1047,7 @@ public ApiResponse deleteTeamMembershipWithHttpInfo(String teamId, String localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -1191,7 +1191,7 @@ public ApiResponse getTeamWithHttpInfo(String teamId) throws ApiEx localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1334,7 +1334,7 @@ public ApiResponse getTeamLinkWithHttpInfo(String teamId, Stri localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1480,7 +1480,7 @@ public ApiResponse getTeamLinksWithHttpInfo(String teamId) localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1769,7 +1769,7 @@ public ApiResponse getTeamMembershipsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1917,7 +1917,7 @@ public ApiResponse getTeamPermissionSettingsWith localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -2054,7 +2054,7 @@ public ApiResponse getUserMembershipsWithHttpInfo(String user localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -2337,7 +2337,7 @@ public ApiResponse listMemberTeamsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -2670,7 +2670,7 @@ public ApiResponse listTeamsWithHttpInfo(ListTeamsOptionalParamet localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -2828,7 +2828,7 @@ public ApiResponse removeMemberTeamWithHttpInfo(String superTeamId, String localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -2998,7 +2998,7 @@ public ApiResponse updateTeamWithHttpInfo(String teamId, TeamUpdat localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PATCH", builder, @@ -3162,7 +3162,7 @@ public ApiResponse updateTeamLinkWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PATCH", builder, @@ -3339,7 +3339,7 @@ public ApiResponse updateTeamMembershipWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PATCH", builder, @@ -3516,7 +3516,7 @@ public ApiResponse updateTeamPermissionSettingWit localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PUT", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/UsageMeteringApi.java b/src/main/java/com/datadog/api/client/v2/api/UsageMeteringApi.java index 6383a7e9484..75372aa90e0 100644 --- a/src/main/java/com/datadog/api/client/v2/api/UsageMeteringApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/UsageMeteringApi.java @@ -113,7 +113,7 @@ public ApiResponse getActiveBillingDimensionsWi localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -304,7 +304,7 @@ public ApiResponse getBillingDimensionMappingW localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -514,7 +514,7 @@ public ApiResponse getCostByOrgWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -789,7 +789,7 @@ public ApiResponse getEstimatedCostByOrgWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1032,7 +1032,7 @@ public ApiResponse getHistoricalCostByOrgWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1447,7 +1447,7 @@ public ApiResponse getHourlyUsageWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1868,7 +1868,7 @@ public ApiResponse getMonthlyCostAttributionWith localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -2116,7 +2116,7 @@ public ApiResponse getProjectedCostWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -2333,7 +2333,7 @@ public UsageApplicationSecurityMonitoringResponse getUsageApplicationSecurityMon localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -2564,7 +2564,7 @@ public UsageLambdaTracedInvocationsResponse getUsageLambdaTracedInvocations( localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -2793,7 +2793,7 @@ public CompletableFuture getUsageObservabil localVarHeaderParams, new HashMap(), new String[] {"application/json;datetime-format=rfc3339"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/UsersApi.java b/src/main/java/com/datadog/api/client/v2/api/UsersApi.java index 2c05bd5c056..ea2f75276d5 100644 --- a/src/main/java/com/datadog/api/client/v2/api/UsersApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/UsersApi.java @@ -121,7 +121,7 @@ public ApiResponse createUserWithHttpInfo(UserCreateRequest body) localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -251,7 +251,7 @@ public ApiResponse disableUserWithHttpInfo(String userId) throws ApiExcept localVarHeaderParams, new HashMap(), new String[] {"*/*"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "DELETE", builder, @@ -387,7 +387,7 @@ public ApiResponse getInvitationWithHttpInfo(String user localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -523,7 +523,7 @@ public ApiResponse getUserWithHttpInfo(String userId) throws ApiEx localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -657,7 +657,7 @@ public ApiResponse listUserOrganizationsWithHttpInfo(String userId localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -793,7 +793,7 @@ public ApiResponse listUserPermissionsWithHttpInfo(String u localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1097,7 +1097,7 @@ public ApiResponse listUsersWithHttpInfo(ListUsersOptionalParamet localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1234,7 +1234,7 @@ public ApiResponse sendInvitationsWithHttpInfo( localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -1377,7 +1377,7 @@ public ApiResponse updateUserWithHttpInfo(String userId, UserUpdat localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "PATCH", builder, diff --git a/src/main/java/com/datadog/api/client/v2/api/WorkflowAutomationApi.java b/src/main/java/com/datadog/api/client/v2/api/WorkflowAutomationApi.java index 829ae5827f1..62f1cfc135b 100644 --- a/src/main/java/com/datadog/api/client/v2/api/WorkflowAutomationApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/WorkflowAutomationApi.java @@ -439,7 +439,7 @@ public ApiResponse createWorkflowInstanceWithHtt localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "POST", builder, @@ -883,7 +883,7 @@ public ApiResponse getWorkflowInstanceWithHttpInfo localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder, @@ -1111,7 +1111,7 @@ public ApiResponse listWorkflowInstancesWithHttpI localVarHeaderParams, new HashMap(), new String[] {"application/json"}, - new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"}); + new String[] {"apiKeyAuth", "appKeyAuth", "AuthZ"}); return apiClient.invokeAPI( "GET", builder,