backupstorage_put_object {paws.storage} | R Documentation |
Upload object that can store object metadata String and data blob in single API call using inline chunk field
Description
Upload object that can store object metadata String and data blob in single API call using inline chunk field.
See https://www.paws-r-sdk.com/docs/backupstorage_put_object/ for full documentation.
Usage
backupstorage_put_object(
BackupJobId,
ObjectName,
MetadataString = NULL,
InlineChunk = NULL,
InlineChunkLength = NULL,
InlineChunkChecksum = NULL,
InlineChunkChecksumAlgorithm = NULL,
ObjectChecksum = NULL,
ObjectChecksumAlgorithm = NULL,
ThrowOnDuplicate = NULL
)
Arguments
BackupJobId |
[required] Backup job Id for the in-progress backup. |
ObjectName |
[required] The name of the Object to be uploaded. |
MetadataString |
Store user defined metadata like backup checksum, disk ids, restore metadata etc. |
InlineChunk |
Inline chunk data to be uploaded. |
InlineChunkLength |
Length of the inline chunk data. |
InlineChunkChecksum |
Inline chunk checksum |
InlineChunkChecksumAlgorithm |
Inline chunk checksum algorithm |
ObjectChecksum |
object checksum |
ObjectChecksumAlgorithm |
object checksum algorithm |
ThrowOnDuplicate |
Throw an exception if Object name is already exist. |
[Package paws.storage version 0.6.0 Index]