Get Item Updatesession File
DescriptionRetrieves information about a specific file in the snapshot of the library item at the time when the update session was created. if you do not have all of the privileges described as follows: - Operation execution requires System.Anonymous.
Request
URLURL
Path Parameters
Path Parameters
Header Parameters
Header Parameters
Response
Response BodyResponse Body
Information about the file.
{
"bytes_transferred": 0,
"checksum_info": {
"algorithm": "enum",
"checksum": "string"
},
"error_message": {
"args": [
"string"
],
"default_message": "string",
"id": "string",
"localized": "string",
"params": {
"key": {
"d": 0,
"dt": "string",
"format": "enum",
"i": 0,
"l": {
"id": "string",
"params": "StdLocalizationParam Object"
},
"precision": 0,
"s": "string"
}
}
},
"keep_in_storage": false,
"name": "string",
"size": 0,
"source_endpoint": {
"ssl_certificate_thumbprint": "string",
"uri": "string"
},
"source_type": "enum",
"status": "enum",
"upload_endpoint": {
"ssl_certificate_thumbprint": "string",
"uri": "string"
}
}
The number of bytes of this file that have been received by the server.
The source type (SourceType) from which the file is being retrieved. This may be NONE if the file is not being changed.
Possible values are: NONE , PUSH , PULL
The transfer status (TransferStatus) of this file.
Possible values are: WAITING_FOR_TRANSFER , TRANSFERRING , READY , VALIDATING , ERROR
The name of the file.
Whether or not the file will be kept in storage upon update session completion. The flag is true for most files, and false for metadata files such as manifest and certificate file of update session with library item type OVF. Any file with File.Info.keep-in-storage set to false will not show up in the list of files returned from File.list upon update session completion. If unset, the file will be kept in storage upon update session completion.
The file size, in bytes as received by the server. This field is guaranteed to be set when the server has completely received the file. This field won’t be set until the file status is READY.
A source endpoint from which to retrieve the file. This field is optional and it is only relevant when the value of File.Info.source-type is PULL.
The checksum information of the file received by the server. If unset, the server does not verify the checksum.
Details about the transfer error. An error message is set if the status is ERROR.
An upload endpoint to which the client can push the content. This field is optional and it is only relevant when the value of File.Info.source-type is PUSH.