|
VMware vSphere Automation SDK Perl
The VMware vSphere Automation SDK for Perl supports the client-side vSphere Automation API for access to vSphere services and capabilities
|
Classes | |
| class | Info |
Avaliable Methods | |
| public method | create () |
| public method | get () |
| public method | delete () |
| public method | new () |
The Com::Vmware::Cis::Session interface allows API clients to manage session tokens including creating, deleting and obtaining information about sessions.
Com::Vmware::Cis::Session.create method creates session token in exchange for another authentication token. Com::Vmware::Cis::Session.delete method invalidates a session token. Com::Vmware::Cis::Session.get retrieves information about a session token. The call to the :func:Com::Vmware::Cis::Session.create method is part of the overall authentication process for API clients. For example, the sequence of steps for establishing a session with SAML token is:
Com::Vmware::Cis::Session.create method . The :func:Com::Vmware::Cis::Session.create call must include the SAML token. See the programming guide and samples for additional information about establishing API sessions.
Execution Context and Security Context
To use session based authentication a client should supply the session token obtained through the :func:Com::Vmware::Cis::Session.create method . The client should add the session token in the security context when using SDK classes. Clients using the REST API should supply the session token as a HTTP header.
Session Lifetime
A session begins with call to the :func:Com::Vmware::Cis::Session.create method to exchange a SAML token for a API session token. A session ends under the following circumstances:
Com::Vmware::Cis::Session.delete method . When a session ends, the authentication logic will reject any subsequent client requests that specify that session. Any operations in progress will continue to completion.
Error Handling
The class Com::Vmware::Cis::Session returns the following errors :
| public method Com::Vmware::Cis::Session::create | ( | ) |
Creates a session with the API. This is the equivalent of login. This method exchanges user credentials supplied in the security context for a session identifier that is to be used for authenticating subsequent calls. To authenticate subsequent calls clients are expected to include the session key.
| Newly | created session identifier to be used for authenticating further requests. The return type will be str |
| Com::Vmware::Vapi::Std::Errors::Unauthenticated | if the session creation fails due to request specific issues. Due to the security nature of the API the details of the error are not disclosed. |
Please check the following preconditions if using a SAML token to authenticate:
| Com::Vmware::Vapi::Std::Errors::ServiceUnavailable | if session creation fails due to server specific issues, for example connection to a back end component is failing. Due to the security nature of this API further details will not be disclosed in the error . Please refer to component health information, administrative logs and product specific documentation for possible causes. |
Code:
| public method Com::Vmware::Cis::Session::delete | ( | ) |
Terminates the validity of a session token. This is the equivalent of log out.
A session identifier is expected as part of the request.
| Com::Vmware::Vapi::Std::Errors::Unauthenticated | if the session id is missing from the request or the corresponding session object cannot be found. |
| Com::Vmware::Vapi::Std::Errors::ServiceUnavailable | if session deletion fails due to server specific issues, for example connection to a back end component is failing. Due to the security nature of this API further details will not be disclosed in the error . Please refer to component health information, administrative logs and product specific documentation for possible causes. |
Code:
| public method Com::Vmware::Cis::Session::get | ( | ) |
Returns information about the current session. This method expects a valid session identifier to be supplied.
A side effect of invoking this method may be a change to the session's last accessed time to the current time if this is supported by the session implementation. Invoking any other method in the API will also update the session's last accessed time.
This API is meant to serve the needs of various front end projects that may want to display the name of the user. Examples of this include various web based user interfaces and logging facilities.
| Information | about the session. The return type will be Com::Vmware::Cis::Session::Info |
| Com::Vmware::Vapi::Std::Errors::Unauthenticated | if the session id is missing from the request or the corresponding session object cannot be found. |
| Com::Vmware::Vapi::Std::Errors::ServiceUnavailable | if session retrieval fails due to server specific issues e.g. connection to back end component is failing. Due to the security nature of this API further details will not be disclosed in the error. Please refer to component health information, administrative logs and product specific documentation for possible causes. |
Code:
| public method Com::Vmware::Cis::Session::new | ( | ) |
Constructor to initialize the object
| api_provider | - protocol connection to use with stubs created by this factory |
| StubConfig | - Stub's additional configuration |
| Blessed | object |
Code: