changeTables = $changeTables; } /** * @return SqlServerChangeTables */ public function getChangeTables() { return $this->changeTables; } /** * @param SqlServerRdbms */ public function setExcludeObjects(SqlServerRdbms $excludeObjects) { $this->excludeObjects = $excludeObjects; } /** * @return SqlServerRdbms */ public function getExcludeObjects() { return $this->excludeObjects; } /** * @param SqlServerRdbms */ public function setIncludeObjects(SqlServerRdbms $includeObjects) { $this->includeObjects = $includeObjects; } /** * @return SqlServerRdbms */ public function getIncludeObjects() { return $this->includeObjects; } /** * @param int */ public function setMaxConcurrentBackfillTasks($maxConcurrentBackfillTasks) { $this->maxConcurrentBackfillTasks = $maxConcurrentBackfillTasks; } /** * @return int */ public function getMaxConcurrentBackfillTasks() { return $this->maxConcurrentBackfillTasks; } /** * @param int */ public function setMaxConcurrentCdcTasks($maxConcurrentCdcTasks) { $this->maxConcurrentCdcTasks = $maxConcurrentCdcTasks; } /** * @return int */ public function getMaxConcurrentCdcTasks() { return $this->maxConcurrentCdcTasks; } /** * @param SqlServerTransactionLogs */ public function setTransactionLogs(SqlServerTransactionLogs $transactionLogs) { $this->transactionLogs = $transactionLogs; } /** * @return SqlServerTransactionLogs */ public function getTransactionLogs() { return $this->transactionLogs; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SqlServerSourceConfig::class, 'Google_Service_Datastream_SqlServerSourceConfig');