@@ -685,6 +685,11 @@ def __init__(self, api_client=None):
685685 "version" : "v1" ,
686686 },
687687 params_map = {
688+ "text" : {
689+ "openapi_types" : (str ,),
690+ "attribute" : "text" ,
691+ "location" : "query" ,
692+ },
688693 "include_full_config" : {
689694 "openapi_types" : (bool ,),
690695 "attribute" : "include_full_config" ,
@@ -1431,6 +1436,7 @@ def patch_test(
14311436 def search_tests (
14321437 self ,
14331438 * ,
1439+ text : Union [str , UnsetType ] = unset ,
14341440 include_full_config : Union [bool , UnsetType ] = unset ,
14351441 search_suites : Union [bool , UnsetType ] = unset ,
14361442 facets_only : Union [bool , UnsetType ] = unset ,
@@ -1442,6 +1448,8 @@ def search_tests(
14421448
14431449 Search for Synthetic tests and Test Suites.
14441450
1451+ :param text: The search query.
1452+ :type text: str, optional
14451453 :param include_full_config: If true, include the full configuration for each test in the response.
14461454 :type include_full_config: bool, optional
14471455 :param search_suites: If true, returns suites instead of tests.
@@ -1457,6 +1465,9 @@ def search_tests(
14571465 :rtype: SyntheticsListTestsResponse
14581466 """
14591467 kwargs : Dict [str , Any ] = {}
1468+ if text is not unset :
1469+ kwargs ["text" ] = text
1470+
14601471 if include_full_config is not unset :
14611472 kwargs ["include_full_config" ] = include_full_config
14621473
0 commit comments