hostname = $hostname; } /** * @return string */ public function getHostname() { return $this->hostname; } /** * Input only. SSH password. * * @param string $password */ public function setPassword($password) { $this->password = $password; } /** * @return string */ public function getPassword() { return $this->password; } /** * Port for the SSH tunnel, default value is 22. * * @param int $port */ public function setPort($port) { $this->port = $port; } /** * @return int */ public function getPort() { return $this->port; } /** * Input only. SSH private key. * * @param string $privateKey */ public function setPrivateKey($privateKey) { $this->privateKey = $privateKey; } /** * @return string */ public function getPrivateKey() { return $this->privateKey; } /** * Required. Username for the SSH tunnel. * * @param string $username */ public function setUsername($username) { $this->username = $username; } /** * @return string */ public function getUsername() { return $this->username; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ForwardSshTunnelConnectivity::class, 'Google_Service_Datastream_ForwardSshTunnelConnectivity');