keystoneauth1.identity.generic package¶
Submodules¶
keystoneauth1.identity.generic.base module¶
-
class
keystoneauth1.identity.generic.base.
BaseGenericPlugin
(auth_url, tenant_id=None, tenant_name=None, project_id=None, project_name=None, project_domain_id=None, project_domain_name=None, domain_id=None, domain_name=None, trust_id=None, default_domain_id=None, default_domain_name=None, reauthenticate=True)¶ Bases:
keystoneauth1.identity.base.BaseIdentityPlugin
An identity plugin that is not version dependent.
Internally we will construct a version dependent plugin with the resolved URL and then proxy all calls from the base plugin to the versioned one.
-
create_plugin
(session, version, url, raw_status=None)¶ Create a plugin from the given parameters.
This function will be called multiple times with the version and url of a potential endpoint. If a plugin can be constructed that fits the params then it should return it. If not return None and then another call will be made with other available URLs.
Parameters: - session (keystoneauth1.session.Session) – A session object.
- version (tuple) – A tuple of the API version at the URL.
- url (str) – The base URL for this version.
- raw_status (str) – The status that was in the discovery field.
Returns: A plugin that can match the parameters or None if nothing.
-
get_auth_ref
(session, **kwargs)¶
-
get_cache_id_elements
(_implemented=False)¶
-
project_domain_id
¶
-
project_domain_name
¶
-
keystoneauth1.identity.generic.password module¶
-
class
keystoneauth1.identity.generic.password.
Password
(auth_url, username=None, user_id=None, password=None, user_domain_id=None, user_domain_name=None, **kwargs)¶ Bases:
keystoneauth1.identity.generic.base.BaseGenericPlugin
A common user/password authentication plugin.
Parameters: -
create_plugin
(session, version, url, raw_status=None)¶
-
get_cache_id_elements
()¶
-
user_domain_id
¶
-
user_domain_name
¶
-
keystoneauth1.identity.generic.token module¶
-
class
keystoneauth1.identity.generic.token.
Token
(auth_url, token=None, **kwargs)¶ Bases:
keystoneauth1.identity.generic.base.BaseGenericPlugin
Generic token auth plugin.
Parameters: token (string) – Token for authentication. -
create_plugin
(session, version, url, raw_status=None)¶
-
get_cache_id_elements
()¶
-
Module contents¶
-
class
keystoneauth1.identity.generic.
BaseGenericPlugin
(auth_url, tenant_id=None, tenant_name=None, project_id=None, project_name=None, project_domain_id=None, project_domain_name=None, domain_id=None, domain_name=None, trust_id=None, default_domain_id=None, default_domain_name=None, reauthenticate=True)¶ Bases:
keystoneauth1.identity.base.BaseIdentityPlugin
An identity plugin that is not version dependent.
Internally we will construct a version dependent plugin with the resolved URL and then proxy all calls from the base plugin to the versioned one.
-
create_plugin
(session, version, url, raw_status=None)¶ Create a plugin from the given parameters.
This function will be called multiple times with the version and url of a potential endpoint. If a plugin can be constructed that fits the params then it should return it. If not return None and then another call will be made with other available URLs.
Parameters: - session (keystoneauth1.session.Session) – A session object.
- version (tuple) – A tuple of the API version at the URL.
- url (str) – The base URL for this version.
- raw_status (str) – The status that was in the discovery field.
Returns: A plugin that can match the parameters or None if nothing.
-
get_auth_ref
(session, **kwargs)¶
-
get_cache_id_elements
(_implemented=False)¶
-
project_domain_id
¶
-
project_domain_name
¶
-
-
class
keystoneauth1.identity.generic.
Password
(auth_url, username=None, user_id=None, password=None, user_domain_id=None, user_domain_name=None, **kwargs)¶ Bases:
keystoneauth1.identity.generic.base.BaseGenericPlugin
A common user/password authentication plugin.
Parameters: -
create_plugin
(session, version, url, raw_status=None)¶
-
get_cache_id_elements
()¶
-
user_domain_id
¶
-
user_domain_name
¶
-
-
class
keystoneauth1.identity.generic.
Token
(auth_url, token=None, **kwargs)¶ Bases:
keystoneauth1.identity.generic.base.BaseGenericPlugin
Generic token auth plugin.
Parameters: token (string) – Token for authentication. -
create_plugin
(session, version, url, raw_status=None)¶
-
get_cache_id_elements
()¶
-