@@ -1452,6 +1452,7 @@ public static class ListTagConfigurationsOptionalParameters {
14521452 private Boolean filterIncludePercentiles ;
14531453 private Boolean filterQueried ;
14541454 private String filterTags ;
1455+ private Boolean filterRelatedAssets ;
14551456 private Long windowSeconds ;
14561457 private Integer pageSize ;
14571458 private String pageCursor ;
@@ -1507,9 +1508,9 @@ public ListTagConfigurationsOptionalParameters filterIncludePercentiles(
15071508 /**
15081509 * Set filterQueried.
15091510 *
1510- * @param filterQueried (Beta ) Filter custom metrics that have or have not been queried in the
1511- * specified window[seconds]. If no window is provided or the window is less than 2 hours, a
1512- * default of 2 hours will be applied. (optional)
1511+ * @param filterQueried (Preview ) Filter custom metrics that have or have not been queried in
1512+ * the specified window[seconds]. If no window is provided or the window is less than 2
1513+ * hours, a default of 2 hours will be applied. (optional)
15131514 * @return ListTagConfigurationsOptionalParameters
15141515 */
15151516 public ListTagConfigurationsOptionalParameters filterQueried (Boolean filterQueried ) {
@@ -1530,6 +1531,19 @@ public ListTagConfigurationsOptionalParameters filterTags(String filterTags) {
15301531 return this ;
15311532 }
15321533
1534+ /**
1535+ * Set filterRelatedAssets.
1536+ *
1537+ * @param filterRelatedAssets (Preview) Filter metrics that are used in dashboards, monitors,
1538+ * notebooks, SLOs. (optional)
1539+ * @return ListTagConfigurationsOptionalParameters
1540+ */
1541+ public ListTagConfigurationsOptionalParameters filterRelatedAssets (
1542+ Boolean filterRelatedAssets ) {
1543+ this .filterRelatedAssets = filterRelatedAssets ;
1544+ return this ;
1545+ }
1546+
15331547 /**
15341548 * Set windowSeconds.
15351549 *
@@ -1712,6 +1726,7 @@ public ApiResponse<MetricsAndMetricTagConfigurationsResponse> listTagConfigurati
17121726 Boolean filterIncludePercentiles = parameters .filterIncludePercentiles ;
17131727 Boolean filterQueried = parameters .filterQueried ;
17141728 String filterTags = parameters .filterTags ;
1729+ Boolean filterRelatedAssets = parameters .filterRelatedAssets ;
17151730 Long windowSeconds = parameters .windowSeconds ;
17161731 Integer pageSize = parameters .pageSize ;
17171732 String pageCursor = parameters .pageCursor ;
@@ -1731,6 +1746,8 @@ public ApiResponse<MetricsAndMetricTagConfigurationsResponse> listTagConfigurati
17311746 apiClient .parameterToPairs ("" , "filter[include_percentiles]" , filterIncludePercentiles ));
17321747 localVarQueryParams .addAll (apiClient .parameterToPairs ("" , "filter[queried]" , filterQueried ));
17331748 localVarQueryParams .addAll (apiClient .parameterToPairs ("" , "filter[tags]" , filterTags ));
1749+ localVarQueryParams .addAll (
1750+ apiClient .parameterToPairs ("" , "filter[related_assets]" , filterRelatedAssets ));
17341751 localVarQueryParams .addAll (apiClient .parameterToPairs ("" , "window[seconds]" , windowSeconds ));
17351752 localVarQueryParams .addAll (apiClient .parameterToPairs ("" , "page[size]" , pageSize ));
17361753 localVarQueryParams .addAll (apiClient .parameterToPairs ("" , "page[cursor]" , pageCursor ));
@@ -1772,6 +1789,7 @@ public ApiResponse<MetricsAndMetricTagConfigurationsResponse> listTagConfigurati
17721789 Boolean filterIncludePercentiles = parameters .filterIncludePercentiles ;
17731790 Boolean filterQueried = parameters .filterQueried ;
17741791 String filterTags = parameters .filterTags ;
1792+ Boolean filterRelatedAssets = parameters .filterRelatedAssets ;
17751793 Long windowSeconds = parameters .windowSeconds ;
17761794 Integer pageSize = parameters .pageSize ;
17771795 String pageCursor = parameters .pageCursor ;
@@ -1791,6 +1809,8 @@ public ApiResponse<MetricsAndMetricTagConfigurationsResponse> listTagConfigurati
17911809 apiClient .parameterToPairs ("" , "filter[include_percentiles]" , filterIncludePercentiles ));
17921810 localVarQueryParams .addAll (apiClient .parameterToPairs ("" , "filter[queried]" , filterQueried ));
17931811 localVarQueryParams .addAll (apiClient .parameterToPairs ("" , "filter[tags]" , filterTags ));
1812+ localVarQueryParams .addAll (
1813+ apiClient .parameterToPairs ("" , "filter[related_assets]" , filterRelatedAssets ));
17941814 localVarQueryParams .addAll (apiClient .parameterToPairs ("" , "window[seconds]" , windowSeconds ));
17951815 localVarQueryParams .addAll (apiClient .parameterToPairs ("" , "page[size]" , pageSize ));
17961816 localVarQueryParams .addAll (apiClient .parameterToPairs ("" , "page[cursor]" , pageCursor ));
0 commit comments