All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sdk.service.emr20210320.models.AckNodePool Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.emr20210320.models;

import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * {@link AckNodePool} extends {@link TeaModel}
 *
 * 

AckNodePool

*/ public class AckNodePool extends TeaModel { @com.aliyun.core.annotation.NameInMap("NodePoolId") private String nodePoolId; @com.aliyun.core.annotation.NameInMap("NodeSelector") private AckNodeSelector nodeSelector; private AckNodePool(Builder builder) { this.nodePoolId = builder.nodePoolId; this.nodeSelector = builder.nodeSelector; } public static Builder builder() { return new Builder(); } public static AckNodePool create() { return builder().build(); } /** * @return nodePoolId */ public String getNodePoolId() { return this.nodePoolId; } /** * @return nodeSelector */ public AckNodeSelector getNodeSelector() { return this.nodeSelector; } public static final class Builder { private String nodePoolId; private AckNodeSelector nodeSelector; /** * 节点池ID。 */ public Builder nodePoolId(String nodePoolId) { this.nodePoolId = nodePoolId; return this; } /** * ACK节点选择器。 */ public Builder nodeSelector(AckNodeSelector nodeSelector) { this.nodeSelector = nodeSelector; return this; } public AckNodePool build() { return new AckNodePool(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy