com.netease.cloud.services.nos.model.GetBucketDedupRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nos-sdk-java-publiccloud Show documentation
Show all versions of nos-sdk-java-publiccloud Show documentation
nos java sdk to the Central Repository
The newest version!
package com.netease.cloud.services.nos.model;
import com.netease.cloud.WebServiceRequest;
/**
*
* Provide the data of get Deduplicate config.
*
*/
public class GetBucketDedupRequest extends WebServiceRequest{
/**
* The name of the bucket.
*/
private String bucketName;
public GetBucketDedupRequest(String bucketName) {
this.bucketName = bucketName;
}
public String getBucketName() {
return bucketName;
}
public void setBucketName(String bucketName) {
this.bucketName = bucketName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy