com.qcloud.cos.model.ListBucketInventoryConfigurationsRequest Maven / Gradle / Ivy
/*
* Copyright 2010-2019 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.
* According to cos feature, we modify some class,comment, field name, etc.
*/
package com.qcloud.cos.model;
import com.qcloud.cos.internal.CosServiceRequest;
import java.io.Serializable;
/**
* Request object to list inventory configurations of a bucket.
*/
public class ListBucketInventoryConfigurationsRequest extends CosServiceRequest implements Serializable {
/** The name of the COS bucket to list the inventory configurations. */
private String bucketName;
/**
* Optional parameter which allows list to be continued from a specific point.
* ContinuationToken is provided in truncated list results.
*/
private String continuationToken;
/**
* Gets the name of the COS bucket whose
* inventory configurations are to be listed.
*
* @return The name of the COS bucket whose
* inventory configurations are to be listed.
*/
public String getBucketName() {
return bucketName;
}
/**
* Sets the name of the COS bucket whose inventory configurations are to be listed.
*
* @param bucketName
* The name of the COS bucket whose inventory
* configurations are to be listed.
*/
public void setBucketName(String bucketName) {
this.bucketName = bucketName;
}
/**
* Sets the name of the COS bucket whose inventory configurations are to be listed.
* Returns this {@link ListBucketInventoryConfigurationsRequest}, enabling additional method
* calls to be chained together.
*
* @param bucketName
* The name of the COS bucket whose inventory
* configurations are to be listed.
*
* @return This {@link ListBucketInventoryConfigurationsRequest}, enabling additional method
* calls to be chained together.
*/
public ListBucketInventoryConfigurationsRequest withBucketName(String bucketName) {
setBucketName(bucketName);
return this;
}
/**
* Gets the optional continuation token. Continuation token allows a list to be
* continued from a specific point. ContinuationToken is provided in truncated list results.
*
* @return The optional continuation token associated with this request.
*/
public String getContinuationToken() {
return continuationToken;
}
/**
* Sets the optional continuation token. Continuation token allows a list to be
* continued from a specific point. ContinuationToken is provided in truncated list results.
*
* @param continuationToken
* The optional continuation token to associate with this request.
*/
public void setContinuationToken(String continuationToken) {
this.continuationToken = continuationToken;
}
/**
* Sets the optional continuation token. Continuation token allows a list to be
* continued from a specific point. ContinuationToken is provided in truncated list results.
*
* @param continuationToken
* The optional continuation token to associate with this request.
*
* @return This {@link ListBucketInventoryConfigurationsRequest}, enabling additional method
* calls to be chained together.
*/
public ListBucketInventoryConfigurationsRequest withContinuationToken(String continuationToken) {
setContinuationToken(continuationToken);
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy