Enum UpdateLaunchOptions.BootVolumeType

  • All Implemented Interfaces:
    BmcEnum, Serializable, Comparable<UpdateLaunchOptions.BootVolumeType>
    Enclosing class:
    UpdateLaunchOptions

    public static enum UpdateLaunchOptions.BootVolumeType
    extends Enum<UpdateLaunchOptions.BootVolumeType>
    implements BmcEnum
    Emulation type for the boot volume.
    • ISCSI - ISCSI attached block storage device. * PARAVIRTUALIZED - Paravirtualized disk. This is the default for boot volumes and remote block storage volumes on platform images.

    Before you change the boot volume attachment type, detach all block volumes and VNICs except for the boot volume and the primary VNIC.

    If the instance is running when you change the boot volume attachment type, it will be rebooted.

    *Note:** Some instances might not function properly if you change the boot volume attachment type. After the instance reboots and is running, connect to it. If the connection fails or the OS doesn't behave as expected, the changes are not supported. Revert the instance to the original boot volume attachment type.

    • Method Detail

      • values

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

        public static UpdateLaunchOptions.BootVolumeType 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