diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index 707fe9d7de..96c37d041b 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/datadog_api_client/v2/api/metrics_api.py b/src/datadog_api_client/v2/api/metrics_api.py index 3d3ef930c2..afe7c89638 100644 --- a/src/datadog_api_client/v2/api/metrics_api.py +++ b/src/datadog_api_client/v2/api/metrics_api.py @@ -792,7 +792,8 @@ def list_tag_configurations( :param filter_include_percentiles: Filter distributions with additional percentile aggregations enabled or disabled. :type filter_include_percentiles: bool, optional - :param filter_queried: (Preview) Filter custom metrics that have or have not been queried in the past 30 days. + :param filter_queried: (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. :type filter_queried: bool, optional :param filter_tags: Filter metrics that have been submitted with the given tags. Supports boolean and wildcard expressions. Can only be combined with the filter[queried] filter. @@ -870,7 +871,8 @@ def list_tag_configurations_with_pagination( :param filter_include_percentiles: Filter distributions with additional percentile aggregations enabled or disabled. :type filter_include_percentiles: bool, optional - :param filter_queried: (Preview) Filter custom metrics that have or have not been queried in the past 30 days. + :param filter_queried: (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. :type filter_queried: bool, optional :param filter_tags: Filter metrics that have been submitted with the given tags. Supports boolean and wildcard expressions. Can only be combined with the filter[queried] filter.