X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=juju%2Fmachine.py;h=c8bdcd49b7bef357e8185ed861397bc04ba97e5a;hb=ac5b9fc0eaf87c5126949307352d1d56781ef3ef;hp=a7cb6a9fd97e2178a054da89fd3bda628e52c178;hpb=fe2d2f1a5ef2453359858481929a2526ea1a3c5c;p=osm%2FN2VC.git diff --git a/juju/machine.py b/juju/machine.py index a7cb6a9..c8bdcd4 100644 --- a/juju/machine.py +++ b/juju/machine.py @@ -1,7 +1,29 @@ +import logging + from . import model +from .client import client + +log = logging.getLogger(__name__) class Machine(model.ModelEntity): + async def destroy(self, force=False): + """Remove this machine from the model. + + Blocks until the machine is actually removed. + + """ + facade = client.ClientFacade() + facade.connect(self.connection) + + log.debug( + 'Destroying machine %s', self.id) + + await facade.DestroyMachines(force, [self.id]) + return await self.model._wait( + 'machine', self.id, 'remove') + remove = destroy + def run(self, command, timeout=None): """Run command on this machine. @@ -9,7 +31,25 @@ 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. + + :param annotations map[string]string: the annotations as key/value + pairs. + + """ + log.debug('Updating annotations on machine %s', self.id) + + self.ann_facade = client.AnnotationsFacade() + self.ann_facade.connect(self.connection) + + ann = client.EntityAnnotations( + entity=self.id, + annotations=annotations, + ) + return await self.ann_facade.Set([ann]) def scp( self, source_path, user=None, destination_path=None, proxy=False, @@ -24,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): @@ -36,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. @@ -45,4 +85,4 @@ class Machine(model.ModelEntity): :param bool utc: Display time as UTC in RFC3339 format """ - pass + raise NotImplementedError()