Package com.google.cloud.compute.v1
Enum RouterNat.SourceSubnetworkIpRangesToNat
- java.lang.Object
-
- java.lang.Enum<RouterNat.SourceSubnetworkIpRangesToNat>
-
- com.google.cloud.compute.v1.RouterNat.SourceSubnetworkIpRangesToNat
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<RouterNat.SourceSubnetworkIpRangesToNat>
- Enclosing class:
- RouterNat
public static enum RouterNat.SourceSubnetworkIpRangesToNat extends Enum<RouterNat.SourceSubnetworkIpRangesToNat> implements com.google.protobuf.ProtocolMessageEnum
Specify the Nat option, which can take one of the following values: - ALL_SUBNETWORKS_ALL_IP_RANGES: All of the IP ranges in every Subnetwork are allowed to Nat. - ALL_SUBNETWORKS_ALL_PRIMARY_IP_RANGES: All of the primary IP ranges in every Subnetwork are allowed to Nat. - LIST_OF_SUBNETWORKS: A list of Subnetworks are allowed to Nat (specified in the field subnetwork below) The default is SUBNETWORK_IP_RANGE_TO_NAT_OPTION_UNSPECIFIED. Note that if this field contains ALL_SUBNETWORKS_ALL_IP_RANGES then there should not be any other Router.Nat section in any Router for this network in this region.
Protobuf enumgoogle.cloud.compute.v1.RouterNat.SourceSubnetworkIpRangesToNat
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL_SUBNETWORKS_ALL_IP_RANGES
All the IP ranges in every Subnetwork are allowed to Nat.ALL_SUBNETWORKS_ALL_PRIMARY_IP_RANGES
All the primary IP ranges in every Subnetwork are allowed to Nat.LIST_OF_SUBNETWORKS
A list of Subnetworks are allowed to Nat (specified in the field subnetwork below)UNDEFINED_SOURCE_SUBNETWORK_IP_RANGES_TO_NAT
A value indicating that the enum field is not set.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static int
ALL_SUBNETWORKS_ALL_IP_RANGES_VALUE
All the IP ranges in every Subnetwork are allowed to Nat.static int
ALL_SUBNETWORKS_ALL_PRIMARY_IP_RANGES_VALUE
All the primary IP ranges in every Subnetwork are allowed to Nat.static int
LIST_OF_SUBNETWORKS_VALUE
A list of Subnetworks are allowed to Nat (specified in the field subnetwork below)static int
UNDEFINED_SOURCE_SUBNETWORK_IP_RANGES_TO_NAT_VALUE
A value indicating that the enum field is not set.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static RouterNat.SourceSubnetworkIpRangesToNat
forNumber(int value)
static com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor()
com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType()
int
getNumber()
com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor()
static com.google.protobuf.Internal.EnumLiteMap<RouterNat.SourceSubnetworkIpRangesToNat>
internalGetValueMap()
static RouterNat.SourceSubnetworkIpRangesToNat
valueOf(int value)
Deprecated.static RouterNat.SourceSubnetworkIpRangesToNat
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static RouterNat.SourceSubnetworkIpRangesToNat
valueOf(String name)
Returns the enum constant of this type with the specified name.static RouterNat.SourceSubnetworkIpRangesToNat[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNDEFINED_SOURCE_SUBNETWORK_IP_RANGES_TO_NAT
public static final RouterNat.SourceSubnetworkIpRangesToNat UNDEFINED_SOURCE_SUBNETWORK_IP_RANGES_TO_NAT
A value indicating that the enum field is not set.
UNDEFINED_SOURCE_SUBNETWORK_IP_RANGES_TO_NAT = 0;
-
ALL_SUBNETWORKS_ALL_IP_RANGES
public static final RouterNat.SourceSubnetworkIpRangesToNat ALL_SUBNETWORKS_ALL_IP_RANGES
All the IP ranges in every Subnetwork are allowed to Nat.
ALL_SUBNETWORKS_ALL_IP_RANGES = 179964376;
-
ALL_SUBNETWORKS_ALL_PRIMARY_IP_RANGES
public static final RouterNat.SourceSubnetworkIpRangesToNat ALL_SUBNETWORKS_ALL_PRIMARY_IP_RANGES
All the primary IP ranges in every Subnetwork are allowed to Nat.
ALL_SUBNETWORKS_ALL_PRIMARY_IP_RANGES = 185573819;
-
LIST_OF_SUBNETWORKS
public static final RouterNat.SourceSubnetworkIpRangesToNat LIST_OF_SUBNETWORKS
A list of Subnetworks are allowed to Nat (specified in the field subnetwork below)
LIST_OF_SUBNETWORKS = 517542270;
-
UNRECOGNIZED
public static final RouterNat.SourceSubnetworkIpRangesToNat UNRECOGNIZED
-
-
Field Detail
-
UNDEFINED_SOURCE_SUBNETWORK_IP_RANGES_TO_NAT_VALUE
public static final int UNDEFINED_SOURCE_SUBNETWORK_IP_RANGES_TO_NAT_VALUE
A value indicating that the enum field is not set.
UNDEFINED_SOURCE_SUBNETWORK_IP_RANGES_TO_NAT = 0;
- See Also:
- Constant Field Values
-
ALL_SUBNETWORKS_ALL_IP_RANGES_VALUE
public static final int ALL_SUBNETWORKS_ALL_IP_RANGES_VALUE
All the IP ranges in every Subnetwork are allowed to Nat.
ALL_SUBNETWORKS_ALL_IP_RANGES = 179964376;
- See Also:
- Constant Field Values
-
ALL_SUBNETWORKS_ALL_PRIMARY_IP_RANGES_VALUE
public static final int ALL_SUBNETWORKS_ALL_PRIMARY_IP_RANGES_VALUE
All the primary IP ranges in every Subnetwork are allowed to Nat.
ALL_SUBNETWORKS_ALL_PRIMARY_IP_RANGES = 185573819;
- See Also:
- Constant Field Values
-
LIST_OF_SUBNETWORKS_VALUE
public static final int LIST_OF_SUBNETWORKS_VALUE
A list of Subnetworks are allowed to Nat (specified in the field subnetwork below)
LIST_OF_SUBNETWORKS = 517542270;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static RouterNat.SourceSubnetworkIpRangesToNat[] 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 (RouterNat.SourceSubnetworkIpRangesToNat c : RouterNat.SourceSubnetworkIpRangesToNat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RouterNat.SourceSubnetworkIpRangesToNat valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getNumber
public final int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
- Specified by:
getNumber
in interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static RouterNat.SourceSubnetworkIpRangesToNat valueOf(int value)
Deprecated.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:
value
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
forNumber
public static RouterNat.SourceSubnetworkIpRangesToNat forNumber(int value)
- Parameters:
value
- The numeric wire value of the corresponding enum entry.- Returns:
- The enum associated with the given numeric wire value.
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<RouterNat.SourceSubnetworkIpRangesToNat> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptor
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForType
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static RouterNat.SourceSubnetworkIpRangesToNat valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
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:
desc
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-