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}}}]
73
+
{{/defaultValue}}
74
+
{{/requiredParams}}
75
+
76
+
Keyword Args:{{#optionalParams}}
77
+
{{paramName}} ({{dataType}}):{{#description}} {{{.}}}.{{/description}} [optional]{{#defaultValue}} if omitted the server will use the default value of {{{.}}}{{/defaultValue}}{{/optionalParams}}
78
+
_return_http_data_only (bool): response data without head status
79
+
code and headers. Default is True.
80
+
_preload_content (bool): if False, the urllib3.HTTPResponse object
81
+
will be returned without reading/decoding response data.
82
+
Default is True.
83
+
_request_timeout (int/float/tuple): timeout setting for this request. If
84
+
one number provided, it will be total request timeout. It can also
85
+
be a pair (tuple) of (connection, read) timeouts.
86
+
Default is None.
87
+
_check_input_type (bool): specifies if type checking
88
+
should be done one the data sent to the server.
89
+
Default is True.
90
+
_check_return_type (bool): specifies if type checking
91
+
should be done one the data received from the server.
92
+
Default is True.
93
+
_host_index (int/None): specifies the index of the server
94
+
that we want to use.
95
+
Default is read from the configuration.
96
+
async_req (bool): execute request asynchronously
97
+
98
+
Returns:
99
+
{{returnType}}{{^returnType}}None{{/returnType}}
100
+
If the method is called asynchronously, returns the request
{{paramName}} ({{dataType}}):{{#description}} {{{.}}}.{{/description}} defaults to {{{defaultValue}}}, must be one of [{{{defaultValue}}}]
253
-
{{/defaultValue}}
254
-
{{/requiredParams}}
255
-
256
-
Keyword Args:{{#optionalParams}}
257
-
{{paramName}} ({{dataType}}):{{#description}} {{{.}}}.{{/description}} [optional]{{#defaultValue}} if omitted the server will use the default value of {{{.}}}{{/defaultValue}}{{/optionalParams}}
258
-
_return_http_data_only (bool): response data without head status
259
-
code and headers. Default is True.
260
-
_preload_content (bool): if False, the urllib3.HTTPResponse object
261
-
will be returned without reading/decoding response data.
262
-
Default is True.
263
-
_request_timeout (int/float/tuple): timeout setting for this request. If
264
-
one number provided, it will be total request timeout. It can also
265
-
be a pair (tuple) of (connection, read) timeouts.
266
-
Default is None.
267
-
_check_input_type (bool): specifies if type checking
268
-
should be done one the data sent to the server.
269
-
Default is True.
270
-
_check_return_type (bool): specifies if type checking
271
-
should be done one the data received from the server.
272
-
Default is True.
273
-
_host_index (int/None): specifies the index of the server
274
-
that we want to use.
275
-
Default is read from the configuration.
276
-
async_req (bool): execute request asynchronously
277
-
278
-
Returns:
279
-
{{returnType}}{{^returnType}}None{{/returnType}}
280
-
If the method is called asynchronously, returns the request
0 commit comments