Class GceRegionalPersistentDisk
A Persistent Directory backed by a Compute Engine regional persistent disk. The persistent_directories field is
repeated, but it may contain only one entry. It creates a persistent
disk that mounts to the workstation VM at /home
when the session starts and detaches when the session ends. If this field is empty, workstations created with
this configuration do not have a persistent home directory.
Implements
Inherited Members
Namespace: Google.Apis.CloudWorkstations.v1.Data
Assembly: Google.Apis.CloudWorkstations.v1.dll
Syntax
public class GceRegionalPersistentDisk : IDirectResponseSchema
Properties
ArchiveTimeout
Optional. Number of seconds to wait after initially creating or subsequently shutting down the workstation
before converting its disk into a snapshot. This generally saves costs at the expense of greater startup
time on next workstation start, as the service will need to create a disk from the archival snapshot. A
value of "0s" indicates that the disk will never be archived.
Declaration
[JsonProperty("archiveTimeout")]
public virtual object ArchiveTimeout { get; set; }
Property Value
| Type | Description |
|---|---|
| object |
DiskType
Optional. The type of the persistent disk for the
home directory. Defaults to "pd-standard".
Declaration
[JsonProperty("diskType")]
public virtual string DiskType { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
FsType
Optional. 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".
Declaration
[JsonProperty("fsType")]
public virtual string FsType { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
MaxSizeGb
Optional. Maximum size in GB to which this persistent directory can be resized. Defaults to 0, which
indicates no maximum limit is enforced by this configuration. Resizing is still subject to the quotas and
limits of the underlying disk type.
Declaration
[JsonProperty("maxSizeGb")]
public virtual int? MaxSizeGb { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
ReclaimPolicy
Optional. Whether the persistent disk should be deleted when the workstation is deleted. Valid values are
DELETE and RETAIN. Defaults to DELETE.
Declaration
[JsonProperty("reclaimPolicy")]
public virtual string ReclaimPolicy { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
SizeGb
Optional. The GB capacity of a persistent home directory for each workstation created with this
configuration. Must be empty if source_snapshot is set. Valid values are 10, 50, 100, 200, 500, or
1000. Defaults to 200. If less than 200 GB, the disk_type must be "pd-balanced" or "pd-ssd".
Declaration
[JsonProperty("sizeGb")]
public virtual int? SizeGb { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
SourceSnapshot
Optional. Name of the snapshot to use as the source for the disk. If set, size_gb and fs_type must be empty. Must be formatted as ext4 file system with no partitions.
Declaration
[JsonProperty("sourceSnapshot")]
public virtual string SourceSnapshot { get; set; }
Property Value
| Type | Description |
|---|---|
| string |