allConnectionStrings = $allConnectionStrings; } /** * @return string[] */ public function getAllConnectionStrings() { return $this->allConnectionStrings; } /** * Optional. The default connection string to use to connect to the pluggable * database. * * @param string $pdbDefault */ public function setPdbDefault($pdbDefault) { $this->pdbDefault = $pdbDefault; } /** * @return string */ public function getPdbDefault() { return $this->pdbDefault; } /** * Optional. The default connection string to use to connect to the pluggable * database using IP. * * @param string $pdbIpDefault */ public function setPdbIpDefault($pdbIpDefault) { $this->pdbIpDefault = $pdbIpDefault; } /** * @return string */ public function getPdbIpDefault() { return $this->pdbIpDefault; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PluggableDatabaseConnectionStrings::class, 'Google_Service_OracleDatabase_PluggableDatabaseConnectionStrings');