host = $host;
}
/**
* @return string
*/
public function getHost()
{
return $this->host;
}
/**
* @param HTTPHeader[]
*/
public function setHttpHeaders($httpHeaders)
{
$this->httpHeaders = $httpHeaders;
}
/**
* @return HTTPHeader[]
*/
public function getHttpHeaders()
{
return $this->httpHeaders;
}
/**
* @param string
*/
public function setPath($path)
{
$this->path = $path;
}
/**
* @return string
*/
public function getPath()
{
return $this->path;
}
/**
* @param string
*/
public function setScheme($scheme)
{
$this->scheme = $scheme;
}
/**
* @return string
*/
public function getScheme()
{
return $this->scheme;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(HTTPGetAction::class, 'Google_Service_CloudRun_HTTPGetAction');