backendService = $backendService;
}
/**
* @return string
*/
public function getBackendService()
{
return $this->backendService;
}
/**
* @param HttpHeaderAction
*/
public function setHeaderAction(HttpHeaderAction $headerAction)
{
$this->headerAction = $headerAction;
}
/**
* @return HttpHeaderAction
*/
public function getHeaderAction()
{
return $this->headerAction;
}
/**
* @param string
*/
public function setWeight($weight)
{
$this->weight = $weight;
}
/**
* @return string
*/
public function getWeight()
{
return $this->weight;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(WeightedBackendService::class, 'Google_Service_Compute_WeightedBackendService');