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
15 changes: 14 additions & 1 deletion src/CloudRedis/Backup.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,18 @@ class Backup extends \Google\Collection
* Redis standard small node_type.
*/
public const NODE_TYPE_REDIS_STANDARD_SMALL = 'REDIS_STANDARD_SMALL';
/**
* Redis highcpu medium node_type.
*/
public const NODE_TYPE_REDIS_HIGHCPU_MEDIUM = 'REDIS_HIGHCPU_MEDIUM';
/**
* Redis standard large node_type.
*/
public const NODE_TYPE_REDIS_STANDARD_LARGE = 'REDIS_STANDARD_LARGE';
/**
* Redis highmem 2xlarge node_type.
*/
public const NODE_TYPE_REDIS_HIGHMEM_2XLARGE = 'REDIS_HIGHMEM_2XLARGE';
/**
* The default value, not set.
*/
Expand Down Expand Up @@ -312,7 +324,8 @@ public function getName()
* Output only. Node type of the cluster.
*
* Accepted values: NODE_TYPE_UNSPECIFIED, REDIS_SHARED_CORE_NANO,
* REDIS_HIGHMEM_MEDIUM, REDIS_HIGHMEM_XLARGE, REDIS_STANDARD_SMALL
* REDIS_HIGHMEM_MEDIUM, REDIS_HIGHMEM_XLARGE, REDIS_STANDARD_SMALL,
* REDIS_HIGHCPU_MEDIUM, REDIS_STANDARD_LARGE, REDIS_HIGHMEM_2XLARGE
*
* @param self::NODE_TYPE_* $nodeType
*/
Expand Down
15 changes: 14 additions & 1 deletion src/CloudRedis/Cluster.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,18 @@ class Cluster extends \Google\Collection
* Redis standard small node_type.
*/
public const NODE_TYPE_REDIS_STANDARD_SMALL = 'REDIS_STANDARD_SMALL';
/**
* Redis highcpu medium node_type.
*/
public const NODE_TYPE_REDIS_HIGHCPU_MEDIUM = 'REDIS_HIGHCPU_MEDIUM';
/**
* Redis standard large node_type.
*/
public const NODE_TYPE_REDIS_STANDARD_LARGE = 'REDIS_STANDARD_LARGE';
/**
* Redis highmem 2xlarge node_type.
*/
public const NODE_TYPE_REDIS_HIGHMEM_2XLARGE = 'REDIS_HIGHMEM_2XLARGE';
/**
* Server CA mode not specified.
*/
Expand Down Expand Up @@ -734,7 +746,8 @@ public function getName()
* underlying machine-type of a redis node.
*
* Accepted values: NODE_TYPE_UNSPECIFIED, REDIS_SHARED_CORE_NANO,
* REDIS_HIGHMEM_MEDIUM, REDIS_HIGHMEM_XLARGE, REDIS_STANDARD_SMALL
* REDIS_HIGHMEM_MEDIUM, REDIS_HIGHMEM_XLARGE, REDIS_STANDARD_SMALL,
* REDIS_HIGHCPU_MEDIUM, REDIS_STANDARD_LARGE, REDIS_HIGHMEM_2XLARGE
*
* @param self::NODE_TYPE_* $nodeType
*/
Expand Down
4 changes: 2 additions & 2 deletions src/CloudRedis/Resource/ProjectsLocationsAclPolicies.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public function get($name, $optParams = [])
* there are more ACL policies left to be queried. The maximum value is 1000;
* values above 1000 will be coerced to 1000.
* @opt_param string pageToken Optional. The `next_page_token` value returned
* from a previous ListAclPolicies request, if any.
* from a previous `ListAclPolicies` request, if any.
* @return ListAclPoliciesResponse
* @throws \Google\Service\Exception
*/
Expand All @@ -139,7 +139,7 @@ public function listProjectsLocationsAclPolicies($parent, $optParams = [])
* @opt_param string requestId Optional. Idempotent request UUID.
* @opt_param string updateMask Optional. Mask of fields to be updated. At least
* one path must be supplied in this field. The elements of the repeated paths
* field may only include these fields from AclPolicy: * `rules`
* field may only include these fields from `AclPolicy`: * `rules`
* @return Operation
* @throws \Google\Service\Exception
*/
Expand Down
2 changes: 1 addition & 1 deletion src/CloudRedis/Resource/ProjectsLocationsClusters.php
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ public function getCertificateAuthority($name, $optParams = [])
* should only rely on response's `next_page_token` to determine if there are
* more clusters left to be queried.
* @opt_param string pageToken The `next_page_token` value returned from a
* previous ListClusters request, if any.
* previous `ListClusters` request, if any.
* @return ListClustersResponse
* @throws \Google\Service\Exception
*/
Expand Down
15 changes: 14 additions & 1 deletion src/CloudRedis/UpdateInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,18 @@ class UpdateInfo extends \Google\Model
* Redis standard small node_type.
*/
public const TARGET_NODE_TYPE_REDIS_STANDARD_SMALL = 'REDIS_STANDARD_SMALL';
/**
* Redis highcpu medium node_type.
*/
public const TARGET_NODE_TYPE_REDIS_HIGHCPU_MEDIUM = 'REDIS_HIGHCPU_MEDIUM';
/**
* Redis standard large node_type.
*/
public const TARGET_NODE_TYPE_REDIS_STANDARD_LARGE = 'REDIS_STANDARD_LARGE';
/**
* Redis highmem 2xlarge node_type.
*/
public const TARGET_NODE_TYPE_REDIS_HIGHMEM_2XLARGE = 'REDIS_HIGHMEM_2XLARGE';
/**
* Target node type for redis cluster.
*
Expand All @@ -62,7 +74,8 @@ class UpdateInfo extends \Google\Model
* Target node type for redis cluster.
*
* Accepted values: NODE_TYPE_UNSPECIFIED, REDIS_SHARED_CORE_NANO,
* REDIS_HIGHMEM_MEDIUM, REDIS_HIGHMEM_XLARGE, REDIS_STANDARD_SMALL
* REDIS_HIGHMEM_MEDIUM, REDIS_HIGHMEM_XLARGE, REDIS_STANDARD_SMALL,
* REDIS_HIGHCPU_MEDIUM, REDIS_STANDARD_LARGE, REDIS_HIGHMEM_2XLARGE
*
* @param self::TARGET_NODE_TYPE_* $targetNodeType
*/
Expand Down
Loading