degradedHostCount = $degradedHostCount; } /** * @return int */ public function getDegradedHostCount() { return $this->degradedHostCount; } /** * The number of degraded infrastructure (e.g NV link domain) in the * reservation subblock. * * @param int $degradedInfraCount */ public function setDegradedInfraCount($degradedInfraCount) { $this->degradedInfraCount = $degradedInfraCount; } /** * @return int */ public function getDegradedInfraCount() { return $this->degradedInfraCount; } /** * The health status of the reservation subBlock. * * 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 healthy hosts in the reservation subBlock. * * @param int $healthyHostCount */ public function setHealthyHostCount($healthyHostCount) { $this->healthyHostCount = $healthyHostCount; } /** * @return int */ public function getHealthyHostCount() { return $this->healthyHostCount; } /** * The number of healthy infrastructure (e.g NV link domain) in the * reservation subblock. * * @param int $healthyInfraCount */ public function setHealthyInfraCount($healthyInfraCount) { $this->healthyInfraCount = $healthyInfraCount; } /** * @return int */ public function getHealthyInfraCount() { return $this->healthyInfraCount; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ReservationSubBlockHealthInfo::class, 'Google_Service_Compute_ReservationSubBlockHealthInfo');