diff --git a/src/CloudRedis/DatabaseResourceMetadata.php b/src/CloudRedis/DatabaseResourceMetadata.php index 98ea2dff76..1774455ecc 100644 --- a/src/CloudRedis/DatabaseResourceMetadata.php +++ b/src/CloudRedis/DatabaseResourceMetadata.php @@ -74,6 +74,10 @@ class DatabaseResourceMetadata extends \Google\Collection * @var string */ public $resourceName; + /** + * @var string + */ + public $suspensionReason; protected $tagsSetType = Tags::class; protected $tagsSetDataType = ''; /** @@ -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 */ diff --git a/src/CloudRedis/InternalResourceMetadata.php b/src/CloudRedis/InternalResourceMetadata.php index 6e5ae9243e..d2436ef2b9 100644 --- a/src/CloudRedis/InternalResourceMetadata.php +++ b/src/CloudRedis/InternalResourceMetadata.php @@ -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; @@ -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 */ diff --git a/src/CloudRedis/UpdateInfo.php b/src/CloudRedis/UpdateInfo.php index 79d3f1ec70..3e06274644 100644 --- a/src/CloudRedis/UpdateInfo.php +++ b/src/CloudRedis/UpdateInfo.php @@ -19,6 +19,10 @@ class UpdateInfo extends \Google\Model { + /** + * @var string + */ + public $targetNodeType; /** * @var int */ @@ -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 */