Skip to content

Commit 3ff42fe

Browse files
1 parent f8f10e5 commit 3ff42fe

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

src/CloudRedis/Cluster.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
class Cluster extends \Google\Collection
2121
{
2222
protected $collection_key = 'pscServiceAttachments';
23+
/**
24+
* @var bool
25+
*/
26+
public $asyncClusterEndpointsDeletionEnabled;
2327
/**
2428
* @var string
2529
*/
@@ -108,6 +112,20 @@ class Cluster extends \Google\Collection
108112
protected $zoneDistributionConfigType = ZoneDistributionConfig::class;
109113
protected $zoneDistributionConfigDataType = '';
110114

115+
/**
116+
* @param bool
117+
*/
118+
public function setAsyncClusterEndpointsDeletionEnabled($asyncClusterEndpointsDeletionEnabled)
119+
{
120+
$this->asyncClusterEndpointsDeletionEnabled = $asyncClusterEndpointsDeletionEnabled;
121+
}
122+
/**
123+
* @return bool
124+
*/
125+
public function getAsyncClusterEndpointsDeletionEnabled()
126+
{
127+
return $this->asyncClusterEndpointsDeletionEnabled;
128+
}
111129
/**
112130
* @param string
113131
*/

src/CloudRedis/Resource/ProjectsLocationsClusters.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,8 @@ public function listProjectsLocationsClusters($parent, $optParams = [])
187187
* @opt_param string requestId Idempotent request UUID.
188188
* @opt_param string updateMask Required. Mask of fields to update. At least one
189189
* path must be supplied in this field. The elements of the repeated paths field
190-
* may only include these fields from Cluster: * `size_gb` * `replica_count`
190+
* may only include these fields from Cluster: * `size_gb` * `replica_count` *
191+
* `cluster_endpoints`
191192
* @return Operation
192193
* @throws \Google\Service\Exception
193194
*/

0 commit comments

Comments
 (0)