Skip to content

Commit

Permalink
Regenerate redis client (#6225)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-code-bot authored Feb 16, 2025
1 parent 8c34319 commit 7489801
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/CloudRedis/DatabaseResourceMetadata.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ class DatabaseResourceMetadata extends \Google\Collection
* @var string
*/
public $resourceName;
/**
* @var string
*/
public $suspensionReason;
protected $tagsSetType = Tags::class;
protected $tagsSetDataType = '';
/**
Expand Down Expand Up @@ -335,6 +339,20 @@ public function getResourceName()
{
return $this->resourceName;
}
/**
* @param string
*/
public function setSuspensionReason($suspensionReason)
{
$this->suspensionReason = $suspensionReason;
}
/**
* @return string
*/
public function getSuspensionReason()
{
return $this->suspensionReason;
}
/**
* @param Tags
*/
Expand Down
18 changes: 18 additions & 0 deletions src/CloudRedis/InternalResourceMetadata.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ class InternalResourceMetadata extends \Google\Model
protected $backupConfigurationDataType = '';
protected $backupRunType = BackupRun::class;
protected $backupRunDataType = '';
/**
* @var bool
*/
public $isDeletionProtectionEnabled;
protected $productType = Product::class;
protected $productDataType = '';
protected $resourceIdType = DatabaseResourceId::class;
Expand Down Expand Up @@ -60,6 +64,20 @@ public function getBackupRun()
{
return $this->backupRun;
}
/**
* @param bool
*/
public function setIsDeletionProtectionEnabled($isDeletionProtectionEnabled)
{
$this->isDeletionProtectionEnabled = $isDeletionProtectionEnabled;
}
/**
* @return bool
*/
public function getIsDeletionProtectionEnabled()
{
return $this->isDeletionProtectionEnabled;
}
/**
* @param Product
*/
Expand Down
18 changes: 18 additions & 0 deletions src/CloudRedis/UpdateInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@

class UpdateInfo extends \Google\Model
{
/**
* @var string
*/
public $targetNodeType;
/**
* @var int
*/
Expand All @@ -28,6 +32,20 @@ class UpdateInfo extends \Google\Model
*/
public $targetShardCount;

/**
* @param string
*/
public function setTargetNodeType($targetNodeType)
{
$this->targetNodeType = $targetNodeType;
}
/**
* @return string
*/
public function getTargetNodeType()
{
return $this->targetNodeType;
}
/**
* @param int
*/
Expand Down

0 comments on commit 7489801

Please sign in to comment.