boot property

  1. @TagNumber(2)
bool boot

Optional. Output only. Indicates that this is a boot disk. The virtual machine will use the first partition of the disk for its root filesystem.

Implementation

@$pb.TagNumber(2)
$core.bool get boot => $_getBF(1);
  1. @TagNumber(2)
void boot=(bool v)

Implementation

@$pb.TagNumber(2)
set boot($core.bool v) { $_setBool(1, v); }