Class MultipartUploadPartSummary
Gets summary information about multipart uploads.
To use any of the API operations, you must be authorized in an IAM policy. If you are not authorized,
talk to an administrator. If you are an administrator who needs to write policies to give users access,
see Getting Started with Policies.
Inherited Members
Namespace: Oci.ObjectstorageService.Models
Assembly: OCI.DotNetSDK.Objectstorage.dll
Syntax
public class MultipartUploadPartSummary
Properties
Etag
Declaration
[Required(ErrorMessage = "Etag is required.")]
[JsonProperty(PropertyName = "etag")]
public string Etag { get; set; }
Property Value
Type | Description |
---|---|
string | The current entity tag (ETag) for the part. |
Remarks
Required
Md5
Declaration
[Required(ErrorMessage = "Md5 is required.")]
[JsonProperty(PropertyName = "md5")]
public string Md5 { get; set; }
Property Value
Type | Description |
---|---|
string | The MD5 hash of the bytes of the part. |
Remarks
Required
PartNumber
Declaration
[Required(ErrorMessage = "PartNumber is required.")]
[JsonProperty(PropertyName = "partNumber")]
public int? PartNumber { get; set; }
Property Value
Type | Description |
---|---|
int? | The part number for this part. |
Remarks
Required
Size
Declaration
[Required(ErrorMessage = "Size is required.")]
[JsonProperty(PropertyName = "size")]
public long? Size { get; set; }
Property Value
Type | Description |
---|---|
long? | The size of the part in bytes. |
Remarks
Required