Enum VirtualInterfaceState

  • All Implemented Interfaces:
    Serializable, Comparable<VirtualInterfaceState>

    public enum VirtualInterfaceState
    extends Enum<VirtualInterfaceState>

    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.

    • Method Detail

      • values

        public static VirtualInterfaceState[] 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 (VirtualInterfaceState c : VirtualInterfaceState.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static VirtualInterfaceState 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 name
        NullPointerException - if the argument is null
      • fromValue

        public static VirtualInterfaceState fromValue​(String value)
        Use this in place of valueOf.
        Parameters:
        value - real value
        Returns:
        VirtualInterfaceState corresponding to the value