endpointCount = $endpointCount; } /** * @return int */ public function getEndpointCount() { return $this->endpointCount; } /** * Fully qualified URL of an instance group or network endpoint group behind * the source backend service. * * @param string $group */ public function setGroup($group) { $this->group = $group; } /** * @return string */ public function getGroup() { return $this->group; } /** * Number of endpoints considered healthy when determining health of the * regionHealthSource. * * @param int $healthyEndpointCount */ public function setHealthyEndpointCount($healthyEndpointCount) { $this->healthyEndpointCount = $healthyEndpointCount; } /** * @return int */ public function getHealthyEndpointCount() { return $this->healthyEndpointCount; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(HealthSourcesGetHealthResponseSourceInfoBackendInfo::class, 'Google_Service_Compute_HealthSourcesGetHealthResponseSourceInfoBackendInfo');