NOTE: This class is auto generated by OpenAPI Generator Ref: https://openapi-generator.tech Do not edit the class manually. :param host: Base url :param api_key: Dict to store API key(s). Each entry in the dict specifies an API key. The dict key is the name of the secur
| 31 | } |
| 32 | |
| 33 | class Configuration(object): |
| 34 | """NOTE: This class is auto generated by OpenAPI Generator |
| 35 | |
| 36 | Ref: https://openapi-generator.tech |
| 37 | Do not edit the class manually. |
| 38 | |
| 39 | :param host: Base url |
| 40 | :param api_key: Dict to store API key(s). |
| 41 | Each entry in the dict specifies an API key. |
| 42 | The dict key is the name of the security scheme in the OAS specification. |
| 43 | The dict value is the API key secret. |
| 44 | :param api_key_prefix: Dict to store API prefix (e.g. Bearer) |
| 45 | The dict key is the name of the security scheme in the OAS specification. |
| 46 | The dict value is an API key prefix when generating the auth data. |
| 47 | :param username: Username for HTTP basic authentication |
| 48 | :param password: Password for HTTP basic authentication |
| 49 | :param discard_unknown_keys: Boolean value indicating whether to discard |
| 50 | unknown properties. A server may send a response that includes additional |
| 51 | properties that are not known by the client in the following scenarios: |
| 52 | 1. The OpenAPI document is incomplete, i.e. it does not match the server |
| 53 | implementation. |
| 54 | 2. The client was generated using an older version of the OpenAPI document |
| 55 | and the server has been upgraded since then. |
| 56 | If a schema in the OpenAPI document defines the additionalProperties attribute, |
| 57 | then all undeclared properties received by the server are injected into the |
| 58 | additional properties map. In that case, there are undeclared properties, and |
| 59 | nothing to discard. |
| 60 | :param disabled_client_side_validations (string): Comma-separated list of |
| 61 | JSON schema validation keywords to disable JSON schema structural validation |
| 62 | rules. The following keywords may be specified: multipleOf, maximum, |
| 63 | exclusiveMaximum, minimum, exclusiveMinimum, maxLength, minLength, pattern, |
| 64 | maxItems, minItems. |
| 65 | By default, the validation is performed for data generated locally by the client |
| 66 | and data received from the server, independent of any validation performed by |
| 67 | the server side. If the input data does not satisfy the JSON schema validation |
| 68 | rules specified in the OpenAPI document, an exception is raised. |
| 69 | If disabled_client_side_validations is set, structural validation is |
| 70 | disabled. This can be useful to troubleshoot data validation problem, such as |
| 71 | when the OpenAPI document validation rules do not match the actual API data |
| 72 | received by the server. |
| 73 | :param server_index: Index to servers configuration. |
| 74 | :param server_variables: Mapping with string values to replace variables in |
| 75 | templated server configuration. The validation of enums is performed for |
| 76 | variables with defined enum values before. |
| 77 | :param server_operation_index: Mapping from operation ID to an index to server |
| 78 | configuration. |
| 79 | :param server_operation_variables: Mapping from operation ID to a mapping with |
| 80 | string values to replace variables in templated server configuration. |
| 81 | The validation of enums is performed for variables with defined enum values before. |
| 82 | :param ssl_ca_cert: str - the path to a file of concatenated CA certificates |
| 83 | in PEM format |
| 84 | |
| 85 | :Example: |
| 86 | |
| 87 | API Key Authentication Example. |
| 88 | Given the following security scheme in the OpenAPI specification: |
| 89 | components: |
| 90 | securitySchemes: |
no outgoing calls