/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.S3.Model { /// /// Container for the parameters to the ListParts operation. /// Lists the parts that have been uploaded for a specific multipart upload. This operation /// must include the upload ID, which you obtain by sending the initiate multipart upload /// request (see CreateMultipartUpload). /// This request returns a maximum of 1,000 uploaded parts. The default number of parts /// returned is 1,000 parts. You can restrict the number of parts returned by specifying /// the max-parts request parameter. If your multipart upload consists of /// more than 1,000 parts, the response returns an IsTruncated field with /// the value of true, and a NextPartNumberMarker element. In subsequent /// ListParts requests you can include the part-number-marker query string /// parameter and set its value to the NextPartNumberMarker field value from /// the previous response. /// /// /// /// If the upload was created using a checksum algorithm, you will need to have permission /// to the kms:Decrypt action for the request to succeed. /// /// /// /// For more information on multipart uploads, see Uploading /// Objects Using Multipart Upload. /// /// /// /// For information on permissions required to use the multipart upload API, see Multipart /// Upload and Permissions. /// /// /// /// The following operations are related to ListParts: /// /// /// public partial class ListPartsRequest : AmazonWebServiceRequest { private string bucketName; private EncodingType encoding; private string expectedBucketOwner; private string key; private int? maxParts; private string partNumberMarker; private RequestPayer requestPayer; private string _sseCustomerAlgorithm; private string _sseCustomerKey; private string _sseCustomerKeyMD5; private string uploadId; /// /// Gets and sets the property BucketName. /// /// The name of the bucket to which the parts are being uploaded. /// /// /// /// When using this action with an access point, you must direct requests to the access /// point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. /// When using this action with an access point through the Amazon Web Services SDKs, /// you provide the access point ARN in place of the bucket name. For more information /// about access point ARNs, see Using /// access points in the Amazon S3 User Guide. /// /// /// /// When you use this action with Amazon S3 on Outposts, you must direct requests to the /// S3 on Outposts hostname. The S3 on Outposts hostname takes the form AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com. /// When you use this action with S3 on Outposts through the Amazon Web Services SDKs, /// you provide the Outposts access point ARN in place of the bucket name. For more information /// about S3 on Outposts ARNs, see What /// is S3 on Outposts? in the Amazon S3 User Guide. /// /// public string BucketName { get { return this.bucketName; } set { this.bucketName = value; } } // Check to see if BucketName property is set internal bool IsSetBucketName() { return this.bucketName != null; } /// /// Requests Amazon S3 to encode the object keys in the response and specifies /// the encoding method to use. An object key may contain any Unicode character; /// however, XML 1.0 parser cannot parse some characters, such as characters /// with an ASCII value from 0 to 10. For characters that are not supported in /// XML 1.0, you can add this parameter to request that Amazon S3 encode the /// keys in the response. /// public EncodingType Encoding { get { return this.encoding; } set { this.encoding = value; } } // Check to see if DeleteMarker property is set internal bool IsSetEncoding() { return this.encoding != null; } /// /// Gets and sets the property ExpectedBucketOwner. /// /// The account ID of the expected bucket owner. If the bucket is owned by a different /// account, the request will fail with an HTTP 403 (Access Denied) error. /// /// public string ExpectedBucketOwner { get { return this.expectedBucketOwner; } set { this.expectedBucketOwner = value; } } /// /// Checks to see if ExpectedBucketOwner is set. /// /// true, if ExpectedBucketOwner property is set. internal bool IsSetExpectedBucketOwner() { return !String.IsNullOrEmpty(this.expectedBucketOwner); } /// /// The object key for which the multipart upload was initiated. /// /// /// This property will be used as part of the resource path of the HTTP request. In .NET the System.Uri class /// is used to construct the uri for the request. The System.Uri class will canonicalize the uri string by compacting characters like "..". /// For example an object key of "foo/../bar/file.txt" will be transformed into "bar/file.txt" because the ".." /// is interpreted as use parent directory. For further information view the documentation for /// the Uri class: https://docs.microsoft.com/en-us/dotnet/api/system.uri /// public string Key { get { return this.key; } set { this.key = value; } } // Check to see if Key property is set internal bool IsSetKey() { return this.key != null; } /// /// Gets and sets the property MaxParts. /// /// Sets the maximum number of parts to return. /// /// public int MaxParts { get { return this.maxParts ?? default(int); } set { this.maxParts = value; } } // Check to see if MaxParts property is set internal bool IsSetMaxParts() { return this.maxParts.HasValue; } /// /// Gets and sets the property PartNumberMarker. /// /// Specifies the part after which listing should begin. Only parts with higher part numbers /// will be listed. /// /// public string PartNumberMarker { get { return this.partNumberMarker; } set { this.partNumberMarker = value; } } // Check to see if PartNumberMarker property is set internal bool IsSetPartNumberMarker() { return this.partNumberMarker != null; } /// /// Confirms that the requester knows that she or he will be charged for the request. /// Bucket owners need not specify this parameter in their requests. /// public RequestPayer RequestPayer { get { return this.requestPayer; } set { this.requestPayer = value; } } /// /// Checks to see if RequetsPayer is set. /// /// true, if RequestPayer property is set. internal bool IsSetRequestPayer() { return requestPayer != null; } /// /// Gets and sets the property SSECustomerAlgorithm. /// /// The SSE algorithm used to encrypt the object. This is only needed when the object /// was created using a checksum algorithm. For more information, see Protecting /// data using SSE-C keys in the Amazon S3 User Guide. /// /// public string SSECustomerAlgorithm { get { return this._sseCustomerAlgorithm; } set { this._sseCustomerAlgorithm = value; } } // Check to see if SSECustomerAlgorithm property is set internal bool IsSetSSECustomerAlgorithm() { return this._sseCustomerAlgorithm != null; } /// /// Gets and sets the property SSECustomerKey. /// /// The SSE customer key. This is only needed when the object was cureated using a checksum /// algorithm. For more information, see Protecting /// data using SSE-C keys in the Amazon S3 User Guide. /// /// public string SSECustomerKey { get { return this._sseCustomerKey; } set { this._sseCustomerKey = value; } } // Check to see if SSECustomerKey property is set internal bool IsSetSSECustomerKey() { return this._sseCustomerKey != null; } /// /// Gets and sets the property SSECustomerKeyMD5. /// /// The MD5 SSE customer key. This is only needed when the object was cureated using a /// checksum algorithm. For more information, see Protecting /// data using SSE-C keys in the Amazon S3 User Guide. /// /// public string SSECustomerKeyMD5 { get { return this._sseCustomerKeyMD5; } set { this._sseCustomerKeyMD5 = value; } } // Check to see if SSECustomerKeyMD5 property is set internal bool IsSetSSECustomerKeyMD5() { return this._sseCustomerKeyMD5 != null; } /// /// Gets and sets the property UploadId. /// /// Upload ID identifying the multipart upload whose parts are being listed. /// /// public string UploadId { get { return this.uploadId; } set { this.uploadId = value; } } // Check to see if UploadId property is set internal bool IsSetUploadId() { return this.uploadId != null; } } }