degradedBlockCount = $degradedBlockCount; } /** * @return int */ public function getDegradedBlockCount() { return $this->degradedBlockCount; } /** * The health status of the reservation. * * Accepted values: DEGRADED, HEALTHY, HEALTH_STATUS_UNSPECIFIED * * @param self::HEALTH_STATUS_* $healthStatus */ public function setHealthStatus($healthStatus) { $this->healthStatus = $healthStatus; } /** * @return self::HEALTH_STATUS_* */ public function getHealthStatus() { return $this->healthStatus; } /** * The number of reservation blocks that are healthy. * * @param int $healthyBlockCount */ public function setHealthyBlockCount($healthyBlockCount) { $this->healthyBlockCount = $healthyBlockCount; } /** * @return int */ public function getHealthyBlockCount() { return $this->healthyBlockCount; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AllocationResourceStatusHealthInfo::class, 'Google_Service_Compute_AllocationResourceStatusHealthInfo');