All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.netease.cloud.services.nos.model.ListMultipartUploadsRequest Maven / Gradle / Ivy

The newest version!
package com.netease.cloud.services.nos.model;

import com.netease.cloud.WebServiceRequest;
import com.netease.cloud.services.nos.Nos;

/**
 * Container for the parameters of the ListMultipartUploads operation.
 * 

* Required Parameters: BucketName * * @see Nos#listMultipartUploads(ListMultipartUploadsRequest) */ public class ListMultipartUploadsRequest extends WebServiceRequest { /** The name of the bucket containing the uploads to list. */ private String bucketName; /** * Optional parameter that causes multipart uploads for keys that contain * the same string between the prefix and the first occurrence of the * delimiter to be rolled up into a single result element in the * {@link MultipartUploadListing#getCommonPrefixes()} list. These rolled-up * keys are not returned elsewhere in the response. The most commonly used * delimiter is "/", which simulates a hierarchical organization similar to * a file system directory structure. */ private String delimiter; /** * Optional parameter restricting the response to multipart uploads for keys * which begin with the specified prefix. You can use prefixes to separate a * bucket into different sets of keys in a way similar to how a file system * uses folders. */ private String prefix; /** The optional maximum number of uploads to return. */ private Integer maxUploads; /** * The optional key marker indicating where in the results to begin listing. *

* Together with the upload ID marker, specifies the multipart upload after * which listing should begin. *

* If the upload ID marker is not specified, only the keys lexicographically * greater than the specified key-marker will be included in the list. *

* If the upload ID marker is specified, any multipart uploads for a key * equal to the key-marker may also be included, provided those multipart * uploads have upload IDs lexicographically greater than the specified * marker. */ private String keyMarker; /** * The optional upload ID marker indicating where in the results to begin * listing. *

* Together with the key marker, specifies the multipart upload after which * listing should begin. If no key marker is specified, the upload ID marker * is ignored. Otherwise, any multipart uploads for a key equal to the key * marker may be included in the list only if they have an upload ID * lexicographically greater than the specified marker. */ private String uploadIdMarker; /** * Constructs a new ListMultipartUploadsRequest to list the multipart * uploads from the specified bucket. * * @param bucketName * The name of the bucket containing the uploads to list. */ public ListMultipartUploadsRequest(String bucketName) { this.bucketName = bucketName; } /** * Returns the name of the bucket containing the uploads to list. * * @return The name of the bucket containing the uploads to list. */ public String getBucketName() { return bucketName; } /** * Sets the name of the bucket containing the multipart uploads to list. * * @param bucketName * The name of the bucket containing the uploads to list. */ public void setBucketName(String bucketName) { this.bucketName = bucketName; } /** * Sets The name of the bucket containing the uploads to list, and returns * this updated ListMultipartUploadsRequest object so that additional method * calls can be chained together. * * @param bucketName * The name of the bucket containing the uploads to list. * * @return This updated ListMultipartUploadsRequest object. */ public ListMultipartUploadsRequest withBucketName(String bucketName) { this.bucketName = bucketName; return this; } /** * Returns the optional maximum number of uploads to return, or null if no * maximum number of uploads has been set for this request. * * @return The optional maximum number of uploads to return. */ public Integer getMaxUploads() { return maxUploads; } /** * Sets the optional maximum number of uploads to return. * * @param maxUploads * The maximum number of uploads to return. */ public void setMaxUploads(Integer maxUploads) { this.maxUploads = maxUploads; } /** * Sets the optional maximum number of uploads to return and returns this * updated ListMultipartUploadsRequest object so that additional method * calls can be chained together. * * @param maxUploadsInt * The optional maximum number of uploads to return. * * @return This updated ListMultipartUploadsRequest object. */ public ListMultipartUploadsRequest withMaxUploads(int maxUploadsInt) { this.maxUploads = maxUploadsInt; return this; } /** * Returns the optional key marker indicating where in the results to begin * listing. *

* Together with the upload ID marker, specifies the multipart upload after * which listing should begin. *

* If the upload ID marker is not specified, only the keys lexicographically * greater than the specified key-marker will be included in the list. *

* If the upload ID marker is specified, any multipart uploads for a key * equal to the key-marker may also be included, provided those multipart * uploads have upload IDs lexicographically greater than the specified * marker. * * @return The optional key marker indicating where in the results to begin * listing. */ public String getKeyMarker() { return keyMarker; } /** * Sets the optional key marker indicating where in the results to begin * listing. *

* Together with the upload ID marker, specifies the multipart upload after * which listing should begin. *

* If the upload ID marker is not specified, only the keys lexicographically * greater than the specified key-marker will be included in the list. *

* If the upload ID marker is specified, any multipart uploads for a key * equal to the key-marker may also be included, provided those multipart * uploads have upload IDs lexicographically greater than the specified * marker. * * @param keyMarker * The optional key marker indicating where in the results to * begin listing. */ public void setKeyMarker(String keyMarker) { this.keyMarker = keyMarker; } /** * Sets the KeyMarker property for this request. * * @param keyMarker * The value that KeyMarker is set to * @return the request with the KeyMarker set */ public ListMultipartUploadsRequest withKeyMarker(String keyMarker) { this.keyMarker = keyMarker; return this; } /** * Returns the optional upload ID marker indicating where in the results to * begin listing. *

* Together with the key marker, specifies the multipart upload after which * listing should begin. If no key marker is specified, the upload ID marker * is ignored. Otherwise, any multipart uploads for a key equal to the key * marker may be included in the list only if they have an upload ID * lexicographically greater than the specified marker. * * @return The optional upload ID marker indicating where in the results to * begin listing. */ public String getUploadIdMarker() { return uploadIdMarker; } /** * Sets the optional upload ID marker indicating where in the results to * begin listing. *

* Together with the key marker, specifies the multipart upload after which * listing should begin. If no key marker is specified, the upload ID marker * is ignored. Otherwise, any multipart uploads for a key equal to the key * marker may be included in the list only if they have an upload ID * lexicographically greater than the specified marker. * * @param uploadIdMarker * The optional upload ID marker indicating where in the results * to begin listing. */ public void setUploadIdMarker(String uploadIdMarker) { this.uploadIdMarker = uploadIdMarker; } /** * Sets the optional upload ID marker indicating where in the results to * begin listing and returns this updated ListMultipartUploadsRequest object * so that additional methods can be chained together. *

* Together with the key marker, specifies the multipart upload after which * listing should begin. If no key marker is specified, the upload ID marker * is ignored. Otherwise, any multipart uploads for a key equal to the key * marker may be included in the list only if they have an upload ID * lexicographically greater than the specified marker. * * @param uploadIdMarker * The optional upload ID marker indicating where in the results * to begin listing. * * @return This updated ListMultipartUploadsRequest object. */ public ListMultipartUploadsRequest withUploadIdMarker(String uploadIdMarker) { this.uploadIdMarker = uploadIdMarker; return this; } /** * Returns the optional delimiter parameter that causes multipart uploads for * keys that contain the same string between the prefix and the first * occurrence of the delimiter to be combined into a single result element * in the {@link MultipartUploadListing#getCommonPrefixes()} list. These * combined keys are not returned elsewhere in the response. The most * commonly used delimiter is "/", which simulates a hierarchical * organization similar to a file system directory structure. * * @return The optional delimiter parameter that causes multipart uploads * for keys that contain the same string between the prefix and the * first occurrence of the delimiter to be combined into a single * result element in the {@link MultipartUploadListing#getCommonPrefixes()} * list. */ public String getDelimiter() { return delimiter; } /** * Sets the optional delimiter parameter that causes multipart uploads for * keys that contain the same string between the prefix and the first * occurrence of the delimiter to be combined into a single result element * in the {@link MultipartUploadListing#getCommonPrefixes()} list. * * @param delimiter * The optional delimiter parameter that causes multipart uploads * for keys that contain the same string between the prefix and * the first occurrence of the delimiter to be combined into a * single result element in the * {@link MultipartUploadListing#getCommonPrefixes()} list. */ public void setDelimiter(String delimiter) { this.delimiter = delimiter; } /** * Sets the optional delimiter parameter that causes multipart uploads for * keys that contain the same string between the prefix and the first * occurrence of the delimiter to be rolled up into a single result element * in the {@link MultipartUploadListing#getCommonPrefixes()} list. Returns * this {@link ListMultipartUploadsRequest}, enabling additional method * calls to be chained together. * * @param delimiter * The optional delimiter parameter that causes multipart uploads * for keys that contain the same string between the prefix and * the first occurrence of the delimiter to be rolled up into a * single result element in the * {@link MultipartUploadListing#getCommonPrefixes()} list. * * @return This {@link ListMultipartUploadsRequest}, enabling additional * method calls to be chained together. */ public ListMultipartUploadsRequest withDelimiter(String delimiter) { setDelimiter(delimiter); return this; } /** * Returns the optional prefix parameter that restricts the response to * multipart uploads for keys that begin with the specified prefix. Use * prefixes to separate a bucket into different sets of keys, similar to how * a file system organizes files into directories. * * @return The optional prefix parameter restricting the response to * multipart uploads for keys that begin with the specified prefix. */ public String getPrefix() { return prefix; } /** * Sets the optional prefix parameter, restricting the response to multipart * uploads for keys that begin with the specified prefix. * * @param prefix * The optional prefix parameter, restricting the response to * multipart uploads for keys that begin with the specified * prefix. */ public void setPrefix(String prefix) { this.prefix = prefix; } /** * Sets the optional prefix parameter restricting the response to multipart * uploads for keys that begin with the specified prefix. Returns this * {@link ListMultipartUploadsRequest}, enabling additional method calls to * be chained together. * * @param prefix * The optional prefix parameter restricting the response to * multipart uploads for keys that begin with the specified * prefix. * * @return This {@link ListMultipartUploadsRequest}, enabling additional * method calls to be chained together. */ public ListMultipartUploadsRequest withPrefix(String prefix) { setPrefix(prefix); return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy