content library item file: info
The
info
structure provides information about a file in Content Library Service storage. A file is an actual stored object for a library item. An item will have zero files initially, but one or more can be uploaded to the item.
Representation:
{
"checksum_info" : {
"checksum" : "string",
"algorithm" : "SHA1"
},
"size" : 1,
"cached" : true,
"name" : "string",
"version" : "string"
}
"checksum_info" : {
"checksum" : "string",
"algorithm" : "SHA1"
},
"size" : 1,
"cached" : true,
"name" : "string",
"version" : "string"
}
Attributes:
Name | Type | Description |
---|---|---|
Required | ||
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 | ||
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. |