diff options
author | Yang Xu <yang.xu3@huawei.com> | 2018-09-18 10:51:22 -0400 |
---|---|---|
committer | Yang Xu <yang.xu3@huawei.com> | 2018-09-18 12:01:24 -0400 |
commit | b49dba16c3f8e87dd73654dc61348b799278d754 (patch) | |
tree | ba543d2ccdfac97cc4de178472458d21971ed197 /robot/assets/cds/template_vnf.json | |
parent | bb2dcb77e208a324ee9a53889e3a6445f66e2232 (diff) |
Robot script triggering SO Macro for vFW use case
Change-Id: I1944e3fa5f20091d7f6f7b58673f2ef5e51a3fe4
Issue-ID: CCSDK-537
Signed-off-by: Yang Xu <yang.xu3@huawei.com>
Diffstat (limited to 'robot/assets/cds/template_vnf.json')
-rw-r--r-- | robot/assets/cds/template_vnf.json | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/robot/assets/cds/template_vnf.json b/robot/assets/cds/template_vnf.json new file mode 100644 index 00000000..b815c536 --- /dev/null +++ b/robot/assets/cds/template_vnf.json @@ -0,0 +1,40 @@ +{ + "modelInfo": { + "modelType": "vnf", + "modelName": "${vnf_model_name}", + "modelVersionId": "${vnf_model_version_id}", + "modelCustomizationName": "${vnf_model_customization_name}", + "modelCustomizationId": "${vnf_model_customization_id}" + }, + "cloudConfiguration": { + "lcpCloudRegionId": "${cloud_region}", + "tenantId": "${tenant_id}" + }, + "platform": { + "platformName": "test" + }, + "lineOfBusiness": { + "lineOfBusinessName": "someValue" + }, + "productFamilyId": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb", + "instanceName": "${vnf_name}", + "instanceParams": [], + "vfModules": [ + { + "modelInfo": { + "modelType": "vfModule", + "modelName": "${vf_module_model_name}", + "modelVersionId": "${vf_module_model_version_id}", + "modelCustomizationId": "${vf_module_model_customization_id}" + }, + "instanceName": "${vf_module_name}", + "instanceParams": [ + { + "vfw_param1": "24", + "vfw_param2": "24", + "vfw_param3": "24" + } + ] + } + ] +} |