com.aliyun.cs20151215.models.CreateClusterResponseBody 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 CreateClusterResponseBody extends TeaModel {
/**
* The ID of the cluster.
*
* example:
* cb95aa626a47740afbf6aa099b650****
*/
@NameInMap("cluster_id")
public String clusterId;
/**
* The request ID.
*
* example:
* 687C5BAA-D103-4993-884B-C35E4314A1E1
*/
@NameInMap("request_id")
public String requestId;
/**
* The task ID.
*
* example:
* T-5a54309c80282e39ea00002f
*/
@NameInMap("task_id")
public String taskId;
public static CreateClusterResponseBody build(java.util.Map map) throws Exception {
CreateClusterResponseBody self = new CreateClusterResponseBody();
return TeaModel.build(map, self);
}
public CreateClusterResponseBody setClusterId(String clusterId) {
this.clusterId = clusterId;
return this;
}
public String getClusterId() {
return this.clusterId;
}
public CreateClusterResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public CreateClusterResponseBody setTaskId(String taskId) {
this.taskId = taskId;
return this;
}
public String getTaskId() {
return this.taskId;
}
}