@@ -31,6 +31,7 @@ def __init__(
3131 max_retries = 0 ,
3232 logger = None ,
3333 timeout = (180.0 , 180.0 ),
34+ resourceset_append = True ,
3435 ):
3536 """
3637 Create a new instance of the ConnectClient.
@@ -39,13 +40,25 @@ def __init__(
3940 :type api_key: str
4041 :param endpoint: The API endpoint, defaults to CONNECT_ENDPOINT_URL
4142 :type endpoint: str, optional
43+ :param use_specs: Use the Connect OpenAPI specification for interactive help.
44+ :type specs_location: bool, optional
4245 :param specs_location: The Connect OpenAPI specification local path or URL, defaults to
4346 CONNECT_SPECS_URL
4447 :type specs_location: str, optional
48+ :param validate_using_specs: Use the Connect OpenAPI specification to validate the call.
49+ :type validate_using_specs: bool, optional
4550 :param default_headers: Http headers to apply to each request, defaults to {}
4651 :type default_headers: dict, optional
47- :param logger: HTTPP Request logger class, defaults to None
52+ :param default_limit: Default value for pagination limit parameter.
53+ :type default_limit: int, optional
54+ :param max_retries: Max number of retries for a request before raising an error.
55+ :type max_retries: int, optional
56+ :param logger: HTTP Request logger class, defaults to None
4857 :type logger: RequestLogger, optional
58+ :param timeout: Timeout parameter to pass to the underlying http client.
59+ :type timeout: int or tuple of int, optional
60+ :param resourceset_append: Append all the page to the current resourceset.
61+ :type resourceset_append: bool, optional
4962 """
5063 if default_headers and 'Authorization' in default_headers :
5164 raise ValueError ('`default_headers` cannot contains `Authorization`' )
@@ -65,6 +78,7 @@ def __init__(
6578 self .logger = logger
6679 self ._help_formatter = DefaultFormatter (self .specs )
6780 self .timeout = timeout
81+ self .resourceset_append = resourceset_append
6882
6983 def __getattr__ (self , name ):
7084 """
0 commit comments