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
:param str authorization: Access token (in JWT format) required to use any API endpoint (except `/oauth2`)
174
+
:param str x_request_id: Supplied by client during request or generated by server.
175
+
:param str continuation_token: An opaque token used to iterate over a collection. The token to use on the next request is returned in the continuation_token field of the result. Single quotes are required around all strings.
176
+
:param str filter: Exclude resources that don't match the specified criteria. Single quotes are required around all strings inside the filters.
177
+
:param int limit: Limit the size of the response to the specified number of resources. A limit of 0 can be used to get the number of resources without getting all of the resources. It will be returned in the total_item_count field. If a client asks for a page size larger than the maximum number, the request is still valid. In that case the server just returns the maximum number of items, disregarding the client's page size request. If not specified, defaults to 1000.
178
+
:param int offset: The offset of the first resource to return from a collection.
179
+
:param list[str] resource_ids: A comma-separated list of resource IDs. If there is not at least one resource that matches each of the elements of names, an error is returned. Single or double quotations are required around all strings.
180
+
:param list[str] resource_names: A comma-separated list of resource names. If there is not at least one resource that matches each of the elements of names, an error is returned. Single quotes are required around all strings.
181
+
:param list[str] sort: Sort the response by the specified fields (in descending order if '-' is appended to the field name). If you provide a sort you will not get a continuation token in the response.
:param str authorization: Access token (in JWT format) required to use any API endpoint (except `/oauth2`)
204
+
:param str x_request_id: Supplied by client during request or generated by server.
205
+
:param str continuation_token: An opaque token used to iterate over a collection. The token to use on the next request is returned in the continuation_token field of the result. Single quotes are required around all strings.
206
+
:param str filter: Exclude resources that don't match the specified criteria. Single quotes are required around all strings inside the filters.
207
+
:param int limit: Limit the size of the response to the specified number of resources. A limit of 0 can be used to get the number of resources without getting all of the resources. It will be returned in the total_item_count field. If a client asks for a page size larger than the maximum number, the request is still valid. In that case the server just returns the maximum number of items, disregarding the client's page size request. If not specified, defaults to 1000.
208
+
:param int offset: The offset of the first resource to return from a collection.
209
+
:param list[str] resource_ids: A comma-separated list of resource IDs. If there is not at least one resource that matches each of the elements of names, an error is returned. Single or double quotations are required around all strings.
210
+
:param list[str] resource_names: A comma-separated list of resource names. If there is not at least one resource that matches each of the elements of names, an error is returned. Single quotes are required around all strings.
211
+
:param list[str] sort: Sort the response by the specified fields (in descending order if '-' is appended to the field name). If you provide a sort you will not get a continuation token in the response.
" to method api10_arrays_support_contracts_get"%key
229
+
)
230
+
params[key] =val
231
+
delparams['kwargs']
232
+
233
+
if'offset'inparamsandparams['offset'] <0:
234
+
raiseValueError("Invalid value for parameter `offset` when calling `api10_arrays_support_contracts_get`, must be a value greater than or equal to `0`")
0 commit comments