com.aliyun.cs20151215.models.UpgradeClusterResponseBody 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 UpgradeClusterResponseBody extends TeaModel {
/**
* 集群ID。
*
* example:
* c82e6987e2961451182edacd74faf****
*/
@NameInMap("cluster_id")
public String clusterId;
/**
* 请求ID。
*
* example:
* 0527ac9a-c899-4341-a21a-****
*/
@NameInMap("request_id")
public String requestId;
/**
* 任务ID。
*
* example:
* T-5faa48fb31b6b8078d00****
*/
@NameInMap("task_id")
public String taskId;
public static UpgradeClusterResponseBody build(java.util.Map map) throws Exception {
UpgradeClusterResponseBody self = new UpgradeClusterResponseBody();
return TeaModel.build(map, self);
}
public UpgradeClusterResponseBody setClusterId(String clusterId) {
this.clusterId = clusterId;
return this;
}
public String getClusterId() {
return this.clusterId;
}
public UpgradeClusterResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public UpgradeClusterResponseBody setTaskId(String taskId) {
this.taskId = taskId;
return this;
}
public String getTaskId() {
return this.taskId;
}
}