GceRegionalPersistentDiskResponse

data class GceRegionalPersistentDiskResponse(val diskType: String, val fsType: String, val reclaimPolicy: String, val sizeGb: Int, val sourceSnapshot: String)

A PersistentDirectory backed by a Compute Engine regional persistent disk.

Constructors

Link copied to clipboard
fun GceRegionalPersistentDiskResponse(diskType: String, fsType: String, reclaimPolicy: String, sizeGb: Int, sourceSnapshot: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Type of the disk to use. Defaults to pd-standard.

Link copied to clipboard

Type of file system that the disk should be formatted with. The workstation image must support this file system type. Must be empty if source_snapshot is set. Defaults to ext4.

Link copied to clipboard

What should happen to the disk after the workstation is deleted. Defaults to DELETE.

Link copied to clipboard
val sizeGb: Int

Size of the disk in GB. Must be empty if source_snapshot is set. Defaults to 200.

Link copied to clipboard

Name of the snapshot to use as the source for the disk. If set, size_gb and fs_type must be empty.