diskSizeGb property

  1. @TagNumber(6)
Int64 get diskSizeGb

Requested disk size for the VM that runs the build. Note that this is NOT "disk free"; some of the space will be used by the operating system and build utilities. Also note that this is the minimum disk size that will be allocated for the build -- the build may run with a larger disk than requested. At present, the maximum disk size is 1000GB; builds that request more than the maximum are rejected with an error.

Implementation

@$pb.TagNumber(6)
$fixnum.Int64 get diskSizeGb => $_getI64(5);
  1. @TagNumber(6)
set diskSizeGb (Int64 v)

Implementation

@$pb.TagNumber(6)
set diskSizeGb($fixnum.Int64 v) { $_setInt64(5, v); }