From 59de4d0aebd91277874d228bfb16ae1aff2288f3 Mon Sep 17 00:00:00 2001 From: yoshi-code-bot <70984784+yoshi-code-bot@users.noreply.github.com> Date: Sat, 7 Oct 2023 17:58:38 -0700 Subject: [PATCH] Regenerate composer client --- src/CloudComposer/DatabaseConfig.php | 18 ++++++++++++++++++ src/CloudComposer/StorageConfig.php | 19 +++++++++++++++++++ 2 files changed, 37 insertions(+) diff --git a/src/CloudComposer/DatabaseConfig.php b/src/CloudComposer/DatabaseConfig.php index bd697afcaa..b44d0c64d6 100644 --- a/src/CloudComposer/DatabaseConfig.php +++ b/src/CloudComposer/DatabaseConfig.php @@ -23,6 +23,10 @@ class DatabaseConfig extends \Google\Model * @var string */ public $machineType; + /** + * @var string + */ + public $zone; /** * @param string @@ -38,6 +42,20 @@ public function getMachineType() { return $this->machineType; } + /** + * @param string + */ + public function setZone($zone) + { + $this->zone = $zone; + } + /** + * @return string + */ + public function getZone() + { + return $this->zone; + } } // Adding a class alias for backwards compatibility with the previous class name. diff --git a/src/CloudComposer/StorageConfig.php b/src/CloudComposer/StorageConfig.php index cce0fb8054..ed9ad72b7a 100644 --- a/src/CloudComposer/StorageConfig.php +++ b/src/CloudComposer/StorageConfig.php @@ -19,6 +19,25 @@ class StorageConfig extends \Google\Model { + /** + * @var string + */ + public $bucket; + + /** + * @param string + */ + public function setBucket($bucket) + { + $this->bucket = $bucket; + } + /** + * @return string + */ + public function getBucket() + { + return $this->bucket; + } } // Adding a class alias for backwards compatibility with the previous class name.