Source code for juju.action

from . import model


[docs]class Action(model.ModelEntity): @property def status(self): return self.data['status']
[docs] async def wait(self): return await self.model.wait_for_action(self.id)