com.aliyun.sdk.service.cs20151215.models.ModifyNodePoolNodeConfigResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-cs20151215 Show documentation
Show all versions of alibabacloud-cs20151215 Show documentation
Alibaba Cloud CS (20151215) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cs20151215.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ModifyNodePoolNodeConfigResponseBody} extends {@link TeaModel}
*
* ModifyNodePoolNodeConfigResponseBody
*/
public class ModifyNodePoolNodeConfigResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("nodepool_id")
private String nodepoolId;
@com.aliyun.core.annotation.NameInMap("request_id")
private String requestId;
@com.aliyun.core.annotation.NameInMap("task_id")
private String taskId;
private ModifyNodePoolNodeConfigResponseBody(Builder builder) {
this.nodepoolId = builder.nodepoolId;
this.requestId = builder.requestId;
this.taskId = builder.taskId;
}
public static Builder builder() {
return new Builder();
}
public static ModifyNodePoolNodeConfigResponseBody create() {
return builder().build();
}
/**
* @return nodepoolId
*/
public String getNodepoolId() {
return this.nodepoolId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return taskId
*/
public String getTaskId() {
return this.taskId;
}
public static final class Builder {
private String nodepoolId;
private String requestId;
private String taskId;
/**
* The node pool ID.
*/
public Builder nodepoolId(String nodepoolId) {
this.nodepoolId = nodepoolId;
return this;
}
/**
* The request ID.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* The task ID.
*/
public Builder taskId(String taskId) {
this.taskId = taskId;
return this;
}
public ModifyNodePoolNodeConfigResponseBody build() {
return new ModifyNodePoolNodeConfigResponseBody(this);
}
}
}