host = $host;
}
/**
* @return string
*/
public function getHost()
{
return $this->host;
}
/**
* @param int
*/
public function setPort($port)
{
$this->port = $port;
}
/**
* @return int
*/
public function getPort()
{
return $this->port;
}
/**
* @param string
*/
public function setPortName($portName)
{
$this->portName = $portName;
}
/**
* @return string
*/
public function getPortName()
{
return $this->portName;
}
/**
* @param string
*/
public function setPortSpecification($portSpecification)
{
$this->portSpecification = $portSpecification;
}
/**
* @return string
*/
public function getPortSpecification()
{
return $this->portSpecification;
}
/**
* @param string
*/
public function setProxyHeader($proxyHeader)
{
$this->proxyHeader = $proxyHeader;
}
/**
* @return string
*/
public function getProxyHeader()
{
return $this->proxyHeader;
}
/**
* @param string
*/
public function setRequestPath($requestPath)
{
$this->requestPath = $requestPath;
}
/**
* @return string
*/
public function getRequestPath()
{
return $this->requestPath;
}
/**
* @param string
*/
public function setResponse($response)
{
$this->response = $response;
}
/**
* @return string
*/
public function getResponse()
{
return $this->response;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(HTTP2HealthCheck::class, 'Google_Service_Compute_HTTP2HealthCheck');