Enum VirtualInterfaceState
- All Implemented Interfaces:
Serializable
,Comparable<VirtualInterfaceState>
,java.lang.constant.Constable
State of the virtual interface.
-
Confirming: The creation of the virtual interface is pending confirmation from the virtual interface owner. If the owner of the virtual interface is different from the owner of the connection on which it is provisioned, then the virtual interface will remain in this state until it is confirmed by the virtual interface owner.
-
Verifying: This state only applies to public virtual interfaces. Each public virtual interface needs validation before the virtual interface can be created.
-
Pending: A virtual interface is in this state from the time that it is created until the virtual interface is ready to forward traffic.
-
Available: A virtual interface that is able to forward traffic.
-
Down: A virtual interface that is BGP down.
-
Deleting: A virtual interface is in this state immediately after calling DeleteVirtualInterface until it can no longer forward traffic.
-
Deleted: A virtual interface that cannot forward traffic.
-
Rejected: The virtual interface owner has declined creation of the virtual interface. If a virtual interface in the 'Confirming' state is deleted by the virtual interface owner, the virtual interface will enter the 'Rejected' state.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic VirtualInterfaceState
Use this in place of valueOf.toString()
static VirtualInterfaceState
Returns the enum constant of this type with the specified name.static VirtualInterfaceState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
Confirming
-
Verifying
-
Pending
-
Available
-
Deleting
-
Deleted
-
Rejected
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
toString
- Overrides:
toString
in classEnum<VirtualInterfaceState>
-
fromValue
Use this in place of valueOf.- Parameters:
value
- real value- Returns:
- VirtualInterfaceState corresponding to the value
-