@@ -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