Skip to content

Commit f37604f

Browse files
1 parent 9ac579b commit f37604f

2 files changed

Lines changed: 11 additions & 3 deletions

File tree

src/HypercomputeCluster/BootDisk.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
class BootDisk extends \Google\Model
2121
{
2222
/**
23-
* Required. Immutable. Size of the disk in gigabytes. Must be at least 10GB.
23+
* Required. Immutable. Size of the disk in gigabytes. Must be at least 40GB.
2424
*
2525
* @var string
2626
*/
@@ -35,7 +35,7 @@ class BootDisk extends \Google\Model
3535
public $type;
3636

3737
/**
38-
* Required. Immutable. Size of the disk in gigabytes. Must be at least 10GB.
38+
* Required. Immutable. Size of the disk in gigabytes. Must be at least 40GB.
3939
*
4040
* @param string $sizeGb
4141
*/

src/HypercomputeCluster/GcsAutoclassConfig.php

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@ class GcsAutoclassConfig extends \Google\Model
2323
* Unspecified terminal storage class
2424
*/
2525
public const TERMINAL_STORAGE_CLASS_TERMINAL_STORAGE_CLASS_UNSPECIFIED = 'TERMINAL_STORAGE_CLASS_UNSPECIFIED';
26+
/**
27+
* Nearline terminal storage class
28+
*/
29+
public const TERMINAL_STORAGE_CLASS_NEARLINE = 'NEARLINE';
30+
/**
31+
* Archive terminal storage class
32+
*/
33+
public const TERMINAL_STORAGE_CLASS_ARCHIVE = 'ARCHIVE';
2634
/**
2735
* Required. Enables Auto-class feature.
2836
*
@@ -55,7 +63,7 @@ public function getEnabled()
5563
/**
5664
* Optional. Terminal storage class of the autoclass bucket
5765
*
58-
* Accepted values: TERMINAL_STORAGE_CLASS_UNSPECIFIED
66+
* Accepted values: TERMINAL_STORAGE_CLASS_UNSPECIFIED, NEARLINE, ARCHIVE
5967
*
6068
* @param self::TERMINAL_STORAGE_CLASS_* $terminalStorageClass
6169
*/

0 commit comments

Comments
 (0)