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
 All Classes Files Functions
Classes | List of all members
Com::Vmware::Content::SubscribedLibrary Class Reference
Inheritance diagram for Com::Vmware::Content::SubscribedLibrary:
Com::Vmware::Vapi::Bindings::VapiInterface

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 ()
 

Member Function Documentation

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.

Parameters
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.
Return values
Identifierof 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
Exceptions
Com::Vmware::Vapi::Std::Errors::InvalidArgumentif the create_spec is not valid.
Com::Vmware::Vapi::Std::Errors::InvalidArgumentif the client_token does not conform to the UUID format.
Com::Vmware::Vapi::Std::Errors::Unsupportedif using multiple storage backings.
Com::Vmware::Vapi::Std::Errors::ResourceInaccessibleif subscribing to a published library which cannot be accessed.
Code:
click to view
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.

Parameters
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.
Exceptions
Com::Vmware::Vapi::Std::Errors::InvalidElementTypeif the library referenced by library_id is not a subscribed library.
Com::Vmware::Vapi::Std::Errors::NotFoundif the library referenced by library_id does not exist.
Code:
click to view
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.

Parameters
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.
Exceptions
Com::Vmware::Vapi::Std::Errors::NotFoundif the library specified by library_id does not exist.
Com::Vmware::Vapi::Std::Errors::InvalidElementTypeif the library specified by library_id is not a subscribed library.
Com::Vmware::Vapi::Std::Errors::NotAllowedInCurrentStateif the library specified by library_id does not synchronize on-demand.
Code:
click to view
public method Com::Vmware::Content::SubscribedLibrary::get ( )

Returns a given subscribed library.

Parameters
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.
Return values
Theclass Com::Vmware::Content::LibraryModel instance that corresponds to library_id . The return type will be Com::Vmware::Content::LibraryModel
Exceptions
Com::Vmware::Vapi::Std::Errors::NotFoundif the library associated with library_id does not exist.
Com::Vmware::Vapi::Std::Errors::InvalidElementTypeif the library associated with library_id is not a subscribed library.
Code:
click to view
public method Com::Vmware::Content::SubscribedLibrary::list ( )

Returns the identifiers of all subscribed libraries in the Content Library.

Return values
Thelist 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:
click to view
public method Com::Vmware::Content::SubscribedLibrary::new ( )

Constructor to initialize the object

Parameters
api_provider- protocol connection to use with stubs created by this factory
StubConfig- Stub's additional configuration
Return values
Blessedobject
Code:
click to view
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.

Parameters
subscription_info[REQUIRED] The subscription info to be probed. . The value must be Com::Vmware::Content::Library::SubscriptionInfo.
Return values
Thesubscription info probe result. The return type will be Com::Vmware::Content::SubscribedLibrary::ProbeResult
Code:
click to view
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.

Parameters
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.
Exceptions
Com::Vmware::Vapi::Std::Errors::NotFoundif the library specified by library_id does not exist.
Com::Vmware::Vapi::Std::Errors::InvalidElementTypeif the library specified by library_id is not a subscribed library.
Com::Vmware::Vapi::Std::Errors::InvalidArgumentif some parameter in the subscribed library subscription info is invalid.
Com::Vmware::Vapi::Std::Errors::ResourceInaccessibleif the published library cannot be contacted or found.
Code:
click to view
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.

Parameters
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.
Exceptions
Com::Vmware::Vapi::Std::Errors::NotFoundif the library specified by library_id does not exist.
Com::Vmware::Vapi::Std::Errors::InvalidElementTypeif the library specified by library_id is not a subscribed library.
Com::Vmware::Vapi::Std::Errors::InvalidArgumentif the update_spec is not valid.
Com::Vmware::Vapi::Std::Errors::InvalidArgumentif 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::ResourceInaccessibleif the subscription info is being updated but the published library cannot be contacted or found.
Code:
click to view

The documentation for this class was generated from the following file: