com.aliyun.cs20151215.models.MigrateClusterRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cs20151215 Show documentation
Show all versions of cs20151215 Show documentation
Alibaba Cloud CS (20151215) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.cs20151215.models;
import com.aliyun.tea.*;
public class MigrateClusterRequest extends TeaModel {
/**
* The endpoint of the OSS bucket.
*
* example:
* *******.oss-cn-hangzhou.aliyuncs.com
*/
@NameInMap("oss_bucket_endpoint")
public String ossBucketEndpoint;
/**
* The name of the Object Storage Service (OSS) bucket.
*
* example:
* bucket-****
*/
@NameInMap("oss_bucket_name")
public String ossBucketName;
public static MigrateClusterRequest build(java.util.Map map) throws Exception {
MigrateClusterRequest self = new MigrateClusterRequest();
return TeaModel.build(map, self);
}
public MigrateClusterRequest setOssBucketEndpoint(String ossBucketEndpoint) {
this.ossBucketEndpoint = ossBucketEndpoint;
return this;
}
public String getOssBucketEndpoint() {
return this.ossBucketEndpoint;
}
public MigrateClusterRequest setOssBucketName(String ossBucketName) {
this.ossBucketName = ossBucketName;
return this;
}
public String getOssBucketName() {
return this.ossBucketName;
}
}