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
2 changes: 1 addition & 1 deletion src/HypercomputeCluster/Cluster.php
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public function getName()
return $this->name;
}
/**
* Optional. Network resources available to the cluster. Must contain at most
* Optional. Network resources available to the cluster. Must contain exactly
* one value. Keys specify the ID of the network resource by which it can be
* referenced elsewhere, and must conform to
* [RFC-1034](https://datatracker.ietf.org/doc/html/rfc1034) (lower-case,
Expand Down
2 changes: 1 addition & 1 deletion src/HypercomputeCluster/NetworkResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function getConfig()
return $this->config;
}
/**
* Reference to a network in Google Compute Engine.
* Output only. Reference to a network in Google Compute Engine.
*
* @param NetworkReference $network
*/
Expand Down
4 changes: 2 additions & 2 deletions src/HypercomputeCluster/SlurmNodeSet.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class SlurmNodeSet extends \Google\Collection
{
protected $collection_key = 'storageConfigs';
/**
* Optional. ID of the compute resource on which this nodeset will run. Must
* Required. ID of the compute resource on which this nodeset will run. Must
* match a key in the cluster's compute_resources.
*
* @var string
Expand Down Expand Up @@ -60,7 +60,7 @@ class SlurmNodeSet extends \Google\Collection
protected $storageConfigsDataType = 'array';

/**
* Optional. ID of the compute resource on which this nodeset will run. Must
* Required. ID of the compute resource on which this nodeset will run. Must
* match a key in the cluster's compute_resources.
*
* @param string $computeId
Expand Down
12 changes: 6 additions & 6 deletions src/HypercomputeCluster/StorageResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ class StorageResource extends \Google\Model
protected $lustreDataType = '';

/**
* Reference to a Google Cloud Storage bucket. Populated if and only if the
* storage resource was configured to use Google Cloud Storage.
* Output only. Reference to a Google Cloud Storage bucket. Populated if and
* only if the storage resource was configured to use Google Cloud Storage.
*
* @param BucketReference $bucket
*/
Expand Down Expand Up @@ -66,8 +66,8 @@ public function getConfig()
return $this->config;
}
/**
* Reference to a Filestore instance. Populated if and only if the storage
* resource was configured to use Filestore.
* Output only. Reference to a Filestore instance. Populated if and only if
* the storage resource was configured to use Filestore.
*
* @param FilestoreReference $filestore
*/
Expand All @@ -83,8 +83,8 @@ public function getFilestore()
return $this->filestore;
}
/**
* Reference to a Managed Lustre instance. Populated if and only if the
* storage resource was configured to use Managed Lustre.
* Output only. Reference to a Managed Lustre instance. Populated if and only
* if the storage resource was configured to use Managed Lustre.
*
* @param LustreReference $lustre
*/
Expand Down
Loading