diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index 85f3c28c1..7862c579e 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -159209,6 +159209,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/datadogV2/api/api_metrics.rs b/src/datadogV2/api/api_metrics.rs index db1600aee..860396d43 100644 --- a/src/datadogV2/api/api_metrics.rs +++ b/src/datadogV2/api/api_metrics.rs @@ -3677,6 +3677,7 @@ impl MetricsAPI { /// 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. pub async fn reorder_tag_indexing_rules( &self, @@ -3690,6 +3691,7 @@ impl MetricsAPI { /// 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. pub async fn reorder_tag_indexing_rules_with_http_info( &self,