X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=juju%2Fmachine.py;h=c8bdcd49b7bef357e8185ed861397bc04ba97e5a;hb=f1141c79947f1ba335c697be546761a1a1fc43b3;hp=181c60cba69afdd22ebead61750a05c35245351a;hpb=a56869a418a68b795817d4f14d4065d11784f09f;p=osm%2FN2VC.git diff --git a/juju/machine.py b/juju/machine.py index 181c60c..c8bdcd4 100644 --- a/juju/machine.py +++ b/juju/machine.py @@ -10,6 +10,8 @@ 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) @@ -17,7 +19,9 @@ class Machine(model.ModelEntity): log.debug( 'Destroying machine %s', self.id) - return await facade.DestroyMachines(force, [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): @@ -27,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, @@ -42,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): @@ -54,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. @@ -63,4 +85,4 @@ class Machine(model.ModelEntity): :param bool utc: Display time as UTC in RFC3339 format """ - pass + raise NotImplementedError()