From: Tim Van Steenburgh Date: Wed, 30 Nov 2016 14:10:42 +0000 (-0500) Subject: Fix sphinx parsing errors X-Git-Tag: 0.1.0~22 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=e2e8a6abd629c0941abb8b80ef75df2710ed952c;hp=46a88984bea38b309d3e0d7c1d16bd904bb04db4;p=osm%2FN2VC.git Fix sphinx parsing errors --- diff --git a/juju/model.py b/juju/model.py index 0ba79df..7464e2c 100644 --- a/juju/model.py +++ b/juju/model.py @@ -485,7 +485,7 @@ class Model(object): """Register an "on-model-change" callback Once the model is connected, ``callable_`` - will be called each time the model changes. callable_ should + will be called each time the model changes. ``callable_`` should be Awaitable and accept the following positional arguments: delta - An instance of :class:`juju.delta.EntityDelta` @@ -504,14 +504,15 @@ class Model(object): model - The :class:`Model` itself. Events for which ``callable_`` is called can be specified by passing - entity_type, action, and/or id_ filter criteria, e.g.: + entity_type, action, and/or entitiy_id filter criteria, e.g.:: add_observer( - myfunc, entity_type='application', action='add', id_='ubuntu') + myfunc, + entity_type='application', action='add', entity_id='ubuntu') For more complex filtering conditions, pass a predicate function. It will be called with a delta as its only argument. If the predicate - function returns True, the callable_ will be called. + function returns True, the ``callable_`` will be called. """ observer = _Observer( @@ -1343,16 +1344,20 @@ class BundleHandler(object): Keys include: series: string specifying the machine OS series. + constraints: string holding machine constraints, if any. We'll parse this into the json friendly dict that the juju api expects. + container_type: string holding the type of the container (for instance ""lxc" or kvm"). It is not specified for top level machines. + parent_id: string holding a placeholder pointing to another machine change or to a unit change. This value is only specified in the case this machine is a container, in which case also ContainerType is set. + """ params = params or {}