Skip to content

Commit 6a21cc0

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 366b36ab of spec repo
1 parent d9ddd9f commit 6a21cc0

File tree

3 files changed

+29
-4
lines changed

3 files changed

+29
-4
lines changed

.apigentools-info

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2025-01-17 14:24:00.620042",
8-
"spec_repo_commit": "60205e12"
7+
"regenerated": "2025-01-17 18:24:08.046291",
8+
"spec_repo_commit": "366b36ab"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-01-17 14:24:00.634357",
13-
"spec_repo_commit": "60205e12"
12+
"regenerated": "2025-01-17 18:24:08.061853",
13+
"spec_repo_commit": "366b36ab"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

+8
Original file line numberDiff line numberDiff line change
@@ -39523,6 +39523,14 @@ paths:
3952339523
required: false
3952439524
schema:
3952539525
type: string
39526+
- description: Filter metrics that are used in dashboards, monitors, notebooks,
39527+
or SLOs.
39528+
example: true
39529+
in: query
39530+
name: filter[related_assets]
39531+
required: false
39532+
schema:
39533+
type: boolean
3952639534
- description: 'The number of seconds of look back (from now) to apply to a
3952739535
filter[tag] or filter[queried] query.
3952839536

src/datadog_api_client/v2/api/metrics_api.py

+17
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,11 @@ def __init__(self, api_client=None):
328328
"attribute": "filter[tags]",
329329
"location": "query",
330330
},
331+
"filter_related_assets": {
332+
"openapi_types": (bool,),
333+
"attribute": "filter[related_assets]",
334+
"location": "query",
335+
},
331336
"window_seconds": {
332337
"openapi_types": (int,),
333338
"attribute": "window[seconds]",
@@ -691,6 +696,7 @@ def list_tag_configurations(
691696
filter_include_percentiles: Union[bool, UnsetType] = unset,
692697
filter_queried: Union[bool, UnsetType] = unset,
693698
filter_tags: Union[str, UnsetType] = unset,
699+
filter_related_assets: Union[bool, UnsetType] = unset,
694700
window_seconds: Union[int, UnsetType] = unset,
695701
page_size: Union[int, UnsetType] = unset,
696702
page_cursor: Union[str, UnsetType] = unset,
@@ -717,6 +723,8 @@ def list_tag_configurations(
717723
:param filter_tags: Filter metrics that have been submitted with the given tags. Supports boolean and wildcard expressions.
718724
Can only be combined with the filter[queried] filter.
719725
:type filter_tags: str, optional
726+
:param filter_related_assets: Filter metrics that are used in dashboards, monitors, notebooks, or SLOs.
727+
:type filter_related_assets: bool, optional
720728
:param window_seconds: The number of seconds of look back (from now) to apply to a filter[tag] or filter[queried] query.
721729
Default value is 3600 (1 hour), maximum value is 2,592,000 (30 days).
722730
:type window_seconds: int, optional
@@ -747,6 +755,9 @@ def list_tag_configurations(
747755
if filter_tags is not unset:
748756
kwargs["filter_tags"] = filter_tags
749757

758+
if filter_related_assets is not unset:
759+
kwargs["filter_related_assets"] = filter_related_assets
760+
750761
if window_seconds is not unset:
751762
kwargs["window_seconds"] = window_seconds
752763

@@ -767,6 +778,7 @@ def list_tag_configurations_with_pagination(
767778
filter_include_percentiles: Union[bool, UnsetType] = unset,
768779
filter_queried: Union[bool, UnsetType] = unset,
769780
filter_tags: Union[str, UnsetType] = unset,
781+
filter_related_assets: Union[bool, UnsetType] = unset,
770782
window_seconds: Union[int, UnsetType] = unset,
771783
page_size: Union[int, UnsetType] = unset,
772784
page_cursor: Union[str, UnsetType] = unset,
@@ -790,6 +802,8 @@ def list_tag_configurations_with_pagination(
790802
:param filter_tags: Filter metrics that have been submitted with the given tags. Supports boolean and wildcard expressions.
791803
Can only be combined with the filter[queried] filter.
792804
:type filter_tags: str, optional
805+
:param filter_related_assets: Filter metrics that are used in dashboards, monitors, notebooks, or SLOs.
806+
:type filter_related_assets: bool, optional
793807
:param window_seconds: The number of seconds of look back (from now) to apply to a filter[tag] or filter[queried] query.
794808
Default value is 3600 (1 hour), maximum value is 2,592,000 (30 days).
795809
:type window_seconds: int, optional
@@ -822,6 +836,9 @@ def list_tag_configurations_with_pagination(
822836
if filter_tags is not unset:
823837
kwargs["filter_tags"] = filter_tags
824838

839+
if filter_related_assets is not unset:
840+
kwargs["filter_related_assets"] = filter_related_assets
841+
825842
if window_seconds is not unset:
826843
kwargs["window_seconds"] = window_seconds
827844

0 commit comments

Comments
 (0)