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

com.aliyun.cs20151215.models.MigrateClusterResponseBody 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 MigrateClusterResponseBody extends TeaModel {
    /**
     * 

The cluster ID.

* * example: *

c8155823d057948c69a****

*/ @NameInMap("cluster_id") public String clusterId; /** *

The request ID.

* * example: *

20758A-585D-4A41-A9B2-28DA8F4F534F

*/ @NameInMap("request_id") public String requestId; /** *

The task ID.

* * example: *

T-62ccd14aacb8db06ca00****

*/ @NameInMap("task_id") public String taskId; public static MigrateClusterResponseBody build(java.util.Map map) throws Exception { MigrateClusterResponseBody self = new MigrateClusterResponseBody(); return TeaModel.build(map, self); } public MigrateClusterResponseBody setClusterId(String clusterId) { this.clusterId = clusterId; return this; } public String getClusterId() { return this.clusterId; } public MigrateClusterResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public MigrateClusterResponseBody setTaskId(String taskId) { this.taskId = taskId; return this; } public String getTaskId() { return this.taskId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy