blob: 5e852a2155d5e20bff4fd4ba90bf21326a345c47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
|