index property

  1. @TagNumber.new(5)
int get index

Output only. A zero-based index to this disk, where 0 is reserved for the boot disk. If you have many disks attached to an instance, each disk would have a unique index number.

Implementation

@$pb.TagNumber(5)
$core.int get index => $_getIZ(4);
  1. @TagNumber.new(5)
set index (int v)

Implementation

@$pb.TagNumber(5)
set index($core.int v) {
  $_setSignedInt32(4, v);
}