cloudSqlId = $cloudSqlId; } /** * @return string */ public function getCloudSqlId() { return $this->cloudSqlId; } /** * @param string */ public function setHost($host) { $this->host = $host; } /** * @return string */ public function getHost() { return $this->host; } /** * @param string */ public function setPassword($password) { $this->password = $password; } /** * @return string */ public function getPassword() { return $this->password; } /** * @param bool */ public function setPasswordSet($passwordSet) { $this->passwordSet = $passwordSet; } /** * @return bool */ public function getPasswordSet() { return $this->passwordSet; } /** * @param int */ public function setPort($port) { $this->port = $port; } /** * @return int */ public function getPort() { return $this->port; } /** * @param SslConfig */ public function setSsl(SslConfig $ssl) { $this->ssl = $ssl; } /** * @return SslConfig */ public function getSsl() { return $this->ssl; } /** * @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(MySqlConnectionProfile::class, 'Google_Service_DatabaseMigrationService_MySqlConnectionProfile');