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

com.aliyun.cs20151215.models.MigrateClusterRequest Maven / Gradle / Ivy

There is a newer version: 4.8.0
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy