![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.cs20151215.models.DeleteClusterNodepoolResponseBody 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 DeleteClusterNodepoolResponseBody extends TeaModel {
/**
* The request ID.
*
* example:
* 7263C978-3DBD-4E06-B319-793B38A2F388
*/
@NameInMap("request_id")
public String requestId;
/**
* example:
* T-655ace947e0e6603af000004
*/
@NameInMap("task_id")
public String taskId;
public static DeleteClusterNodepoolResponseBody build(java.util.Map map) throws Exception {
DeleteClusterNodepoolResponseBody self = new DeleteClusterNodepoolResponseBody();
return TeaModel.build(map, self);
}
public DeleteClusterNodepoolResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DeleteClusterNodepoolResponseBody setTaskId(String taskId) {
this.taskId = taskId;
return this;
}
public String getTaskId() {
return this.taskId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy