mode property

String? mode
getter/setter pair

The mode in which to attach this disk.

If not specified, the default is READ_WRITE mode. Only applicable to data_disks. Possible string values are:

  • "DISK_MODE_UNSPECIFIED" : The disk mode is not known/set.
  • "READ_WRITE" : Attaches the disk in read-write mode. Only one TPU node can attach a disk in read-write mode at a time.
  • "READ_ONLY" : Attaches the disk in read-only mode. Multiple TPU nodes can attach a disk in read-only mode at a time.

Implementation

core.String? mode;