From d5bb6494cdad2cd6cb229e68df9ab75ad8847a94 Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Thu, 19 Feb 2026 20:54:15 +0000 Subject: [PATCH] Regenerate client from commit ffa13ba of spec repo --- .generator/schemas/v2/openapi.yaml | 7 +++++-- src/datadogV2/api/api_metrics.rs | 6 ++++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index 707fe9d7d..96c37d041 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -86825,8 +86825,11 @@ paths: required: false schema: type: boolean - - description: (Preview) Filter custom metrics that have or have not been queried - in the past 30 days. + - description: '(Preview) Filter custom metrics that have or have not been queried + in the specified window[seconds]. + + If no window is provided or the window is less than 2 hours, a default of + 2 hours will be applied.' example: true in: query name: filter[queried] diff --git a/src/datadogV2/api/api_metrics.rs b/src/datadogV2/api/api_metrics.rs index f1c24b09b..c6b9d4562 100644 --- a/src/datadogV2/api/api_metrics.rs +++ b/src/datadogV2/api/api_metrics.rs @@ -88,7 +88,8 @@ pub struct ListTagConfigurationsOptionalParams { /// Filter distributions with additional percentile /// aggregations enabled or disabled. pub filter_include_percentiles: Option, - /// (Preview) Filter custom metrics that have or have not been queried in the past 30 days. + /// (Preview) Filter custom metrics that have or have not been queried in the specified window[seconds]. + /// If no window is provided or the window is less than 2 hours, a default of 2 hours will be applied. pub filter_queried: Option, /// Filter metrics that have been submitted with the given tags. Supports boolean and wildcard expressions. /// Can only be combined with the filter[queried] filter. @@ -131,7 +132,8 @@ impl ListTagConfigurationsOptionalParams { self.filter_include_percentiles = Some(value); self } - /// (Preview) Filter custom metrics that have or have not been queried in the past 30 days. + /// (Preview) Filter custom metrics that have or have not been queried in the specified window[seconds]. + /// If no window is provided or the window is less than 2 hours, a default of 2 hours will be applied. pub fn filter_queried(mut self, value: bool) -> Self { self.filter_queried = Some(value); self