database = $database; } /** * @return DatabaseInstanceEntity */ public function getDatabase() { return $this->database; } /** * @param FunctionEntity */ public function setDatabaseFunction(FunctionEntity $databaseFunction) { $this->databaseFunction = $databaseFunction; } /** * @return FunctionEntity */ public function getDatabaseFunction() { return $this->databaseFunction; } /** * @param PackageEntity */ public function setDatabasePackage(PackageEntity $databasePackage) { $this->databasePackage = $databasePackage; } /** * @return PackageEntity */ public function getDatabasePackage() { return $this->databasePackage; } /** * @param EntityDdl[] */ public function setEntityDdl($entityDdl) { $this->entityDdl = $entityDdl; } /** * @return EntityDdl[] */ public function getEntityDdl() { return $this->entityDdl; } /** * @param string */ public function setEntityType($entityType) { $this->entityType = $entityType; } /** * @return string */ public function getEntityType() { return $this->entityType; } /** * @param EntityIssue[] */ public function setIssues($issues) { $this->issues = $issues; } /** * @return EntityIssue[] */ public function getIssues() { return $this->issues; } /** * @param EntityMapping[] */ public function setMappings($mappings) { $this->mappings = $mappings; } /** * @return EntityMapping[] */ public function getMappings() { return $this->mappings; } /** * @param MaterializedViewEntity */ public function setMaterializedView(MaterializedViewEntity $materializedView) { $this->materializedView = $materializedView; } /** * @return MaterializedViewEntity */ public function getMaterializedView() { return $this->materializedView; } /** * @param string */ public function setParentEntity($parentEntity) { $this->parentEntity = $parentEntity; } /** * @return string */ public function getParentEntity() { return $this->parentEntity; } /** * @param SchemaEntity */ public function setSchema(SchemaEntity $schema) { $this->schema = $schema; } /** * @return SchemaEntity */ public function getSchema() { return $this->schema; } /** * @param SequenceEntity */ public function setSequence(SequenceEntity $sequence) { $this->sequence = $sequence; } /** * @return SequenceEntity */ public function getSequence() { return $this->sequence; } /** * @param string */ public function setShortName($shortName) { $this->shortName = $shortName; } /** * @return string */ public function getShortName() { return $this->shortName; } /** * @param StoredProcedureEntity */ public function setStoredProcedure(StoredProcedureEntity $storedProcedure) { $this->storedProcedure = $storedProcedure; } /** * @return StoredProcedureEntity */ public function getStoredProcedure() { return $this->storedProcedure; } /** * @param SynonymEntity */ public function setSynonym(SynonymEntity $synonym) { $this->synonym = $synonym; } /** * @return SynonymEntity */ public function getSynonym() { return $this->synonym; } /** * @param TableEntity */ public function setTable(TableEntity $table) { $this->table = $table; } /** * @return TableEntity */ public function getTable() { return $this->table; } /** * @param string */ public function setTree($tree) { $this->tree = $tree; } /** * @return string */ public function getTree() { return $this->tree; } /** * @param UDTEntity */ public function setUdt(UDTEntity $udt) { $this->udt = $udt; } /** * @return UDTEntity */ public function getUdt() { return $this->udt; } /** * @param ViewEntity */ public function setView(ViewEntity $view) { $this->view = $view; } /** * @return ViewEntity */ public function getView() { return $this->view; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DatabaseEntity::class, 'Google_Service_DatabaseMigrationService_DatabaseEntity');