(self, access, data)
| 165 | return '' |
| 166 | |
| 167 | async def create_operation(self, access, data): |
| 168 | operation = await self._build_operation_object(access, data) |
| 169 | operation.set_start_details() |
| 170 | await self.get_service('data_svc').store(operation) |
| 171 | self.loop.create_task(operation.run(self.get_services())) |
| 172 | return [operation.display] |
| 173 | |
| 174 | async def create_schedule(self, access, data): |
| 175 | operation = await self._build_operation_object(access, data['operation']) |