Package com.oracle.bmc.core.model
Enum UpdateLaunchOptions.BootVolumeType
- java.lang.Object
-
- java.lang.Enum<UpdateLaunchOptions.BootVolumeType>
-
- com.oracle.bmc.core.model.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.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Iscsi
Paravirtualized
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UpdateLaunchOptions.BootVolumeType
create(String key)
String
getValue()
static UpdateLaunchOptions.BootVolumeType
valueOf(String name)
Returns the enum constant of this type with the specified name.static UpdateLaunchOptions.BootVolumeType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Iscsi
public static final UpdateLaunchOptions.BootVolumeType Iscsi
-
Paravirtualized
public static final UpdateLaunchOptions.BootVolumeType Paravirtualized
-
-
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 nameNullPointerException
- if the argument is null
-
create
public static UpdateLaunchOptions.BootVolumeType create(String key)
-
-