@@ -1352,7 +1352,6 @@ export class SyntheticsApiRequestFactory extends BaseAPIRequestFactory {
13521352 public async searchTests (
13531353 text ?: string ,
13541354 includeFullConfig ?: boolean ,
1355- searchSuites ?: boolean ,
13561355 facetsOnly ?: boolean ,
13571356 start ?: number ,
13581357 count ?: number ,
@@ -1397,13 +1396,6 @@ export class SyntheticsApiRequestFactory extends BaseAPIRequestFactory {
13971396 "" ,
13981397 ) ;
13991398 }
1400- if ( searchSuites !== undefined ) {
1401- requestContext . setQueryParam (
1402- "search_suites" ,
1403- serialize ( searchSuites , TypingInfo , "boolean" , "" ) ,
1404- "" ,
1405- ) ;
1406- }
14071399 if ( facetsOnly !== undefined ) {
14081400 requestContext . setQueryParam (
14091401 "facets_only" ,
@@ -4090,11 +4082,6 @@ export interface SyntheticsApiSearchTestsRequest {
40904082 * @type boolean
40914083 */
40924084 includeFullConfig ?: boolean ;
4093- /**
4094- * If true, returns suites instead of tests.
4095- * @type boolean
4096- */
4097- searchSuites ?: boolean ;
40984085 /**
40994086 * If true, return only facets instead of full test details.
41004087 * @type boolean
@@ -4814,7 +4801,7 @@ export class SyntheticsApi {
48144801 }
48154802
48164803 /**
4817- * Search for Synthetic tests and Test Suites .
4804+ * Search for Synthetic tests.
48184805 * @param param The request object
48194806 */
48204807 public searchTests (
@@ -4824,7 +4811,6 @@ export class SyntheticsApi {
48244811 const requestContextPromise = this . requestFactory . searchTests (
48254812 param . text ,
48264813 param . includeFullConfig ,
4827- param . searchSuites ,
48284814 param . facetsOnly ,
48294815 param . start ,
48304816 param . count ,
0 commit comments