autoCommit = $autoCommit; } /** * @return bool */ public function getAutoCommit() { return $this->autoCommit; } /** * Optional. Automatically convert the full entity path for each entity * specified by the filter. For example, if the filter specifies a table, that * table schema (and database if there is one) will also be converted. * * @param bool $convertFullPath */ public function setConvertFullPath($convertFullPath) { $this->convertFullPath = $convertFullPath; } /** * @return bool */ public function getConvertFullPath() { return $this->convertFullPath; } /** * Optional. Filter the entities to convert. Leaving this field empty will * convert all of the entities. Supports Google AIP-160 style filtering. * * @param string $filter */ public function setFilter($filter) { $this->filter = $filter; } /** * @return string */ public function getFilter() { return $this->filter; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ConvertConversionWorkspaceRequest::class, 'Google_Service_DatabaseMigrationService_ConvertConversionWorkspaceRequest');