diskInterface property

  1. @TagNumber.new(6)
String get diskInterface

Local SSDs are available through both "SCSI" and "NVMe" interfaces. If not indicated, "NVMe" will be the default one for local ssds. We only support "SCSI" for persistent disks now.

Implementation

@$pb.TagNumber(6)
$core.String get diskInterface => $_getSZ(4);
  1. @TagNumber.new(6)
set diskInterface (String v)

Implementation

@$pb.TagNumber(6)
set diskInterface($core.String v) {
  $_setString(4, v);
}