Exemplo n.º 1
0
    def _create_in_db(context, updates):
        session = db_api.get_api_session()

        db_mapping = api_models.InstanceMapping()
        db_mapping.update(updates)
        db_mapping.save(session)
        return db_mapping
Exemplo n.º 2
0
 def _create_in_db(context, updates):
     db_mapping = api_models.InstanceMapping()
     db_mapping.update(updates)
     db_mapping.save(context.session)
     # NOTE: This is done because a later access will trigger a lazy load
     # outside of the db session so it will fail. We don't lazy load
     # cell_mapping on the object later because we never need an
     # InstanceMapping without the CellMapping.
     db_mapping.cell_mapping
     return db_mapping
 def _create_in_db(context, updates):
     db_mapping = api_models.InstanceMapping()
     db_mapping.update(updates)
     db_mapping.save(context.session)
     return db_mapping