aboutsummaryrefslogtreecommitdiffstats
path: root/heatbridge/heatbridge/OpenstackContext.py
diff options
context:
space:
mode:
authorAh <Ashwini.Ah@arris.com>2018-09-28 12:37:17 +0530
committerAh <Ashwini.Ah@arris.com>2018-10-01 17:01:45 +0530
commitc3bca52168627ffe915f39b1e03e5505a8a68176 (patch)
treea9194843b4ae0f13d40550324d7002628caafb54 /heatbridge/heatbridge/OpenstackContext.py
parent5d5597da33bc4c487c7552fe468ce8184d2a0579 (diff)
Support for Keystone V33.0.1-ONAP3.0.0-ONAPcasablanca
Issue-ID: TEST-39 Change-Id: I912e6d8b57d5be78cf6831daa5b6081388c03c6e Signed-off-by: Ah <Ashwini.Ah@arris.com>
Diffstat (limited to 'heatbridge/heatbridge/OpenstackContext.py')
-rw-r--r--heatbridge/heatbridge/OpenstackContext.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/heatbridge/heatbridge/OpenstackContext.py b/heatbridge/heatbridge/OpenstackContext.py
index 5e852a2..55661d3 100644
--- a/heatbridge/heatbridge/OpenstackContext.py
+++ b/heatbridge/heatbridge/OpenstackContext.py
@@ -7,10 +7,14 @@ class OpenstackContext:
tenant = None;
region = None;
owner = None;
+ domain_id = None;
+ project_name = None;
- def __init__(self, username, password, tenant, region, owner):
+ def __init__(self, username, password, tenant, region, owner, domain_id, project_name):
self.username = username;
self.password = password;
self.tenant = tenant;
self.region = region;
- self.owner = owner; \ No newline at end of file
+ self.owner = owner;
+ self.domain_id = domain_id;
+ self.project_name = project_name;