paths = $paths;
}
/**
* @return string[]
*/
public function getPaths()
{
return $this->paths;
}
/**
* @param HttpRouteAction
*/
public function setRouteAction(HttpRouteAction $routeAction)
{
$this->routeAction = $routeAction;
}
/**
* @return HttpRouteAction
*/
public function getRouteAction()
{
return $this->routeAction;
}
/**
* @param string
*/
public function setService($service)
{
$this->service = $service;
}
/**
* @return string
*/
public function getService()
{
return $this->service;
}
/**
* @param HttpRedirectAction
*/
public function setUrlRedirect(HttpRedirectAction $urlRedirect)
{
$this->urlRedirect = $urlRedirect;
}
/**
* @return HttpRedirectAction
*/
public function getUrlRedirect()
{
return $this->urlRedirect;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(PathRule::class, 'Google_Service_Compute_PathRule');