summaryrefslogtreecommitdiffstats
path: root/vnftest/onap/lifecycle/create_region.yaml
diff options
context:
space:
mode:
authorMoshe <moshehoa@amdocs.com>2018-04-08 21:37:43 +0300
committerMoshe <moshehoa@amdocs.com>2018-05-14 18:05:32 +0300
commit82aeca18c66dc4c312a57f24ed3c4c33a2063070 (patch)
tree9fad6581a0722e866b937cf3955b1e2d2cd6d4fa /vnftest/onap/lifecycle/create_region.yaml
parentdcfc64ef46b52769f03b6ed06e23b455c8ed69e5 (diff)
Refactor api definition yamls to support jinja2
Issue-ID: VNFSDK-181 Change-Id: Ibff00e985f95b400f08d4de4021dc3a8ab235ad7 Signed-off-by: Moshe <moshehoa@amdocs.com> Support creation of multiple vf-modules per vnf Issue-ID: VNFSDK-264 Change-Id: I45054bc4bb721d7df89653e99fafe61297939504 Signed-off-by: Moshe <moshehoa@amdocs.com> fix tests Issue-ID: VNFSDK-264 Change-Id: I077289bfcd4c68b0191fd74c4e02e07a67f5104f Signed-off-by: Moshe <moshehoa@amdocs.com>
Diffstat (limited to 'vnftest/onap/lifecycle/create_region.yaml')
-rw-r--r--vnftest/onap/lifecycle/create_region.yaml45
1 files changed, 20 insertions, 25 deletions
diff --git a/vnftest/onap/lifecycle/create_region.yaml b/vnftest/onap/lifecycle/create_region.yaml
index 1a67f41..41da02a 100644
--- a/vnftest/onap/lifecycle/create_region.yaml
+++ b/vnftest/onap/lifecycle/create_region.yaml
@@ -13,28 +13,23 @@
##############################################################################
---
-method: "PUT"
-url: "http://{aai_ip}:30232/aai/v8/cloud-infrastructure/cloud-regions/cloud-region/{cloud_owner}/RegionOne"
-headers: {
- "Content-Type": "application/json",
- "Accept": "application/json",
- "Authorization": "Basic QUFJOkFBSQ==",
- "X-FromAppId": "AAI",
- "X-TransactionId": "get_aai_subscr"
- }
-body: {
- "cloud-owner": "{cloud_owner}",
- "cloud-region-id": "RegionOne",
- "cloud-region-version": "v1",
- "cloud-type": "SharedNode",
- "cloud-zone": "CloudZone",
- "owner-defined-type": "OwnerType",
- "tenants": {
- "tenant": [
- {
- "tenant-id": "{tenant_id}",
- "tenant-name": "{tenant_name}"
- }
- ]
- }
- }
+method: PUT
+url: http://{{aai_ip}}:30232/aai/v8/cloud-infrastructure/cloud-regions/cloud-region/{{cloud_owner}}/RegionOne
+headers:
+ Content-Type: application/json
+ Accept: application/json
+ Authorization: Basic QUFJOkFBSQ==
+ X-FromAppId: AAI
+ X-TransactionId: get_aai_subscr
+body:
+ cloud-owner: {{cloud_owner}}
+ cloud-region-id: RegionOne
+ cloud-region-version: v1
+ cloud-type: SharedNode
+ cloud-zone: CloudZone
+ owner-defined-type: OwnerType
+ tenants:
+ tenant:
+ -
+ tenant-id: {{tenant_id}}
+ tenant-name: {{tenant_name}} \ No newline at end of file