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

software.amazon.awssdk.services.eks.model.VpcConfigRequest Maven / Gradle / Ivy

/*
 * Copyright 2014-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */

package software.amazon.awssdk.services.eks.model;

import java.io.Serializable;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Function;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.core.SdkField;
import software.amazon.awssdk.core.SdkPojo;
import software.amazon.awssdk.core.protocol.MarshallLocation;
import software.amazon.awssdk.core.protocol.MarshallingType;
import software.amazon.awssdk.core.traits.ListTrait;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.core.util.DefaultSdkAutoConstructList;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;

/**
 * 

* An object representing the VPC configuration to use for an Amazon EKS cluster. *

*/ @Generated("software.amazon.awssdk:codegen") public final class VpcConfigRequest implements SdkPojo, Serializable, ToCopyableBuilder { private static final SdkField> SUBNET_IDS_FIELD = SdkField .> builder(MarshallingType.LIST) .getter(getter(VpcConfigRequest::subnetIds)) .setter(setter(Builder::subnetIds)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("subnetIds").build(), ListTrait .builder() .memberLocationName(null) .memberFieldInfo( SdkField. builder(MarshallingType.STRING) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) .locationName("member").build()).build()).build()).build(); private static final SdkField> SECURITY_GROUP_IDS_FIELD = SdkField .> builder(MarshallingType.LIST) .getter(getter(VpcConfigRequest::securityGroupIds)) .setter(setter(Builder::securityGroupIds)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("securityGroupIds").build(), ListTrait .builder() .memberLocationName(null) .memberFieldInfo( SdkField. builder(MarshallingType.STRING) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) .locationName("member").build()).build()).build()).build(); private static final SdkField ENDPOINT_PUBLIC_ACCESS_FIELD = SdkField. builder(MarshallingType.BOOLEAN) .getter(getter(VpcConfigRequest::endpointPublicAccess)).setter(setter(Builder::endpointPublicAccess)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("endpointPublicAccess").build()) .build(); private static final SdkField ENDPOINT_PRIVATE_ACCESS_FIELD = SdkField. builder(MarshallingType.BOOLEAN) .getter(getter(VpcConfigRequest::endpointPrivateAccess)).setter(setter(Builder::endpointPrivateAccess)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("endpointPrivateAccess").build()) .build(); private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(SUBNET_IDS_FIELD, SECURITY_GROUP_IDS_FIELD, ENDPOINT_PUBLIC_ACCESS_FIELD, ENDPOINT_PRIVATE_ACCESS_FIELD)); private static final long serialVersionUID = 1L; private final List subnetIds; private final List securityGroupIds; private final Boolean endpointPublicAccess; private final Boolean endpointPrivateAccess; private VpcConfigRequest(BuilderImpl builder) { this.subnetIds = builder.subnetIds; this.securityGroupIds = builder.securityGroupIds; this.endpointPublicAccess = builder.endpointPublicAccess; this.endpointPrivateAccess = builder.endpointPrivateAccess; } /** *

* Specify subnets for your Amazon EKS worker nodes. Amazon EKS creates cross-account elastic network interfaces in * these subnets to allow communication between your worker nodes and the Kubernetes control plane. *

*

* Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. *

* * @return Specify subnets for your Amazon EKS worker nodes. Amazon EKS creates cross-account elastic network * interfaces in these subnets to allow communication between your worker nodes and the Kubernetes control * plane. */ public List subnetIds() { return subnetIds; } /** *

* Specify one or more security groups for the cross-account elastic network interfaces that Amazon EKS creates to * use to allow communication between your worker nodes and the Kubernetes control plane. If you do not specify a * security group, the default security group for your VPC is used. *

*

* Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. *

* * @return Specify one or more security groups for the cross-account elastic network interfaces that Amazon EKS * creates to use to allow communication between your worker nodes and the Kubernetes control plane. If you * do not specify a security group, the default security group for your VPC is used. */ public List securityGroupIds() { return securityGroupIds; } /** *

* Set this value to false to disable public access for your cluster's Kubernetes API server endpoint. * If you disable public access, your cluster's Kubernetes API server can only receive requests from within the * cluster VPC. The default value for this parameter is true, which enables public access for your * Kubernetes API server. For more information, see Amazon EKS Cluster Endpoint Access * Control in the Amazon EKS User Guide . *

* * @return Set this value to false to disable public access for your cluster's Kubernetes API server * endpoint. If you disable public access, your cluster's Kubernetes API server can only receive requests * from within the cluster VPC. The default value for this parameter is true, which enables * public access for your Kubernetes API server. For more information, see Amazon EKS Cluster Endpoint * Access Control in the Amazon EKS User Guide . */ public Boolean endpointPublicAccess() { return endpointPublicAccess; } /** *

* Set this value to true to enable private access for your cluster's Kubernetes API server endpoint. * If you enable private access, Kubernetes API requests from within your cluster's VPC will use the private VPC * endpoint. The default value for this parameter is false, which disables private access for your * Kubernetes API server. For more information, see Amazon EKS Cluster Endpoint Access * Control in the Amazon EKS User Guide . *

* * @return Set this value to true to enable private access for your cluster's Kubernetes API server * endpoint. If you enable private access, Kubernetes API requests from within your cluster's VPC will use * the private VPC endpoint. The default value for this parameter is false, which disables * private access for your Kubernetes API server. For more information, see Amazon EKS Cluster Endpoint * Access Control in the Amazon EKS User Guide . */ public Boolean endpointPrivateAccess() { return endpointPrivateAccess; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + Objects.hashCode(subnetIds()); hashCode = 31 * hashCode + Objects.hashCode(securityGroupIds()); hashCode = 31 * hashCode + Objects.hashCode(endpointPublicAccess()); hashCode = 31 * hashCode + Objects.hashCode(endpointPrivateAccess()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof VpcConfigRequest)) { return false; } VpcConfigRequest other = (VpcConfigRequest) obj; return Objects.equals(subnetIds(), other.subnetIds()) && Objects.equals(securityGroupIds(), other.securityGroupIds()) && Objects.equals(endpointPublicAccess(), other.endpointPublicAccess()) && Objects.equals(endpointPrivateAccess(), other.endpointPrivateAccess()); } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. */ @Override public String toString() { return ToString.builder("VpcConfigRequest").add("SubnetIds", subnetIds()).add("SecurityGroupIds", securityGroupIds()) .add("EndpointPublicAccess", endpointPublicAccess()).add("EndpointPrivateAccess", endpointPrivateAccess()) .build(); } public Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "subnetIds": return Optional.ofNullable(clazz.cast(subnetIds())); case "securityGroupIds": return Optional.ofNullable(clazz.cast(securityGroupIds())); case "endpointPublicAccess": return Optional.ofNullable(clazz.cast(endpointPublicAccess())); case "endpointPrivateAccess": return Optional.ofNullable(clazz.cast(endpointPrivateAccess())); default: return Optional.empty(); } } @Override public List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((VpcConfigRequest) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* Specify subnets for your Amazon EKS worker nodes. Amazon EKS creates cross-account elastic network interfaces * in these subnets to allow communication between your worker nodes and the Kubernetes control plane. *

* * @param subnetIds * Specify subnets for your Amazon EKS worker nodes. Amazon EKS creates cross-account elastic network * interfaces in these subnets to allow communication between your worker nodes and the Kubernetes * control plane. * @return Returns a reference to this object so that method calls can be chained together. */ Builder subnetIds(Collection subnetIds); /** *

* Specify subnets for your Amazon EKS worker nodes. Amazon EKS creates cross-account elastic network interfaces * in these subnets to allow communication between your worker nodes and the Kubernetes control plane. *

* * @param subnetIds * Specify subnets for your Amazon EKS worker nodes. Amazon EKS creates cross-account elastic network * interfaces in these subnets to allow communication between your worker nodes and the Kubernetes * control plane. * @return Returns a reference to this object so that method calls can be chained together. */ Builder subnetIds(String... subnetIds); /** *

* Specify one or more security groups for the cross-account elastic network interfaces that Amazon EKS creates * to use to allow communication between your worker nodes and the Kubernetes control plane. If you do not * specify a security group, the default security group for your VPC is used. *

* * @param securityGroupIds * Specify one or more security groups for the cross-account elastic network interfaces that Amazon EKS * creates to use to allow communication between your worker nodes and the Kubernetes control plane. If * you do not specify a security group, the default security group for your VPC is used. * @return Returns a reference to this object so that method calls can be chained together. */ Builder securityGroupIds(Collection securityGroupIds); /** *

* Specify one or more security groups for the cross-account elastic network interfaces that Amazon EKS creates * to use to allow communication between your worker nodes and the Kubernetes control plane. If you do not * specify a security group, the default security group for your VPC is used. *

* * @param securityGroupIds * Specify one or more security groups for the cross-account elastic network interfaces that Amazon EKS * creates to use to allow communication between your worker nodes and the Kubernetes control plane. If * you do not specify a security group, the default security group for your VPC is used. * @return Returns a reference to this object so that method calls can be chained together. */ Builder securityGroupIds(String... securityGroupIds); /** *

* Set this value to false to disable public access for your cluster's Kubernetes API server * endpoint. If you disable public access, your cluster's Kubernetes API server can only receive requests from * within the cluster VPC. The default value for this parameter is true, which enables public * access for your Kubernetes API server. For more information, see Amazon EKS Cluster Endpoint * Access Control in the Amazon EKS User Guide . *

* * @param endpointPublicAccess * Set this value to false to disable public access for your cluster's Kubernetes API server * endpoint. If you disable public access, your cluster's Kubernetes API server can only receive requests * from within the cluster VPC. The default value for this parameter is true, which enables * public access for your Kubernetes API server. For more information, see Amazon EKS Cluster * Endpoint Access Control in the Amazon EKS User Guide . * @return Returns a reference to this object so that method calls can be chained together. */ Builder endpointPublicAccess(Boolean endpointPublicAccess); /** *

* Set this value to true to enable private access for your cluster's Kubernetes API server * endpoint. If you enable private access, Kubernetes API requests from within your cluster's VPC will use the * private VPC endpoint. The default value for this parameter is false, which disables private * access for your Kubernetes API server. For more information, see Amazon EKS Cluster Endpoint * Access Control in the Amazon EKS User Guide . *

* * @param endpointPrivateAccess * Set this value to true to enable private access for your cluster's Kubernetes API server * endpoint. If you enable private access, Kubernetes API requests from within your cluster's VPC will * use the private VPC endpoint. The default value for this parameter is false, which * disables private access for your Kubernetes API server. For more information, see Amazon EKS Cluster * Endpoint Access Control in the Amazon EKS User Guide . * @return Returns a reference to this object so that method calls can be chained together. */ Builder endpointPrivateAccess(Boolean endpointPrivateAccess); } static final class BuilderImpl implements Builder { private List subnetIds = DefaultSdkAutoConstructList.getInstance(); private List securityGroupIds = DefaultSdkAutoConstructList.getInstance(); private Boolean endpointPublicAccess; private Boolean endpointPrivateAccess; private BuilderImpl() { } private BuilderImpl(VpcConfigRequest model) { subnetIds(model.subnetIds); securityGroupIds(model.securityGroupIds); endpointPublicAccess(model.endpointPublicAccess); endpointPrivateAccess(model.endpointPrivateAccess); } public final Collection getSubnetIds() { return subnetIds; } @Override public final Builder subnetIds(Collection subnetIds) { this.subnetIds = StringListCopier.copy(subnetIds); return this; } @Override @SafeVarargs public final Builder subnetIds(String... subnetIds) { subnetIds(Arrays.asList(subnetIds)); return this; } public final void setSubnetIds(Collection subnetIds) { this.subnetIds = StringListCopier.copy(subnetIds); } public final Collection getSecurityGroupIds() { return securityGroupIds; } @Override public final Builder securityGroupIds(Collection securityGroupIds) { this.securityGroupIds = StringListCopier.copy(securityGroupIds); return this; } @Override @SafeVarargs public final Builder securityGroupIds(String... securityGroupIds) { securityGroupIds(Arrays.asList(securityGroupIds)); return this; } public final void setSecurityGroupIds(Collection securityGroupIds) { this.securityGroupIds = StringListCopier.copy(securityGroupIds); } public final Boolean getEndpointPublicAccess() { return endpointPublicAccess; } @Override public final Builder endpointPublicAccess(Boolean endpointPublicAccess) { this.endpointPublicAccess = endpointPublicAccess; return this; } public final void setEndpointPublicAccess(Boolean endpointPublicAccess) { this.endpointPublicAccess = endpointPublicAccess; } public final Boolean getEndpointPrivateAccess() { return endpointPrivateAccess; } @Override public final Builder endpointPrivateAccess(Boolean endpointPrivateAccess) { this.endpointPrivateAccess = endpointPrivateAccess; return this; } public final void setEndpointPrivateAccess(Boolean endpointPrivateAccess) { this.endpointPrivateAccess = endpointPrivateAccess; } @Override public VpcConfigRequest build() { return new VpcConfigRequest(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy