aboutsummaryrefslogtreecommitdiffstats
path: root/heatbridge/heatbridge/OpenstackContext.py
diff options
context:
space:
mode:
Diffstat (limited to 'heatbridge/heatbridge/OpenstackContext.py')
-rw-r--r--heatbridge/heatbridge/OpenstackContext.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/heatbridge/heatbridge/OpenstackContext.py b/heatbridge/heatbridge/OpenstackContext.py
new file mode 100644
index 0000000..5e852a2
--- /dev/null
+++ b/heatbridge/heatbridge/OpenstackContext.py
@@ -0,0 +1,16 @@
+class OpenstackContext:
+ """OpenstackContext is a simple class that holds the provided information that heatbridge uses."""
+
+ #this holds the info of the openstack clients
+ username = None;
+ password = None;
+ tenant = None;
+ region = None;
+ owner = None;
+
+ def __init__(self, username, password, tenant, region, owner):
+ self.username = username;
+ self.password = password;
+ self.tenant = tenant;
+ self.region = region;
+ self.owner = owner; \ No newline at end of file