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.