Skip to content

Commit

Permalink
Regenerate composer client (#3621)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-code-bot authored Oct 8, 2023
1 parent 6e26097 commit 9206f4d
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/CloudComposer/DatabaseConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ class DatabaseConfig extends \Google\Model
* @var string
*/
public $machineType;
/**
* @var string
*/
public $zone;

/**
* @param string
Expand All @@ -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.
Expand Down
19 changes: 19 additions & 0 deletions src/CloudComposer/StorageConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 9206f4d

Please sign in to comment.