content library item storage: info
info
structure is the expanded form of content.library.item.file.info that includes details about the storage backing for a file in a library item.Representation:
"storage_policy_id" : "obj-103",
"checksum_info" : {
"checksum" : "string",
"algorithm" : "SHA1"
},
"size" : 1,
"storage_uris" : [
"http://myurl.com",
"http://myurl.com"
],
"cached" : true,
"name" : "string",
"storage_backing" : {
"datastore_id" : "obj-103",
"storage_uri" : "http://myurl.com",
"type" : "DATASTORE"
},
"version" : "string"
}
Attributes:
Name | Type | Description |
---|---|---|
Required | ||
storage_backing | storage_backing | The storage backing on which this object resides. This might not be the same as the default storage backing associated with the library. |
storage_uris | URI[] | URIs that identify the file on the storage backing. These URIs may be specific to the backing and may need interpretation by the client. A client that understands a URI scheme in this list may use that URI to directly access the file on the storage backing. This can provide high-performance support for file manipulation. |
checksum_info.checksum | string | The checksum value calculated with content.library.item.file.checksum_info.algorithm. |
name | string | The name of the file. This value will be unique within the library item for each file. It cannot be an empty string. |
size | long | The file size, in bytes. The file size is the storage used and not the uploaded or provisioned size. For example, when uploading a disk to a datastore, the amount of storage that the disk consumes may be different from the disk file size. When the file is not cached, the size is 0. |
cached | boolean | Indicates whether the file is on disk or not. |
version | string | The version of this file; incremented when a new copy of the file is uploaded. |
Optional | ||
storage_backing.type | string | Type (DATASTORE , OTHER ) of content.library.storage_backing. Specifies the type of the content.library.storage_backing. Value is one of:DATASTORE: The content of the library will be stored on a datastore. These are vCenter Server managed datastores, and are logical containers that hide specifics of each storage device. Depending on the type of storage you use, datastores can be backed by the following file system formats:
OTHER: The content of the library will be stored on a remote file system. Supports the following remote file systems:
create operation. It will always be present in the result of the get or list operations. It is not used for the update operation. |
storage_backing.datastore_id | string | Identifier of the datastore used to store the content in the library. Optional. It is only relevant when type has value DATASTORE. This field is optional and it is only relevant when the value of type is DATASTORE.When clients pass a value of this structure as a parameter, the field must be an identifier for the resource type: Datastore . When operations return a value of this structure as a result, the field will be an identifier for the resource type: Datastore . |
storage_backing.storage_uri | URI | URI identifying the location used to store the content in the library. The following URI formats are supported: vSphere 6.5
vSphere 6.0 Update 1
vSphere 6.0
type is OTHER. |
storage_policy_id | string | Identifier of the storage policy associated with the file. Warning: This attribute is part of a new feature in development. It may be changed at any time and may not have all supported functionality implemented. Optional. This field will be unset if the file is located on a storage backing of type OTHER (because storage policies are not applicable for those backings) or if the file is located on a storage backing of type DATASTORE and content.library.item.storage.info.storage_policy_id is unset.When clients pass a value of this structure as a parameter, the field must be an identifier for the resource type: com.vmware.spbm.StorageProfile . When operations return a value of this structure as a result, the field will be an identifier for the resource type: com.vmware.spbm.StorageProfile . |
checksum_info | checksum_info | A checksum for validating the content of the file. This value can be used to verify that a transfer was completed without errors. Optional. A checksum cannot always be calculated, and the value will be unset if the file does not have content. |
checksum_info.algorithm | string | The checksum algorithm (SHA1 , MD5 , SHA256 , SHA512 ) used to calculate the checksum. Optional. If not specified the default checksum algorithm is SH_a1. |