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
{{ message }}
This repository was archived by the owner on Dec 25, 2024. It is now read-only.
Allows one to select a different security definition. If not None, must be one of [0]
server_index
typing.Optional[int]
default is None
Allows one to select a different server. If not None, must be one of [0, 1, 2]
stream
bool
default is False
if True then the response.content will be streamed and loaded from a file like object. When downloading a file, set this to True to force the code to deserialize the content to a FileSchema file
timeout
typing.Optional[typing.Union[int, typing.Tuple]]
default is None
the timeout used by the rest client
skip_deserialization
bool
default is False
when True, headers and body will be unset and an instance of api_response.ApiResponseWithoutDeserialization will be returned
Set auth info by setting ApiConfiguration.security_scheme_info to a dict where the
key is the below security scheme quoted name, and the value is an instance of the linked
component security scheme class.
Select the security index by setting ApiConfiguration.security_index_info or by
passing in security_index into the endpoint method.
See how to do this in the code sample.
these securities are specific to this to this endpoint
Set the available servers by defining your used servers in ApiConfiguration.server_info
Then select your server by setting a server index in ApiConfiguration.server_index_info or by
passing server_index in to the endpoint method.
importpetstore_apifrompetstore_api.configurationsimportapi_configurationfrompetstore_api.apis.tagsimportfake_apifrompetstore_api.paths.fake.deleteimportoperationfrompprintimportpprint# security_index 0frompetstore_api.components.security_schemesimportsecurity_scheme_bearer_test# security_scheme_info for security_index 0security_scheme_info: api_configuration.SecuritySchemeInfo= {
"bearer_test": security_scheme_bearer_test.BearerTest(
access_token='someAccessToken'
),
}
used_configuration=api_configuration.ApiConfiguration(
security_scheme_info=security_scheme_info,
)
# Enter a context with an instance of the API clientwithpetstore_api.ApiClient(used_configuration) asapi_client:
# Create an instance of the API classapi_instance=fake_api.FakeApi(api_client)
# example passing only required values which don't have defaults setquery_params: operation.QueryParametersDictInput= {
'required_string_group': "required_string_group_example",
'required_int64_group': 1,
}
header_params: operation.HeaderParametersDictInput= {
'required_boolean_group': "true",
}
try:
# Fake endpoint to test group parameters (optional)api_response=api_instance.group_parameters(
query_params=query_params,
header_params=header_params,
)
pprint(api_response)
exceptpetstore_api.ApiExceptionase:
print("Exception when calling FakeApi->group_parameters: %s\n"%e)
# example passing only optional valuesquery_params: operation.QueryParametersDictInput= {
'required_string_group': "required_string_group_example",
'required_int64_group': 1,
'string_group': "string_group_example",
'int64_group': 1,
}
header_params: operation.HeaderParametersDictInput= {
'required_boolean_group': "true",
'boolean_group': "true",
}
try:
# Fake endpoint to test group parameters (optional)api_response=api_instance.group_parameters(
query_params=query_params,
header_params=header_params,
)
pprint(api_response)
exceptpetstore_api.ApiExceptionase:
print("Exception when calling FakeApi->group_parameters: %s\n"%e)