deviceName property

  1. @TagNumber(3)
String deviceName

Device name that the guest operating system will see. It is used by Runnable.volumes field to mount disks. So please specify the device_name if you want Batch to help mount the disk, and it should match the device_name field in volumes.

Implementation

@$pb.TagNumber(3)
$core.String get deviceName => $_getSZ(2);
  1. @TagNumber(3)
void deviceName=(String v)

Implementation

@$pb.TagNumber(3)
set deviceName($core.String v) { $_setString(2, v); }