Workstation Config Persistent Directory Gce Pd Args
data class WorkstationConfigPersistentDirectoryGcePdArgs(val diskType: Output<String>? = null, val fsType: Output<String>? = null, val reclaimPolicy: Output<String>? = null, val sizeGb: Output<Int>? = null, val sourceSnapshot: Output<String>? = null) : ConvertibleToJava<WorkstationConfigPersistentDirectoryGcePdArgs>
Constructors
Properties
Link copied to clipboard
Whether the persistent disk should be deleted when the workstation is deleted. Valid values are DELETE
and RETAIN
. Defaults to DELETE
. Possible values are: DELETE
, RETAIN
.
Link copied to clipboard
The GB capacity of a persistent home directory for each workstation created with this configuration. Must be empty if sourceSnapshot
is set. Valid values are 10
, 50
, 100
, 200
, 500
, or 1000
. Defaults to 200
. If less than 200
GB, the diskType
must be pd-balanced
or pd-ssd
.
Link copied to clipboard
Name of the snapshot to use as the source for the disk. This can be the snapshot's self_link
, id
, or a string in the format of projects/{project}/global/snapshots/{snapshot}
. If set, sizeGb
and fsType
must be empty. Can only be updated if it has an existing value.