|
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 | ProbeResult |
Avaliable Methods | |
| public method | create () |
| public method | sync () |
| public method | evict () |
| public method | delete () |
| public method | get () |
| public method | new () |
| public method | update () |
| public method | probe () |
| public method | list () |
| public method Com::Vmware::Content::SubscribedLibrary::create | ( | ) |
Creates a new subscribed library.
Once created, the subscribed library will be empty. If the :attr:Com::Vmware::Content::LibraryModel.subscription_info property is set, the Content Library Service will attempt to synchronize to the remote source. This is an asynchronous operation so the content of the published library may not immediately appear.
| client_token | [OPTIONAL] Unique token generated on the client for each creation request. The token should be a universally unique identifier (UUID), for example: b8a2a2e3-2314-43cd-a871-6ede0f429751 . This token can be used to guarantee idempotent creation. If not specified creation is not idempotent. . The value must be String or None. |
| create_spec | [REQUIRED] Specification for the new subscribed library. . The value must be Com::Vmware::Content::LibraryModel. |
| Identifier | of the newly created subscribed library. The value will be an identifier for the resource type getQualifiedName(com.vmware.content.Library). The return type will be str |
| Com::Vmware::Vapi::Std::Errors::InvalidArgument | if the create_spec is not valid. |
| Com::Vmware::Vapi::Std::Errors::InvalidArgument | if the client_token does not conform to the UUID format. |
| Com::Vmware::Vapi::Std::Errors::Unsupported | if using multiple storage backings. |
| Com::Vmware::Vapi::Std::Errors::ResourceInaccessible | if subscribing to a published library which cannot be accessed. |
Code:
| public method Com::Vmware::Content::SubscribedLibrary::delete | ( | ) |
Deletes the specified subscribed library.
Deleting a subscribed library will remove the entry immediately and begin an asynchronous task to remove all cached content for the library. If the asynchronous task fails, file content may remain on the storage backing. This content will require manual removal.
| library_id | [REQUIRED] Identifier of the subscribed library to delete. The value must be an identifier for the resource type getQualifiedName(com.vmware.content.Library). . The value must be str. |
| Com::Vmware::Vapi::Std::Errors::InvalidElementType | if the library referenced by library_id is not a subscribed library. |
| Com::Vmware::Vapi::Std::Errors::NotFound | if the library referenced by library_id does not exist. |
Code:
| public method Com::Vmware::Content::SubscribedLibrary::evict | ( | ) |
Evicts the cached content of an on-demand subscribed library.
This method allows the cached content of a subscribed library to be removed to free up storage capacity. This method will only work when a subscribed library is synchronized on-demand.
| library_id | [REQUIRED] Identifier of the subscribed library whose content should be evicted. The value must be an identifier for the resource type getQualifiedName(com.vmware.content.Library). . The value must be str. |
| Com::Vmware::Vapi::Std::Errors::NotFound | if the library specified by library_id does not exist. |
| Com::Vmware::Vapi::Std::Errors::InvalidElementType | if the library specified by library_id is not a subscribed library. |
| Com::Vmware::Vapi::Std::Errors::NotAllowedInCurrentState | if the library specified by library_id does not synchronize on-demand. |
Code:
| public method Com::Vmware::Content::SubscribedLibrary::get | ( | ) |
Returns a given subscribed library.
| library_id | [REQUIRED] Identifier of the subscribed library to return. The value must be an identifier for the resource type getQualifiedName(com.vmware.content.Library). . The value must be str. |
| The | class Com::Vmware::Content::LibraryModel instance that corresponds to library_id . The return type will be Com::Vmware::Content::LibraryModel |
| Com::Vmware::Vapi::Std::Errors::NotFound | if the library associated with library_id does not exist. |
| Com::Vmware::Vapi::Std::Errors::InvalidElementType | if the library associated with library_id is not a subscribed library. |
Code:
| public method Com::Vmware::Content::SubscribedLibrary::list | ( | ) |
Returns the identifiers of all subscribed libraries in the Content Library.
| The | list of identifiers of all subscribed libraries in the Content Library. The value will be an identifier for the resource type getQualifiedName(com.vmware.content.Library). The return type will be Array of str |
Code:
| public method Com::Vmware::Content::SubscribedLibrary::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:
| public method Com::Vmware::Content::SubscribedLibrary::probe | ( | ) |
Probes remote library subscription information, including URL, SSL certificate and password. The resulting class Com::Vmware::Content::SubscribedLibrary::ProbeResult class* describes whether or not the subscription configuration is successful.
| subscription_info | [REQUIRED] The subscription info to be probed. . The value must be Com::Vmware::Content::Library::SubscriptionInfo. |
| The | subscription info probe result. The return type will be Com::Vmware::Content::SubscribedLibrary::ProbeResult |
Code:
| public method Com::Vmware::Content::SubscribedLibrary::sync | ( | ) |
Forces the synchronization of the subscribed library.
Synchronizing a subscribed library forcefully with this method will perform the same synchronization behavior as would run periodically for the library. The :attr:Com::Vmware::Content::Library::SubscriptionInfo.on_demand setting is respected. Calling this method on a library that is already in the process of synchronizing will have no effect.
| library_id | [REQUIRED] Identifier of the subscribed library to synchronize. The value must be an identifier for the resource type getQualifiedName(com.vmware.content.Library). . The value must be str. |
| Com::Vmware::Vapi::Std::Errors::NotFound | if the library specified by library_id does not exist. |
| Com::Vmware::Vapi::Std::Errors::InvalidElementType | if the library specified by library_id is not a subscribed library. |
| Com::Vmware::Vapi::Std::Errors::InvalidArgument | if some parameter in the subscribed library subscription info is invalid. |
| Com::Vmware::Vapi::Std::Errors::ResourceInaccessible | if the published library cannot be contacted or found. |
Code:
| public method Com::Vmware::Content::SubscribedLibrary::update | ( | ) |
Updates the properties of a subscribed library.
This is an incremental update to the subscribed library. Fields that are null in the update specification will be left unchanged.
| library_id | [REQUIRED] Identifier of the subscribed library to update. The value must be an identifier for the resource type getQualifiedName(com.vmware.content.Library). . The value must be str. |
| update_spec | [REQUIRED] Specification of the new property values to set on the subscribed library. . The value must be Com::Vmware::Content::LibraryModel. |
| Com::Vmware::Vapi::Std::Errors::NotFound | if the library specified by library_id does not exist. |
| Com::Vmware::Vapi::Std::Errors::InvalidElementType | if the library specified by library_id is not a subscribed library. |
| Com::Vmware::Vapi::Std::Errors::InvalidArgument | if the update_spec is not valid. |
| Com::Vmware::Vapi::Std::Errors::InvalidArgument | if the :attr:Com::Vmware::Content::LibraryModel.version of update_spec is not equal to the current version of the library. |
| Com::Vmware::Vapi::Std::Errors::ResourceInaccessible | if the subscription info is being updated but the published library cannot be contacted or found. |
Code: