@@ -1272,6 +1272,7 @@ public static class ListSLOsOptionalParameters {
12721272 private String metricsQuery ;
12731273 private Long limit ;
12741274 private Long offset ;
1275+ private Boolean isDeleted ;
12751276
12761277 /**
12771278 * Set ids.
@@ -1341,6 +1342,18 @@ public ListSLOsOptionalParameters offset(Long offset) {
13411342 this .offset = offset ;
13421343 return this ;
13431344 }
1345+
1346+ /**
1347+ * Set isDeleted.
1348+ *
1349+ * @param isDeleted Whether to return only deleted service level objective objects. (optional,
1350+ * default to false)
1351+ * @return ListSLOsOptionalParameters
1352+ */
1353+ public ListSLOsOptionalParameters isDeleted (Boolean isDeleted ) {
1354+ this .isDeleted = isDeleted ;
1355+ return this ;
1356+ }
13441357 }
13451358
13461359 /**
@@ -1479,6 +1492,7 @@ public ApiResponse<SLOListResponse> listSLOsWithHttpInfo(ListSLOsOptionalParamet
14791492 String metricsQuery = parameters .metricsQuery ;
14801493 Long limit = parameters .limit ;
14811494 Long offset = parameters .offset ;
1495+ Boolean isDeleted = parameters .isDeleted ;
14821496 // create path and map variables
14831497 String localVarPath = "/api/v1/slo" ;
14841498
@@ -1491,6 +1505,7 @@ public ApiResponse<SLOListResponse> listSLOsWithHttpInfo(ListSLOsOptionalParamet
14911505 localVarQueryParams .addAll (apiClient .parameterToPairs ("" , "metrics_query" , metricsQuery ));
14921506 localVarQueryParams .addAll (apiClient .parameterToPairs ("" , "limit" , limit ));
14931507 localVarQueryParams .addAll (apiClient .parameterToPairs ("" , "offset" , offset ));
1508+ localVarQueryParams .addAll (apiClient .parameterToPairs ("" , "is_deleted" , isDeleted ));
14941509
14951510 Invocation .Builder builder =
14961511 apiClient .createBuilder (
@@ -1529,6 +1544,7 @@ public CompletableFuture<ApiResponse<SLOListResponse>> listSLOsWithHttpInfoAsync
15291544 String metricsQuery = parameters .metricsQuery ;
15301545 Long limit = parameters .limit ;
15311546 Long offset = parameters .offset ;
1547+ Boolean isDeleted = parameters .isDeleted ;
15321548 // create path and map variables
15331549 String localVarPath = "/api/v1/slo" ;
15341550
@@ -1541,6 +1557,7 @@ public CompletableFuture<ApiResponse<SLOListResponse>> listSLOsWithHttpInfoAsync
15411557 localVarQueryParams .addAll (apiClient .parameterToPairs ("" , "metrics_query" , metricsQuery ));
15421558 localVarQueryParams .addAll (apiClient .parameterToPairs ("" , "limit" , limit ));
15431559 localVarQueryParams .addAll (apiClient .parameterToPairs ("" , "offset" , offset ));
1560+ localVarQueryParams .addAll (apiClient .parameterToPairs ("" , "is_deleted" , isDeleted ));
15441561
15451562 Invocation .Builder builder ;
15461563 try {
0 commit comments