localGatewayInterface = $localGatewayInterface;
}
/**
* @return string
*/
public function getLocalGatewayInterface()
{
return $this->localGatewayInterface;
}
/**
* @param string
*/
public function setPeerGatewayInterface($peerGatewayInterface)
{
$this->peerGatewayInterface = $peerGatewayInterface;
}
/**
* @return string
*/
public function getPeerGatewayInterface()
{
return $this->peerGatewayInterface;
}
/**
* @param string
*/
public function setTunnelUrl($tunnelUrl)
{
$this->tunnelUrl = $tunnelUrl;
}
/**
* @return string
*/
public function getTunnelUrl()
{
return $this->tunnelUrl;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(VpnGatewayStatusTunnel::class, 'Google_Service_Compute_VpnGatewayStatusTunnel');