GetUploadPartsRequest
Represents a request to retrieve upload parts information for a multi-part file upload.
This class encapsulates the security keys and file length information required to obtain upload parts for a multi-part file upload. It inherits from BaseRequest and uses encryption attributes for secure data handling.
Properties
| Name | Description |
|---|---|
| Length | Gets the total length of the file to be uploaded. |
| SecretKey | Gets the encrypted secret key used for object security. |
| VersionSecretKey | Gets the encrypted secret key for version security. |
| DecryptedSecret | Gets the decrypted object secret information. |
| DecryptedVersionSecret | Gets the decrypted version secret information. |
Constructors
| Name | Description |
|---|---|
| GetUploadPartsRequest() | Initializes a new instance of the GetUploadPartsRequest class. |
| GetUploadPartsRequest(secretKey, versionSecretKey, length) | Initializes a new instance of the GetUploadPartsRequest class with the specified security keys and file length. |