Square one.
[osm/N2VC.git] / juju / cloud.py
1 class Cloud(object):
2 def add_credential(self):
3 """Add or replaces credentials for this cloud.
4
5 """
6 pass
7
8 def get_credentials(self):
9 """Return list of all credentials for this cloud.
10
11 """
12 pass
13
14 def remove_credential(self):
15 """Remove a credential for this cloud.
16
17 """
18 pass
19
20 def bootstrap(self):
21 """Initialize a cloud environment.
22
23 """
24 pass
25
26 def set_default_credential(self):
27 """Set the default credentials for this cloud.
28
29 """
30 pass
31
32 def set_default_region(self):
33 """Set the default region for this cloud.
34
35 """
36 pass