def instances(self, ident):
        """ gets the instances id of an operation, matching the ident """
        agents = self._call_get('agent')
        #pp.pprint(agents)
        ret = [ op['_id'] for op in agents if ident in op['ident'] and op['_kind'] == 'agent' ]