kubernetes_asyncio.client.configuration module
Kubernetes
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
Generated by: https://openapi-generator.tech
Patched version, copied from scripts/patched_files.
- class kubernetes_asyncio.client.configuration.Configuration(host=None, api_key=None, api_key_prefix=None, username=None, password=None, discard_unknown_keys=False, disabled_client_side_validations='', server_index=None, server_variables=None, server_operation_index=None, server_operation_variables=None, ssl_ca_cert=None)
Bases:
objectNOTE: 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 security scheme in the OAS specification. The dict value is the API key secret.
- param api_key_prefix:
Dict to store API prefix (e.g. Bearer) The dict key is the name of the security scheme in the OAS specification. The dict value is an API key prefix when generating the auth data.
- param username:
Username for HTTP basic authentication
- param password:
Password for HTTP basic authentication
- param discard_unknown_keys:
Boolean value indicating whether to discard unknown properties. A server may send a response that includes additional properties that are not known by the client in the following scenarios: 1. The OpenAPI document is incomplete, i.e. it does not match the server
implementation.
The client was generated using an older version of the OpenAPI document and the server has been upgraded since then.
If a schema in the OpenAPI document defines the additionalProperties attribute, then all undeclared properties received by the server are injected into the additional properties map. In that case, there are undeclared properties, and nothing to discard.
- param disabled_client_side_validations (string):
Comma-separated list of JSON schema validation keywords to disable JSON schema structural validation rules. The following keywords may be specified: multipleOf, maximum, exclusiveMaximum, minimum, exclusiveMinimum, maxLength, minLength, pattern, maxItems, minItems. By default, the validation is performed for data generated locally by the client and data received from the server, independent of any validation performed by the server side. If the input data does not satisfy the JSON schema validation rules specified in the OpenAPI document, an exception is raised. If disabled_client_side_validations is set, structural validation is disabled. This can be useful to troubleshoot data validation problem, such as when the OpenAPI document validation rules do not match the actual API data received by the server.
- param server_index:
Index to servers configuration.
- param server_variables:
Mapping with string values to replace variables in templated server configuration. The validation of enums is performed for variables with defined enum values before.
- param server_operation_index:
Mapping from operation ID to an index to server configuration.
- param server_operation_variables:
Mapping from operation ID to a mapping with string values to replace variables in templated server configuration. The validation of enums is performed for variables with defined enum values before.
- param ssl_ca_cert:
str - the path to a file of concatenated CA certificates in PEM format
- Example:
API Key Authentication Example. Given the following security scheme in the OpenAPI specification:
- components:
- securitySchemes:
- cookieAuth: # name for the security scheme
type: apiKey in: cookie name: JSESSIONID # cookie name
You can programmatically set the cookie:
- conf = client.Configuration(
api_key={‘cookieAuth’: ‘abc123’} api_key_prefix={‘cookieAuth’: ‘JSESSIONID’}
)
- The following cookie will be added to the HTTP request:
Cookie: JSESSIONID abc123
- assert_hostname
Set this to True/False to enable/disable SSL hostname verification.
- async auth_settings()
Gets Auth Settings dict for api client.
- Returns:
The Auth Settings information dict.
- cert_file
client certificate file
- connection_pool_maxsize
This value is passed to the aiohttp to limit simultaneous connections. Default values is 100, None means no-limit.
- property debug
Debug switch
- disable_strict_ssl_verification
Set to true, to accept certificates violate X509 strict certificate verification requirements, like missing the following extensions: - X509v3 Subject Key Identifier - X509v3 Authority Key Identifier - X509v3 Subject Alternative Name (It is implemented by removing ssl.VERIFY_X509_STRICT from SSLContext.verify_flags)
- async get_api_key_with_prefix(identifier, alias=None)
Gets API key (with prefix if set).
- Parameters:
identifier – The identifier of apiKey.
alias – The alternative identifier of apiKey.
- Returns:
The token for api key authentication.
- get_basic_auth_token()
Gets HTTP basic authentication header (string).
- Returns:
The token for basic HTTP authentication.
- classmethod get_default()
Get default instance of configuration.
- Returns:
The Configuration object.
- classmethod get_default_copy()
Return new instance of configuration.
This method returns newly created, based on default constructor, object of Configuration class or returns a copy of default configuration passed by the set_default method.
- Returns:
The configuration object.
- get_host_from_settings(index, variables=None, servers=None)
Gets host URL based on the index and variables :param index: array index of the host settings :param variables: hash of variable and the corresponding value :param servers: an array of host settings or None :return: URL based on host settings
- get_host_settings()
Gets an array of host settings
- Returns:
An array of host settings
- property host
Return generated host.
- key_file
client key file
- logger
Logging Settings
- property logger_file
Debug file location
- logger_file_handler
Log file handler
- property logger_format
Log format
- logger_stream_handler
Log stream handler
- password
Password for HTTP basic authentication
- proxy
Proxy URL
- proxy_headers
Proxy headers
- refresh_api_key_hook
function hook to refresh API key if expired
- retries
Adding retries to override urllib3 default value 3
- safe_chars_for_path_param
Safe chars for path_param
- server_operation_index
Default server index
- server_operation_variables
Default server variables
- classmethod set_default(default)
Set default instance of configuration.
It stores default configuration, which can be returned by get_default_copy method.
- Parameters:
default – object of Configuration
- socket_options
Options to pass down to the underlying urllib3 socket
- ssl_ca_cert
Set this to customize the certificate file to verify the peer.
- temp_folder_path
Temp file folder for downloading files
- tls_server_name
SSL/TLS Server Name Indication (SNI) Set this to the SNI value expected by Kubernetes API.
- to_debug_report()
Gets the essential information for debugging.
- Returns:
The report for debugging.
- username
Username for HTTP basic authentication
- verify_ssl
SSL/TLS verification Set this to false to skip verifying SSL certificate when calling API from https server.