public static enum LaunchOptions.RemoteDataVolumeType extends Enum<LaunchOptions.RemoteDataVolumeType>
Emulation type for volume.
ISCSI
- ISCSI attached block storage device.SCSI
- Emulated SCSI disk.IDE
- Emulated IDE disk.VFIO
- Direct attached Virtual Function storage. This is the default option for local data
volumes on Oracle-provided images.PARAVIRTUALIZED
- Paravirtualized disk. This is the default for boot volumes and remote block
storage volumes on Oracle-provided images.Enum Constant and Description |
---|
Ide |
Iscsi |
Paravirtualized |
Scsi |
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this
version of the SDK.
|
Vfio |
Modifier and Type | Method and Description |
---|---|
static LaunchOptions.RemoteDataVolumeType |
create(String key) |
String |
getValue() |
static LaunchOptions.RemoteDataVolumeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LaunchOptions.RemoteDataVolumeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LaunchOptions.RemoteDataVolumeType Iscsi
public static final LaunchOptions.RemoteDataVolumeType Scsi
public static final LaunchOptions.RemoteDataVolumeType Ide
public static final LaunchOptions.RemoteDataVolumeType Vfio
public static final LaunchOptions.RemoteDataVolumeType Paravirtualized
public static final LaunchOptions.RemoteDataVolumeType UnknownEnumValue
public static LaunchOptions.RemoteDataVolumeType[] values()
for (LaunchOptions.RemoteDataVolumeType c : LaunchOptions.RemoteDataVolumeType.values()) System.out.println(c);
public static LaunchOptions.RemoteDataVolumeType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getValue()
public static LaunchOptions.RemoteDataVolumeType create(String key)
Copyright © 2016–2021. All rights reserved.