Enum EndpointStateConfigUpdate

  • All Implemented Interfaces:
    Serializable, Comparable<EndpointStateConfigUpdate>

    @Generated
    public enum EndpointStateConfigUpdate
    extends Enum<EndpointStateConfigUpdate>
    The state of an endpoint's config update. This informs the user if the pending_config is in progress, if the update failed, or if there is no update in progress. Note that if the endpoint's config_update state value is IN_PROGRESS, another update can not be made until the update completes or fails."
    • Method Detail

      • values

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

        public static EndpointStateConfigUpdate 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