def dump()

in google-datacatalog-hive-connector/src/google/datacatalog_connectors/hive/entities/table.py [0:0]


    def dump(self):
        return {
            'id':
                self.id,
            'name':
                self.name,
            'type':
                self.type,
            'create_time':
                self.create_time,
            'database_id':
                self.database_id,
            'sd_id':
                self.sd_id,
            'table_storages': [
                table_storage.dump() for table_storage in self.table_storages
            ],
            'table_params': [
                table_param.dump() for table_param in self.table_params
            ]
        }