@Generated public enum GkeConfigConnectivityType extends Enum<GkeConfigConnectivityType>
Set to `PRIVATE_NODE_PUBLIC_MASTER` for a private GKE cluster for the workspace. The GKE nodes will not have public IPs.
Set to `PUBLIC_NODE_PUBLIC_MASTER` for a public GKE cluster. The nodes of a public GKE cluster have public IP addresses.
| Enum Constant and Description |
|---|
PRIVATE_NODE_PUBLIC_MASTER |
PUBLIC_NODE_PUBLIC_MASTER |
| Modifier and Type | Method and Description |
|---|---|
static GkeConfigConnectivityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GkeConfigConnectivityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GkeConfigConnectivityType PRIVATE_NODE_PUBLIC_MASTER
public static final GkeConfigConnectivityType PUBLIC_NODE_PUBLIC_MASTER
public static GkeConfigConnectivityType[] values()
for (GkeConfigConnectivityType c : GkeConfigConnectivityType.values()) System.out.println(c);
public static GkeConfigConnectivityType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2024. All rights reserved.