Package com.google.cloud.compute.v1
Enum InterconnectRemoteLocationConstraints.PortPairRemoteLocation
- java.lang.Object
-
- java.lang.Enum<InterconnectRemoteLocationConstraints.PortPairRemoteLocation>
-
- com.google.cloud.compute.v1.InterconnectRemoteLocationConstraints.PortPairRemoteLocation
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<InterconnectRemoteLocationConstraints.PortPairRemoteLocation>
- Enclosing class:
- InterconnectRemoteLocationConstraints
public static enum InterconnectRemoteLocationConstraints.PortPairRemoteLocation extends Enum<InterconnectRemoteLocationConstraints.PortPairRemoteLocation> implements com.google.protobuf.ProtocolMessageEnum
[Output Only] Port pair remote location constraints, which can take one of the following values: PORT_PAIR_UNCONSTRAINED_REMOTE_LOCATION, PORT_PAIR_MATCHING_REMOTE_LOCATION. GCP's API refers only to individual ports, but the UI uses this field when ordering a pair of ports, to prevent users from accidentally ordering something that is incompatible with their cloud provider. Specifically, when ordering a redundant pair of Cross-Cloud Interconnect ports, and one of them uses a remote location with portPairMatchingRemoteLocation set to matching, the UI requires that both ports use the same remote location.
Protobuf enumgoogle.cloud.compute.v1.InterconnectRemoteLocationConstraints.PortPairRemoteLocation
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PORT_PAIR_MATCHING_REMOTE_LOCATION
If PORT_PAIR_MATCHING_REMOTE_LOCATION, the remote cloud provider allocates ports in pairs, and the user should choose the same remote location for both ports.PORT_PAIR_UNCONSTRAINED_REMOTE_LOCATION
If PORT_PAIR_UNCONSTRAINED_REMOTE_LOCATION, a user may opt to provision a redundant pair of Cross-Cloud Interconnects using two different remote locations in the same city.UNDEFINED_PORT_PAIR_REMOTE_LOCATION
A value indicating that the enum field is not set.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static int
PORT_PAIR_MATCHING_REMOTE_LOCATION_VALUE
If PORT_PAIR_MATCHING_REMOTE_LOCATION, the remote cloud provider allocates ports in pairs, and the user should choose the same remote location for both ports.static int
PORT_PAIR_UNCONSTRAINED_REMOTE_LOCATION_VALUE
If PORT_PAIR_UNCONSTRAINED_REMOTE_LOCATION, a user may opt to provision a redundant pair of Cross-Cloud Interconnects using two different remote locations in the same city.static int
UNDEFINED_PORT_PAIR_REMOTE_LOCATION_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 InterconnectRemoteLocationConstraints.PortPairRemoteLocation
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<InterconnectRemoteLocationConstraints.PortPairRemoteLocation>
internalGetValueMap()
static InterconnectRemoteLocationConstraints.PortPairRemoteLocation
valueOf(int value)
Deprecated.static InterconnectRemoteLocationConstraints.PortPairRemoteLocation
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static InterconnectRemoteLocationConstraints.PortPairRemoteLocation
valueOf(String name)
Returns the enum constant of this type with the specified name.static InterconnectRemoteLocationConstraints.PortPairRemoteLocation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNDEFINED_PORT_PAIR_REMOTE_LOCATION
public static final InterconnectRemoteLocationConstraints.PortPairRemoteLocation UNDEFINED_PORT_PAIR_REMOTE_LOCATION
A value indicating that the enum field is not set.
UNDEFINED_PORT_PAIR_REMOTE_LOCATION = 0;
-
PORT_PAIR_MATCHING_REMOTE_LOCATION
public static final InterconnectRemoteLocationConstraints.PortPairRemoteLocation PORT_PAIR_MATCHING_REMOTE_LOCATION
If PORT_PAIR_MATCHING_REMOTE_LOCATION, the remote cloud provider allocates ports in pairs, and the user should choose the same remote location for both ports.
PORT_PAIR_MATCHING_REMOTE_LOCATION = 207291859;
-
PORT_PAIR_UNCONSTRAINED_REMOTE_LOCATION
public static final InterconnectRemoteLocationConstraints.PortPairRemoteLocation PORT_PAIR_UNCONSTRAINED_REMOTE_LOCATION
If PORT_PAIR_UNCONSTRAINED_REMOTE_LOCATION, a user may opt to provision a redundant pair of Cross-Cloud Interconnects using two different remote locations in the same city.
PORT_PAIR_UNCONSTRAINED_REMOTE_LOCATION = 60609829;
-
UNRECOGNIZED
public static final InterconnectRemoteLocationConstraints.PortPairRemoteLocation UNRECOGNIZED
-
-
Field Detail
-
UNDEFINED_PORT_PAIR_REMOTE_LOCATION_VALUE
public static final int UNDEFINED_PORT_PAIR_REMOTE_LOCATION_VALUE
A value indicating that the enum field is not set.
UNDEFINED_PORT_PAIR_REMOTE_LOCATION = 0;
- See Also:
- Constant Field Values
-
PORT_PAIR_MATCHING_REMOTE_LOCATION_VALUE
public static final int PORT_PAIR_MATCHING_REMOTE_LOCATION_VALUE
If PORT_PAIR_MATCHING_REMOTE_LOCATION, the remote cloud provider allocates ports in pairs, and the user should choose the same remote location for both ports.
PORT_PAIR_MATCHING_REMOTE_LOCATION = 207291859;
- See Also:
- Constant Field Values
-
PORT_PAIR_UNCONSTRAINED_REMOTE_LOCATION_VALUE
public static final int PORT_PAIR_UNCONSTRAINED_REMOTE_LOCATION_VALUE
If PORT_PAIR_UNCONSTRAINED_REMOTE_LOCATION, a user may opt to provision a redundant pair of Cross-Cloud Interconnects using two different remote locations in the same city.
PORT_PAIR_UNCONSTRAINED_REMOTE_LOCATION = 60609829;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static InterconnectRemoteLocationConstraints.PortPairRemoteLocation[] 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 (InterconnectRemoteLocationConstraints.PortPairRemoteLocation c : InterconnectRemoteLocationConstraints.PortPairRemoteLocation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InterconnectRemoteLocationConstraints.PortPairRemoteLocation 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 InterconnectRemoteLocationConstraints.PortPairRemoteLocation 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 InterconnectRemoteLocationConstraints.PortPairRemoteLocation 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<InterconnectRemoteLocationConstraints.PortPairRemoteLocation> 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 InterconnectRemoteLocationConstraints.PortPairRemoteLocation 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
-
-