@@ -3918,13 +3918,25 @@ public CompletableFuture<ApiResponse<SyntheticsTestDetails>> patchTestWithHttpIn
39183918
39193919 /** Manage optional parameters to searchTests. */
39203920 public static class SearchTestsOptionalParameters {
3921+ private String text ;
39213922 private Boolean includeFullConfig ;
39223923 private Boolean searchSuites ;
39233924 private Boolean facetsOnly ;
39243925 private Long start ;
39253926 private Long count ;
39263927 private String sort ;
39273928
3929+ /**
3930+ * Set text.
3931+ *
3932+ * @param text The search query. (optional)
3933+ * @return SearchTestsOptionalParameters
3934+ */
3935+ public SearchTestsOptionalParameters text (String text ) {
3936+ this .text = text ;
3937+ return this ;
3938+ }
3939+
39283940 /**
39293941 * Set includeFullConfig.
39303942 *
@@ -4071,6 +4083,7 @@ public CompletableFuture<SyntheticsListTestsResponse> searchTestsAsync(
40714083 public ApiResponse <SyntheticsListTestsResponse > searchTestsWithHttpInfo (
40724084 SearchTestsOptionalParameters parameters ) throws ApiException {
40734085 Object localVarPostBody = null ;
4086+ String text = parameters .text ;
40744087 Boolean includeFullConfig = parameters .includeFullConfig ;
40754088 Boolean searchSuites = parameters .searchSuites ;
40764089 Boolean facetsOnly = parameters .facetsOnly ;
@@ -4083,6 +4096,7 @@ public ApiResponse<SyntheticsListTestsResponse> searchTestsWithHttpInfo(
40834096 List <Pair > localVarQueryParams = new ArrayList <Pair >();
40844097 Map <String , String > localVarHeaderParams = new HashMap <String , String >();
40854098
4099+ localVarQueryParams .addAll (apiClient .parameterToPairs ("" , "text" , text ));
40864100 localVarQueryParams .addAll (
40874101 apiClient .parameterToPairs ("" , "include_full_config" , includeFullConfig ));
40884102 localVarQueryParams .addAll (apiClient .parameterToPairs ("" , "search_suites" , searchSuites ));
@@ -4122,6 +4136,7 @@ public ApiResponse<SyntheticsListTestsResponse> searchTestsWithHttpInfo(
41224136 public CompletableFuture <ApiResponse <SyntheticsListTestsResponse >> searchTestsWithHttpInfoAsync (
41234137 SearchTestsOptionalParameters parameters ) {
41244138 Object localVarPostBody = null ;
4139+ String text = parameters .text ;
41254140 Boolean includeFullConfig = parameters .includeFullConfig ;
41264141 Boolean searchSuites = parameters .searchSuites ;
41274142 Boolean facetsOnly = parameters .facetsOnly ;
@@ -4134,6 +4149,7 @@ public CompletableFuture<ApiResponse<SyntheticsListTestsResponse>> searchTestsWi
41344149 List <Pair > localVarQueryParams = new ArrayList <Pair >();
41354150 Map <String , String > localVarHeaderParams = new HashMap <String , String >();
41364151
4152+ localVarQueryParams .addAll (apiClient .parameterToPairs ("" , "text" , text ));
41374153 localVarQueryParams .addAll (
41384154 apiClient .parameterToPairs ("" , "include_full_config" , includeFullConfig ));
41394155 localVarQueryParams .addAll (apiClient .parameterToPairs ("" , "search_suites" , searchSuites ));
0 commit comments