Return app ModelEntities from bundle deploy
[osm/N2VC.git] / juju / juju.py
index 45e5c9e..fe3ce92 100644 (file)
@@ -73,11 +73,16 @@ class Juju(object):
     def register(self, registration_string):
         """Register a user to a controller.
 
+        :param str registration_string: The registration string
+
         """
         pass
 
-    def set_budget(self, name, amount):
-        """Set a budget limit.
+    def set_budget(self, name, limit):
+        """Set a monthly budget limit.
+
+        :param str name: Name of budget
+        :param int limit: Monthly limit
 
         """
         pass
@@ -85,12 +90,17 @@ class Juju(object):
     def get_cloud(self, name):
         """Get a cloud by name.
 
+        :param str name: Name of cloud
+
         """
         pass
 
-    def get_controller(self):
+    def get_controller(self, name, include_passwords=False):
         """Get a controller by name.
 
+        :param str name: Name of controller
+        :param bool include_passwords: Include passwords for accounts
+
         (maybe move this to Cloud?)
         """
         pass