@@ -685,6 +685,11 @@ def __init__(self, api_client=None):
685
685
"version" : "v1" ,
686
686
},
687
687
params_map = {
688
+ "text" : {
689
+ "openapi_types" : (str ,),
690
+ "attribute" : "text" ,
691
+ "location" : "query" ,
692
+ },
688
693
"include_full_config" : {
689
694
"openapi_types" : (bool ,),
690
695
"attribute" : "include_full_config" ,
@@ -1431,6 +1436,7 @@ def patch_test(
1431
1436
def search_tests (
1432
1437
self ,
1433
1438
* ,
1439
+ text : Union [str , UnsetType ] = unset ,
1434
1440
include_full_config : Union [bool , UnsetType ] = unset ,
1435
1441
search_suites : Union [bool , UnsetType ] = unset ,
1436
1442
facets_only : Union [bool , UnsetType ] = unset ,
@@ -1442,6 +1448,8 @@ def search_tests(
1442
1448
1443
1449
Search for Synthetic tests and Test Suites.
1444
1450
1451
+ :param text: The search query.
1452
+ :type text: str, optional
1445
1453
:param include_full_config: If true, include the full configuration for each test in the response.
1446
1454
:type include_full_config: bool, optional
1447
1455
:param search_suites: If true, returns suites instead of tests.
@@ -1457,6 +1465,9 @@ def search_tests(
1457
1465
:rtype: SyntheticsListTestsResponse
1458
1466
"""
1459
1467
kwargs : Dict [str , Any ] = {}
1468
+ if text is not unset :
1469
+ kwargs ["text" ] = text
1470
+
1460
1471
if include_full_config is not unset :
1461
1472
kwargs ["include_full_config" ] = include_full_config
1462
1473
0 commit comments