diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index 680f08792e5..29fc91fe8fc 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -159013,6 +159013,7 @@ paths: description: |- Atomically re-sequence the tag indexing rules for an org to match the supplied list of rule UUIDs. The server assigns `rule_order` 1, 2, … matching each rule UUID by position in the list. + The UUIDs of all active rules must be provided; omitting any active rule UUID returns a 400 error. Requires the `Manage Tags for Metrics` permission. operationId: ReorderTagIndexingRules requestBody: 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 77754892786..296fb862b49 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 @@ -4265,7 +4265,8 @@ public CompletableFuture reorderTagIndexingRulesAsync(TagIndexingRuleOrder /** * Atomically re-sequence the tag indexing rules for an org to match the supplied list of rule * UUIDs. The server assigns rule_order 1, 2, … matching each rule UUID by position - * in the list. Requires the Manage Tags for Metrics permission. + * in the list. The UUIDs of all active rules must be provided; omitting any active rule UUID + * returns a 400 error. Requires the Manage Tags for Metrics permission. * * @param body (required) * @return ApiResponse<Void>