boot property

  1. @TagNumber.new(2)
bool get 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.new(2)
set boot (bool v)

Implementation

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