aggregatedStats = $aggregatedStats; } /** * @return DatabaseDeploymentDetailsAggregatedStats */ public function getAggregatedStats() { return $this->aggregatedStats; } /** * @param string */ public function setEdition($edition) { $this->edition = $edition; } /** * @return string */ public function getEdition() { return $this->edition; } /** * @param string */ public function setGeneratedId($generatedId) { $this->generatedId = $generatedId; } /** * @return string */ public function getGeneratedId() { return $this->generatedId; } /** * @param string */ public function setManualUniqueId($manualUniqueId) { $this->manualUniqueId = $manualUniqueId; } /** * @return string */ public function getManualUniqueId() { return $this->manualUniqueId; } /** * @param MysqlDatabaseDeployment */ public function setMysql(MysqlDatabaseDeployment $mysql) { $this->mysql = $mysql; } /** * @return MysqlDatabaseDeployment */ public function getMysql() { return $this->mysql; } /** * @param PostgreSqlDatabaseDeployment */ public function setPostgresql(PostgreSqlDatabaseDeployment $postgresql) { $this->postgresql = $postgresql; } /** * @return PostgreSqlDatabaseDeployment */ public function getPostgresql() { return $this->postgresql; } /** * @param SqlServerDatabaseDeployment */ public function setSqlServer(SqlServerDatabaseDeployment $sqlServer) { $this->sqlServer = $sqlServer; } /** * @return SqlServerDatabaseDeployment */ public function getSqlServer() { return $this->sqlServer; } /** * @param DatabaseDeploymentTopology */ public function setTopology(DatabaseDeploymentTopology $topology) { $this->topology = $topology; } /** * @return DatabaseDeploymentTopology */ public function getTopology() { return $this->topology; } /** * @param string */ public function setVersion($version) { $this->version = $version; } /** * @return string */ public function getVersion() { return $this->version; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DatabaseDeploymentDetails::class, 'Google_Service_MigrationCenterAPI_DatabaseDeploymentDetails');