Skip to content

Commit

Permalink
Regenerate redis client (#6108)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-code-bot authored Jan 20, 2025
1 parent f8f10e5 commit 3ff42fe
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
18 changes: 18 additions & 0 deletions src/CloudRedis/Cluster.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
class Cluster extends \Google\Collection
{
protected $collection_key = 'pscServiceAttachments';
/**
* @var bool
*/
public $asyncClusterEndpointsDeletionEnabled;
/**
* @var string
*/
Expand Down Expand Up @@ -108,6 +112,20 @@ class Cluster extends \Google\Collection
protected $zoneDistributionConfigType = ZoneDistributionConfig::class;
protected $zoneDistributionConfigDataType = '';

/**
* @param bool
*/
public function setAsyncClusterEndpointsDeletionEnabled($asyncClusterEndpointsDeletionEnabled)
{
$this->asyncClusterEndpointsDeletionEnabled = $asyncClusterEndpointsDeletionEnabled;
}
/**
* @return bool
*/
public function getAsyncClusterEndpointsDeletionEnabled()
{
return $this->asyncClusterEndpointsDeletionEnabled;
}
/**
* @param string
*/
Expand Down
3 changes: 2 additions & 1 deletion src/CloudRedis/Resource/ProjectsLocationsClusters.php
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,8 @@ public function listProjectsLocationsClusters($parent, $optParams = [])
* @opt_param string requestId Idempotent request UUID.
* @opt_param string updateMask Required. Mask of fields to update. At least one
* path must be supplied in this field. The elements of the repeated paths field
* may only include these fields from Cluster: * `size_gb` * `replica_count`
* may only include these fields from Cluster: * `size_gb` * `replica_count` *
* `cluster_endpoints`
* @return Operation
* @throws \Google\Service\Exception
*/
Expand Down

0 comments on commit 3ff42fe

Please sign in to comment.