Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
6 changes: 4 additions & 2 deletions src/datadog_api_client/v2/api/metrics_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down
Loading