Enum VirtualNetworkGatewaySkuName
- java.lang.Object
-
- java.lang.Enum<VirtualNetworkGatewaySkuName>
-
- com.pulumi.azurenative.network.enums.VirtualNetworkGatewaySkuName
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<VirtualNetworkGatewaySkuName>
public enum VirtualNetworkGatewaySkuName extends java.lang.Enum<VirtualNetworkGatewaySkuName>
Gateway SKU name.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getValue()
java.lang.String
toString()
static VirtualNetworkGatewaySkuName
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static VirtualNetworkGatewaySkuName[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Basic
public static final VirtualNetworkGatewaySkuName Basic
-
HighPerformance
public static final VirtualNetworkGatewaySkuName HighPerformance
-
Standard
public static final VirtualNetworkGatewaySkuName Standard
-
UltraPerformance
public static final VirtualNetworkGatewaySkuName UltraPerformance
-
VpnGw1
public static final VirtualNetworkGatewaySkuName VpnGw1
-
VpnGw2
public static final VirtualNetworkGatewaySkuName VpnGw2
-
VpnGw3
public static final VirtualNetworkGatewaySkuName VpnGw3
-
VpnGw4
public static final VirtualNetworkGatewaySkuName VpnGw4
-
VpnGw5
public static final VirtualNetworkGatewaySkuName VpnGw5
-
VpnGw1AZ
public static final VirtualNetworkGatewaySkuName VpnGw1AZ
-
VpnGw2AZ
public static final VirtualNetworkGatewaySkuName VpnGw2AZ
-
VpnGw3AZ
public static final VirtualNetworkGatewaySkuName VpnGw3AZ
-
VpnGw4AZ
public static final VirtualNetworkGatewaySkuName VpnGw4AZ
-
VpnGw5AZ
public static final VirtualNetworkGatewaySkuName VpnGw5AZ
-
ErGw1AZ
public static final VirtualNetworkGatewaySkuName ErGw1AZ
-
ErGw2AZ
public static final VirtualNetworkGatewaySkuName ErGw2AZ
-
ErGw3AZ
public static final VirtualNetworkGatewaySkuName ErGw3AZ
-
-
Method Detail
-
values
public static VirtualNetworkGatewaySkuName[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (VirtualNetworkGatewaySkuName c : VirtualNetworkGatewaySkuName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VirtualNetworkGatewaySkuName valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getValue
public java.lang.String getValue()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<VirtualNetworkGatewaySkuName>
-
-