![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.cs20151215.models.ModifyNodePoolNodeConfigResponseBody 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 ModifyNodePoolNodeConfigResponseBody extends TeaModel {
/**
* The node pool ID.
*
* example:
* np737c3ac1ac684703b9e10673aa2c****
*/
@NameInMap("nodepool_id")
public String nodepoolId;
/**
* The request ID.
*
* example:
* D7631D83-6E98-1949-B665-766A62xxxxxx
*/
@NameInMap("request_id")
public String requestId;
/**
* The task ID.
*
* example:
* T-5fd211e924e1d00787xxxxxx
*/
@NameInMap("task_id")
public String taskId;
public static ModifyNodePoolNodeConfigResponseBody build(java.util.Map map) throws Exception {
ModifyNodePoolNodeConfigResponseBody self = new ModifyNodePoolNodeConfigResponseBody();
return TeaModel.build(map, self);
}
public ModifyNodePoolNodeConfigResponseBody setNodepoolId(String nodepoolId) {
this.nodepoolId = nodepoolId;
return this;
}
public String getNodepoolId() {
return this.nodepoolId;
}
public ModifyNodePoolNodeConfigResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ModifyNodePoolNodeConfigResponseBody setTaskId(String taskId) {
this.taskId = taskId;
return this;
}
public String getTaskId() {
return this.taskId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy