com.aliyun.cs20151215.models.RepairClusterNodePoolResponseBody 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 RepairClusterNodePoolResponseBody extends TeaModel {
/**
* The request ID.
*
* example:
* db82195b-75a8-40e5-9be4-16f1829dc624
*/
@NameInMap("request_id")
public String requestId;
/**
* The ID of the task.
*
* example:
* T-613b19bbd160ad4928000001
*/
@NameInMap("task_id")
public String taskId;
public static RepairClusterNodePoolResponseBody build(java.util.Map map) throws Exception {
RepairClusterNodePoolResponseBody self = new RepairClusterNodePoolResponseBody();
return TeaModel.build(map, self);
}
public RepairClusterNodePoolResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public RepairClusterNodePoolResponseBody setTaskId(String taskId) {
this.taskId = taskId;
return this;
}
public String getTaskId() {
return this.taskId;
}
}