You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{paramName}} ({{dataType}}):{{#description}} {{{.}}}{{/description}} Defaults to {{{defaultValue}}}. Must be one of [{{{defaultValue}}}]
183
+
{{#defaultValue}}{{#description}}
184
+
:param {{paramName}}: {{{.}}} Defaults to {{{defaultValue}}}. Must be one of [{{{defaultValue}}}]{{/description}}
185
+
:type {{paramName}}: {{dataType}}
187
186
{{/defaultValue}}
188
187
{{/requiredParams}}
188
+
{{#optionalParams}}{{#description}}
189
+
:param {{paramName}}: {{{.}}}{{#defaultValue}} If omitted the server will use the default value of {{{defaultValue}}}.{{/defaultValue}}{{/description}}
190
+
:type {{paramName}}: {{dataType}}, optional
191
+
{{/optionalParams}}
192
+
:param _return_http_data_only: Response data without head status
193
+
code and headers. Default is True.
194
+
:type _return_http_data_only: bool
195
+
:param _preload_content: If False, the urllib3.HTTPResponse object
196
+
will be returned without reading/decoding response data.
197
+
Default is True.
198
+
:type _preload_content: bool
199
+
:param _request_timeout: Timeout setting for this request. If one
200
+
number provided, it will be total request timeout. It can also be a
201
+
pair (tuple) of (connection, read) timeouts. Default is None.
202
+
:type _request_timeout: float/tuple
203
+
:param _check_input_type: Specifies if type checking should be done one
204
+
the data sent to the server. Default is True.
205
+
:type _check_input_type: bool
206
+
:param _check_return_type: Specifies if type checking should be done
207
+
one the data received from the server. Default is True.
208
+
:type _check_return_type: bool
209
+
:param _host_index: Specifies the index of the server that we want to
210
+
use. Default is read from the configuration.
211
+
:type _host_index: int/None
212
+
:param async_req: Execute request asynchronously.
213
+
:type async_req: bool
189
214
190
-
Keyword Args:{{#optionalParams}}
191
-
{{paramName}} ({{dataType}}): [optional]{{#description}} {{{.}}}{{/description}}{{#defaultValue}} If omitted the server will use the default value of {{{defaultValue}}}.{{/defaultValue}}{{/optionalParams}}
192
-
_return_http_data_only (bool): response data without head status
193
-
code and headers. Default is True.
194
-
_preload_content (bool): if False, the urllib3.HTTPResponse object
195
-
will be returned without reading/decoding response data.
196
-
Default is True.
197
-
_request_timeout (float/tuple): timeout setting for this request. If one
198
-
number provided, it will be total request timeout. It can also
199
-
be a pair (tuple) of (connection, read) timeouts.
200
-
Default is None.
201
-
_check_input_type (bool): specifies if type checking
202
-
should be done one the data sent to the server.
203
-
Default is True.
204
-
_check_return_type (bool): specifies if type checking
205
-
should be done one the data received from the server.
206
-
Default is True.
207
-
_host_index (int/None): specifies the index of the server
0 commit comments