binaryLogParser = $binaryLogParser; } /** * @return BinaryLogParser */ public function getBinaryLogParser() { return $this->binaryLogParser; } /** * @param string */ public function setCdcStartPosition($cdcStartPosition) { $this->cdcStartPosition = $cdcStartPosition; } /** * @return string */ public function getCdcStartPosition() { return $this->cdcStartPosition; } /** * @param LogMiner */ public function setLogMiner(LogMiner $logMiner) { $this->logMiner = $logMiner; } /** * @return LogMiner */ public function getLogMiner() { return $this->logMiner; } /** * @param int */ public function setMaxConcurrentCdcConnections($maxConcurrentCdcConnections) { $this->maxConcurrentCdcConnections = $maxConcurrentCdcConnections; } /** * @return int */ public function getMaxConcurrentCdcConnections() { return $this->maxConcurrentCdcConnections; } /** * @param int */ public function setMaxConcurrentFullDumpConnections($maxConcurrentFullDumpConnections) { $this->maxConcurrentFullDumpConnections = $maxConcurrentFullDumpConnections; } /** * @return int */ public function getMaxConcurrentFullDumpConnections() { return $this->maxConcurrentFullDumpConnections; } /** * @param bool */ public function setSkipFullDump($skipFullDump) { $this->skipFullDump = $skipFullDump; } /** * @return bool */ public function getSkipFullDump() { return $this->skipFullDump; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(OracleSourceConfig::class, 'Google_Service_DatabaseMigrationService_OracleSourceConfig');