availableCpuPlatforms = $availableCpuPlatforms; } /** * @return string[] */ public function getAvailableCpuPlatforms() { return $this->availableCpuPlatforms; } /** * [Output Only] Creation timestamp inRFC3339 text format. * * @param string $creationTimestamp */ public function setCreationTimestamp($creationTimestamp) { $this->creationTimestamp = $creationTimestamp; } /** * @return string */ public function getCreationTimestamp() { return $this->creationTimestamp; } /** * [Output Only] The deprecation status associated with this zone. * * @param DeprecationStatus $deprecated */ public function setDeprecated(DeprecationStatus $deprecated) { $this->deprecated = $deprecated; } /** * @return DeprecationStatus */ public function getDeprecated() { return $this->deprecated; } /** * [Output Only] Textual description of the resource. * * @param string $description */ public function setDescription($description) { $this->description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * [Output Only] The unique identifier for the resource. This identifier is * defined by the server. * * @param string $id */ public function setId($id) { $this->id = $id; } /** * @return string */ public function getId() { return $this->id; } /** * Output only. [Output Only] Type of the resource. Always compute#zone for * zones. * * @param string $kind */ public function setKind($kind) { $this->kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } /** * [Output Only] Name of the resource. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * [Output Only] Full URL reference to the region which hosts the zone. * * @param string $region */ public function setRegion($region) { $this->region = $region; } /** * @return string */ public function getRegion() { return $this->region; } /** * [Output Only] Server-defined URL for the resource. * * @param string $selfLink */ public function setSelfLink($selfLink) { $this->selfLink = $selfLink; } /** * @return string */ public function getSelfLink() { return $this->selfLink; } /** * [Output Only] Status of the zone, either UP orDOWN. * * Accepted values: DOWN, UP * * @param self::STATUS_* $status */ public function setStatus($status) { $this->status = $status; } /** * @return self::STATUS_* */ public function getStatus() { return $this->status; } /** * Output only. [Output Only] Reserved for future use. * * @param bool $supportsPzs */ public function setSupportsPzs($supportsPzs) { $this->supportsPzs = $supportsPzs; } /** * @return bool */ public function getSupportsPzs() { return $this->supportsPzs; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Zone::class, 'Google_Service_Compute_Zone');