public static enum AttachedDisk.AttachedDiskConfiguration.InterfaceType extends Enum<AttachedDisk.AttachedDiskConfiguration.InterfaceType>
SCSI
or
NVME
. Persistent disks must always use SCSI
. Scratch SSDs can use either
NVME
or SCSI
.Modifier and Type | Method and Description |
---|---|
static AttachedDisk.AttachedDiskConfiguration.InterfaceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttachedDisk.AttachedDiskConfiguration.InterfaceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttachedDisk.AttachedDiskConfiguration.InterfaceType SCSI
public static final AttachedDisk.AttachedDiskConfiguration.InterfaceType NVME
public static AttachedDisk.AttachedDiskConfiguration.InterfaceType[] values()
for (AttachedDisk.AttachedDiskConfiguration.InterfaceType c : AttachedDisk.AttachedDiskConfiguration.InterfaceType.values()) System.out.println(c);
public static AttachedDisk.AttachedDiskConfiguration.InterfaceType 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 nullCopyright © 2019 Google LLC. All rights reserved.