@@ -123,17 +123,25 @@ class Configuration:
123
123
Default is True.
124
124
:type preload_content: bool
125
125
:param request_timeout: Timeout setting for this request. If one
126
- number provided, it will be total request timeout. It can also be a
126
+ number is provided, it will be total request timeout. It can also be a
127
127
pair (tuple) of (connection, read) timeouts. Default is None.
128
128
:type request_timeout: float/tuple
129
- :param check_input_type: Specifies if type checking should be done one
129
+ :param check_input_type: Specifies if type checking should be done on
130
130
the data sent to the server. Default is True.
131
131
:type check_input_type: bool
132
132
:param check_return_type: Specifies if type checking should be done
133
- one the data received from the server. Default is True.
133
+ on the data received from the server. Default is True.
134
134
:type check_return_type: bool
135
135
:param spec_property_naming: Whether names in properties are expected to respect the spec or use snake case.
136
136
:type spec_property_naming: bool
137
+ :param enable_retry: If set, the client will retry requests on backend errors (5xx status codes), and 429.
138
+ On 429 if will use the returned headers to wait until the next requests, otherwise it will retry using
139
+ the backoff factor.
140
+ :type enable_retry: bool
141
+ :param retry_backoff_factor: Factor used to space out retried requests on backend errors.
142
+ :type retry_backoff_factor: int
143
+ :param max_retries: The maximum number of times a single request can be retried.
144
+ :type max_retries: int
137
145
"""
138
146
139
147
def __init__(
0 commit comments