block = $block; } /** * @return string */ public function getBlock() { return $this->block; } /** * The cluster name of the reservation sub-block. * * @param string $cluster */ public function setCluster($cluster) { $this->cluster = $cluster; } /** * @return string */ public function getCluster() { return $this->cluster; } /** * The unique identifier of the capacity host within the capacity sub-block. * * @param string $host */ public function setHost($host) { $this->host = $host; } /** * @return string */ public function getHost() { return $this->host; } /** * The unique identifier of the capacity sub-block within the capacity block. * * @param string $subBlock */ public function setSubBlock($subBlock) { $this->subBlock = $subBlock; } /** * @return string */ public function getSubBlock() { return $this->subBlock; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ReservationSlotPhysicalTopology::class, 'Google_Service_Compute_ReservationSlotPhysicalTopology');