X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=juju%2Fmachine.py;h=c8bdcd49b7bef357e8185ed861397bc04ba97e5a;hb=ac5b9fc0eaf87c5126949307352d1d56781ef3ef;hp=44560bfd8305838907da15a2261bd78d95bb6ea8;hpb=afb309d17dadc062017ee3d6425491193181138e;p=osm%2FN2VC.git diff --git a/juju/machine.py b/juju/machine.py index 44560bf..c8bdcd4 100644 --- a/juju/machine.py +++ b/juju/machine.py @@ -31,7 +31,7 @@ class Machine(model.ModelEntity): :param int timeout: Time to wait before command is considered failed """ - pass + raise NotImplementedError() async def set_annotations(self, annotations): """Set annotations on this machine. @@ -64,7 +64,7 @@ class Machine(model.ModelEntity): :param str scp_opts: Additional options to the `scp` command """ - pass + raise NotImplementedError() def ssh( self, command, user=None, proxy=False, ssh_opts=None): @@ -76,7 +76,7 @@ class Machine(model.ModelEntity): :param str ssh_opts: Additional options to the `ssh` command """ - pass + raise NotImplementedError() def status_history(self, num=20, utc=False): """Get status history for this machine. @@ -85,4 +85,4 @@ class Machine(model.ModelEntity): :param bool utc: Display time as UTC in RFC3339 format """ - pass + raise NotImplementedError()