oslo_vmware.objects.datastore
Module¶oslo_vmware.objects.datastore.
Datastore
(ref, name, capacity=None, freespace=None, uncommitted=None, type=None, datacenter=None)¶Bases: object
build_path
(*paths)¶Constructs and returns a DatastorePath.
Parameters: | paths – list of path components, for constructing a path relative to the root directory of the datastore |
---|---|
Returns: | a DatastorePath object |
build_url
(scheme, server, rel_path, datacenter_name=None)¶Constructs and returns a DatastoreURL.
Parameters: |
|
---|---|
Returns: | a DatastoreURL object |
choose_host
(hosts)¶get_connected_hosts
(session)¶Get a list of usable (accessible, mounted, read-writable) hosts where the datastore is mounted.
Param: | session: session |
---|---|
Returns: | list of HostSystem managed object references |
get_summary
(session)¶Get datastore summary.
Parameters: | datastore – Reference to the datastore |
---|---|
Returns: | ‘summary’ property of the datastore |
is_datastore_mount_usable
(mount_info)¶Check if a datastore is usable as per the given mount info.
The datastore is considered to be usable for a host only if it is writable, mounted and accessible.
Parameters: | mount_info – HostMountInfo data object |
---|---|
Returns: | True if datastore is usable |
oslo_vmware.objects.datastore.
DatastorePath
(datastore_name, *paths)¶Bases: object
Class for representing a directory or file path in a vSphere datatore.
This provides various helper methods to access components and useful variants of the datastore path.
Example usage:
DatastorePath(“datastore1”, “_base/foo”, “foo.vmdk”) creates an object that describes the “[datastore1] _base/foo/foo.vmdk” datastore file path to a virtual disk.
Note:
basename
¶datastore
¶dirname
¶join
(*paths)¶Join one or more path components intelligently into a datastore path.
If any component is an absolute path, all previous components are thrown away, and joining continues. The return value is the concatenation of the paths with exactly one slash (‘/’) inserted between components, unless p is empty.
Returns: | A datastore path |
---|
parent
¶parse
(datastore_path)¶Constructs a DatastorePath object given a datastore path string.
rel_path
¶oslo_vmware.objects.datastore.
DatastoreURL
(scheme, server, path, datacenter_path, datastore_name)¶Bases: object
Class for representing a URL to HTTP access a file in a datastore.
This provides various helper methods to access components and useful variants of the datastore URL.
connect
(method, content_length, cookie)¶datacenter_path
¶datastore_name
¶get_transfer_ticket
(session, method)¶path
¶urlparse
(url)¶oslo_vmware.objects.datastore.
get_datastore_by_ref
(session, ds_ref)¶Returns a datastore object for a given reference.
Parameters: |
|
---|---|
Return type: | a datastore object |
oslo_vmware.objects.datastore.
get_dsc_ref_and_name
(session, dsc_val)¶Return reference and name of the specified datastore cluster.
Parameters: | ds_val – datastore cluster name or datastore cluster moid |
---|---|
Returns: | tuple of dastastore cluster moref and datastore cluster name |
oslo_vmware.objects.datastore.
get_recommended_datastore_clone
(session, dsc_ref, clone_spec, vm_ref, folder, name, resource_pool=None, host_ref=None)¶Returns a key which identifies the most recommended datastore from the specified datastore cluster where the specified VM can be cloned to.
oslo_vmware.objects.datastore.
sdrs_enabled
(session, dsc_ref)¶Check if Storage DRS is enabled for the given datastore cluster.
Parameters: |
|
---|
Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.