Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ class GceHyperdiskBalancedHighAvailability extends \Google\Model
public $archiveTimeout;
/**
* Optional. Maximum size in GB to which this persistent directory can be
* resized. Defaults to unlimited if not set.
* 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.
*
* @var int
*/
Expand Down Expand Up @@ -99,7 +101,9 @@ public function getArchiveTimeout()
}
/**
* Optional. Maximum size in GB to which this persistent directory can be
* resized. Defaults to unlimited if not set.
* 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.
*
* @param int $maxSizeGb
*/
Expand Down
8 changes: 6 additions & 2 deletions src/CloudWorkstations/GceRegionalPersistentDisk.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ class GceRegionalPersistentDisk extends \Google\Model
public $fsType;
/**
* Optional. Maximum size in GB to which this persistent directory can be
* resized. Defaults to unlimited if not set.
* 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.
*
* @var int
*/
Expand Down Expand Up @@ -152,7 +154,9 @@ public function getFsType()
}
/**
* Optional. Maximum size in GB to which this persistent directory can be
* resized. Defaults to unlimited if not set.
* 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.
*
* @param int $maxSizeGb
*/
Expand Down
24 changes: 12 additions & 12 deletions src/CloudWorkstations/WorkstationConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -170,12 +170,12 @@ class WorkstationConfig extends \Google\Collection
*/
public $replicaZones;
/**
* Optional. Number of seconds that a workstation can run until it is
* automatically shut down. We recommend that workstations be shut down daily
* to reduce costs and so that security updates can be applied upon restart.
* The idle_timeout and running_timeout fields are independent of each other.
* Note that the running_timeout field shuts down VMs after the specified
* time, regardless of whether or not the VMs are idle. Provide duration
* Optional. Number of seconds to wait before automatically stopping a
* workstation. We recommend that workstations be stopped daily so that
* security updates can be applied upon restart. The idle_timeout and
* running_timeout fields are independent of each other. Note that the
* running_timeout field stops workstations after the specified time,
* regardless of whether or not the workstations are idle. Provide duration
* terminated by `s` for seconds—for example, `"54000s"` (15 hours). Defaults
* to `"43200s"` (12 hours). A value of `"0s"` indicates that workstations
* using this configuration should never time out. If encryption_key is set,
Expand Down Expand Up @@ -633,12 +633,12 @@ public function getReplicaZones()
return $this->replicaZones;
}
/**
* Optional. Number of seconds that a workstation can run until it is
* automatically shut down. We recommend that workstations be shut down daily
* to reduce costs and so that security updates can be applied upon restart.
* The idle_timeout and running_timeout fields are independent of each other.
* Note that the running_timeout field shuts down VMs after the specified
* time, regardless of whether or not the VMs are idle. Provide duration
* Optional. Number of seconds to wait before automatically stopping a
* workstation. We recommend that workstations be stopped daily so that
* security updates can be applied upon restart. The idle_timeout and
* running_timeout fields are independent of each other. Note that the
* running_timeout field stops workstations after the specified time,
* regardless of whether or not the workstations are idle. Provide duration
* terminated by `s` for seconds—for example, `"54000s"` (15 hours). Defaults
* to `"43200s"` (12 hours). A value of `"0s"` indicates that workstations
* using this configuration should never time out. If encryption_key is set,
Expand Down
Loading