Show / Hide Table of Contents

Class CommitMultipartUploadDetails

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.

Inheritance
object
CommitMultipartUploadDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ObjectstorageService.Models
Assembly: OCI.DotNetSDK.Objectstorage.dll
Syntax
public class CommitMultipartUploadDetails

Properties

PartsToCommit

Declaration
[Required(ErrorMessage = "PartsToCommit is required.")]
[JsonProperty(PropertyName = "partsToCommit")]
public List<CommitMultipartUploadPartDetails> PartsToCommit { get; set; }
Property Value
Type Description
List<CommitMultipartUploadPartDetails>

The part numbers and entity tags (ETags) for the parts to be committed.

Remarks

Required

PartsToExclude

Declaration
[JsonProperty(PropertyName = "partsToExclude")]
public List<int> PartsToExclude { get; set; }
Property Value
Type Description
List<int>

The part numbers for the parts to be excluded from the completed object. Each part created for this upload must be in either partsToExclude or partsToCommit, but cannot be in both.

In this article
Back to top