connectionAttributes = $connectionAttributes; } /** * @return string[] */ public function getConnectionAttributes() { return $this->connectionAttributes; } /** * @param string */ public function setDatabaseService($databaseService) { $this->databaseService = $databaseService; } /** * @return string */ public function getDatabaseService() { return $this->databaseService; } /** * @param string */ public function setHostname($hostname) { $this->hostname = $hostname; } /** * @return string */ public function getHostname() { return $this->hostname; } /** * @param string */ public function setPassword($password) { $this->password = $password; } /** * @return string */ public function getPassword() { return $this->password; } /** * @param int */ public function setPort($port) { $this->port = $port; } /** * @return int */ public function getPort() { return $this->port; } /** * @param string */ 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(OracleProfile::class, 'Google_Service_Datastream_OracleProfile');