com.aliyun.cs20151215.models.ScaleClusterResponseBody 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 ScaleClusterResponseBody extends TeaModel {
@NameInMap("cluster_id")
public String clusterId;
@NameInMap("request_id")
public String requestId;
@NameInMap("task_id")
public String taskId;
public static ScaleClusterResponseBody build(java.util.Map map) throws Exception {
ScaleClusterResponseBody self = new ScaleClusterResponseBody();
return TeaModel.build(map, self);
}
public ScaleClusterResponseBody setClusterId(String clusterId) {
this.clusterId = clusterId;
return this;
}
public String getClusterId() {
return this.clusterId;
}
public ScaleClusterResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ScaleClusterResponseBody setTaskId(String taskId) {
this.taskId = taskId;
return this;
}
public String getTaskId() {
return this.taskId;
}
}