block = $block; } /** * @return string */ public function getBlock() { return $this->block; } /** * [Output Only] The global name of the Compute Engine cluster where the * running instance is located. * * @param string $cluster */ public function setCluster($cluster) { $this->cluster = $cluster; } /** * @return string */ public function getCluster() { return $this->cluster; } /** * [Output Only] The ID of the host on which the running instance is located. * Instances on the same host experience the lowest possible network latency. * * @param string $host */ public function setHost($host) { $this->host = $host; } /** * @return string */ public function getHost() { return $this->host; } /** * [Output Only] The ID of the sub-block in which the running instance is * located. Instances in the same sub-block experience lower network latency * than instances in the same 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(ResourceStatusPhysicalHostTopology::class, 'Google_Service_Compute_ResourceStatusPhysicalHostTopology');