keystoneclient.auth.identity.v3.base.
Auth
(auth_url, auth_methods, **kwargs)¶Bases: keystoneclient.auth.identity.v3.base.BaseAuth
Identity V3 Authentication Plugin.
Parameters: |
|
---|
get_auth_ref
(session, **kwargs)¶keystoneclient.auth.identity.v3.base.
AuthMethod
(**kwargs)¶Bases: object
One part of a V3 Authentication strategy.
V3 Tokens allow multiple methods to be presented when authentication against the server. Each one of these methods is implemented by an AuthMethod.
Note: When implementing an AuthMethod use the method_parameters and do not use positional arguments. Otherwise they can’t be picked up by the factory method and don’t work as well with AuthConstructors.
get_auth_data
(session, auth, headers, **kwargs)¶Return the authentication section of an auth plugin.
Parameters: |
|
---|---|
Returns: | The identifier of this plugin and a dict of authentication data for the auth type. |
Return type: |
keystoneclient.auth.identity.v3.base.
AuthConstructor
(auth_url, *args, **kwargs)¶Bases: keystoneclient.auth.identity.v3.base.Auth
Abstract base class for creating an Auth Plugin.
The Auth Plugin created contains only one authentication method. This is generally the required usage.
An AuthConstructor creates an AuthMethod based on the method’s arguments and the auth_method_class defined by the plugin. It then creates the auth plugin with only that authentication method.
keystoneclient.auth.identity.v3.base.
BaseAuth
(auth_url, trust_id=None, domain_id=None, domain_name=None, project_id=None, project_name=None, project_domain_id=None, project_domain_name=None, reauthenticate=True, include_catalog=True)¶Bases: keystoneclient.auth.identity.base.BaseIdentityPlugin
Identity V3 Authentication Plugin.
Parameters: |
|
---|
get_auth_ref
(session, **kwargs)¶get_options
()¶token_url
¶The full URL where we will send authentication data.
trust_id
¶keystoneclient.auth.identity.v3.federated.
FederatedBaseAuth
(auth_url, identity_provider, protocol, **kwargs)¶Bases: keystoneclient.auth.identity.v3.base.BaseAuth
federated_token_url
¶Full URL where authorization data is sent.
get_auth_ref
(session, **kwargs)¶Authenticate retrieve token information.
This is a multi-step process where a client does federated authn receives an unscoped token.
If an unscoped token is successfully received and scoping information is present then the token is rescoped to that target.
Parameters: | session (keystoneclient.session.Session) – a session object to send out HTTP requests. |
---|---|
Returns: | a token data representation |
Return type: | keystoneclient.access.AccessInfo |
get_options
()¶get_unscoped_auth_ref
(session, **kwargs)¶Fetch unscoped federated token.
rescoping_plugin
¶alias of Token
keystoneclient.auth.identity.v3.password.
PasswordMethod
(**kwargs)¶Bases: keystoneclient.auth.identity.v3.base.AuthMethod
Construct a User/Password based authentication method.
Parameters: |
---|
get_auth_data
(session, auth, headers, **kwargs)¶keystoneclient.auth.identity.v3.password.
Password
(auth_url, *args, **kwargs)¶Bases: keystoneclient.auth.identity.v3.base.AuthConstructor
A plugin for authenticating with a username and password.
Parameters: |
|
---|
get_options
()¶load_from_argparse_arguments
(namespace, **kwargs)¶keystoneclient.auth.identity.v3.token.
TokenMethod
(**kwargs)¶Bases: keystoneclient.auth.identity.v3.base.AuthMethod
Construct an Auth plugin to fetch a token from a token.
Parameters: | token (string) – Token for authentication. |
---|
get_auth_data
(session, auth, headers, **kwargs)¶keystoneclient.auth.identity.v3.token.
Token
(auth_url, token, **kwargs)¶Bases: keystoneclient.auth.identity.v3.base.AuthConstructor
A plugin for authenticating with an existing Token.
Parameters: |
|
---|
get_options
()¶keystoneclient.auth.identity.v3.
Auth
(auth_url, auth_methods, **kwargs)¶Bases: keystoneclient.auth.identity.v3.base.BaseAuth
Identity V3 Authentication Plugin.
Parameters: |
|
---|
get_auth_ref
(session, **kwargs)¶keystoneclient.auth.identity.v3.
AuthConstructor
(auth_url, *args, **kwargs)¶Bases: keystoneclient.auth.identity.v3.base.Auth
Abstract base class for creating an Auth Plugin.
The Auth Plugin created contains only one authentication method. This is generally the required usage.
An AuthConstructor creates an AuthMethod based on the method’s arguments and the auth_method_class defined by the plugin. It then creates the auth plugin with only that authentication method.
keystoneclient.auth.identity.v3.
AuthMethod
(**kwargs)¶Bases: object
One part of a V3 Authentication strategy.
V3 Tokens allow multiple methods to be presented when authentication against the server. Each one of these methods is implemented by an AuthMethod.
Note: When implementing an AuthMethod use the method_parameters and do not use positional arguments. Otherwise they can’t be picked up by the factory method and don’t work as well with AuthConstructors.
get_auth_data
(session, auth, headers, **kwargs)¶Return the authentication section of an auth plugin.
Parameters: |
|
---|---|
Returns: | The identifier of this plugin and a dict of authentication data for the auth type. |
Return type: |
keystoneclient.auth.identity.v3.
BaseAuth
(auth_url, trust_id=None, domain_id=None, domain_name=None, project_id=None, project_name=None, project_domain_id=None, project_domain_name=None, reauthenticate=True, include_catalog=True)¶Bases: keystoneclient.auth.identity.base.BaseIdentityPlugin
Identity V3 Authentication Plugin.
Parameters: |
|
---|
get_auth_ref
(session, **kwargs)¶get_options
()¶token_url
¶The full URL where we will send authentication data.
trust_id
¶keystoneclient.auth.identity.v3.
FederatedBaseAuth
(auth_url, identity_provider, protocol, **kwargs)¶Bases: keystoneclient.auth.identity.v3.base.BaseAuth
federated_token_url
¶Full URL where authorization data is sent.
get_auth_ref
(session, **kwargs)¶Authenticate retrieve token information.
This is a multi-step process where a client does federated authn receives an unscoped token.
If an unscoped token is successfully received and scoping information is present then the token is rescoped to that target.
Parameters: | session (keystoneclient.session.Session) – a session object to send out HTTP requests. |
---|---|
Returns: | a token data representation |
Return type: | keystoneclient.access.AccessInfo |
get_options
()¶get_unscoped_auth_ref
(session, **kwargs)¶Fetch unscoped federated token.
keystoneclient.auth.identity.v3.
Password
(auth_url, *args, **kwargs)¶Bases: keystoneclient.auth.identity.v3.base.AuthConstructor
A plugin for authenticating with a username and password.
Parameters: |
|
---|
get_options
()¶load_from_argparse_arguments
(namespace, **kwargs)¶keystoneclient.auth.identity.v3.
PasswordMethod
(**kwargs)¶Bases: keystoneclient.auth.identity.v3.base.AuthMethod
Construct a User/Password based authentication method.
Parameters: |
---|
get_auth_data
(session, auth, headers, **kwargs)¶keystoneclient.auth.identity.v3.
Token
(auth_url, token, **kwargs)¶Bases: keystoneclient.auth.identity.v3.base.AuthConstructor
A plugin for authenticating with an existing Token.
Parameters: |
|
---|
get_options
()¶keystoneclient.auth.identity.v3.
TokenMethod
(**kwargs)¶Bases: keystoneclient.auth.identity.v3.base.AuthMethod
Construct an Auth plugin to fetch a token from a token.
Parameters: | token (string) – Token for authentication. |
---|
get_auth_data
(session, auth, headers, **kwargs)¶Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.