com.aliyun.cs20151215.models.RemoveNodePoolNodesResponseBody 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 RemoveNodePoolNodesResponseBody extends TeaModel {
/**
* The request ID.
*
* example:
* A9891419-D125-4D89-AFCA-68846675E2F7
*/
@NameInMap("request_id")
public String requestId;
/**
* The task ID.
*
* example:
* T-62a944794ee141074400****
*/
@NameInMap("task_id")
public String taskId;
public static RemoveNodePoolNodesResponseBody build(java.util.Map map) throws Exception {
RemoveNodePoolNodesResponseBody self = new RemoveNodePoolNodesResponseBody();
return TeaModel.build(map, self);
}
public RemoveNodePoolNodesResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public RemoveNodePoolNodesResponseBody setTaskId(String taskId) {
this.taskId = taskId;
return this;
}
public String getTaskId() {
return this.taskId;
}
}