Docs alignment with Casablanca 21/73121/1
authorSonsino, Ofir (os0695) <os0695@intl.att.com>
Tue, 20 Nov 2018 09:52:52 +0000 (11:52 +0200)
committerSonsino, Ofir (os0695) <os0695@intl.att.com>
Tue, 20 Nov 2018 09:52:52 +0000 (11:52 +0200)
Change-Id: I3a44dcf48919e694a06fa90b2c5f904f7c913a93
Issue-ID: VID-254
Signed-off-by: Sonsino, Ofir (os0695) <os0695@intl.att.com>
docs/administration.rst
docs/configuration.rst
vid-webpack-master/src/app/components/vnf-popup/vnf-popup.service.spec.ts [deleted file]

index 7227e70..1eec480 100644 (file)
@@ -23,4 +23,7 @@ Actions
   |  ``curl -X POST 'http://vid.api.simpledemo.onap.org:8080/vid/change-management/vnf_workflow_relation' -H 'Accept-Encoding: gzip, deflate' -H 'Content-Type:application/json' -d '{"workflowsDetails":[{"workflowName":"VNF In Place Software Update","vnfDetails":{"UUID":"X-X-X-X","invariantUUID":"Y-Y-Y-Y"}}, {"workflowName":"VNF Scale Out","vnfDetails":{"UUID":"X-X-X-X","invariantUUID":"Y-Y-Y-Y"}}]}'``
   
 - |  **VoLTE E2E services deployment support** 
-  |  VID supports VoLTE E2E services deployment. In order to trigger the E2E flow, the service category in the model (as SDC generates it) has to be set to "E2E Service".
\ No newline at end of file
+  |  VID supports VoLTE E2E services deployment. In order to trigger the E2E flow, the service category in the model (as SDC generates it) has to be set to "E2E Service".
+  
+- |  **Role management support** 
+  |  VID supports role management for its users with AAF integration. This feature is turned off by default. In order to activate it, update "role_management_activated" value in system.properties to "true".
\ No newline at end of file
index 6357d5a..ab75738 100644 (file)
@@ -18,6 +18,9 @@ system.properties file
 ``db.password``
   The password for the VID database
 
+``role_management_activated``
+  Role management activation flag, "false" by defauly. Change to "true" in order to activate this feature.
+  
 ``aai.server.url.base``
   Base URL for the A&AI server
 
diff --git a/vid-webpack-master/src/app/components/vnf-popup/vnf-popup.service.spec.ts b/vid-webpack-master/src/app/components/vnf-popup/vnf-popup.service.spec.ts
deleted file mode 100644 (file)
index 02296f7..0000000
+++ /dev/null
@@ -1,827 +0,0 @@
-import {VnfPopupService} from './vnf-popup-service';
-import {ServicePlanningService} from '../../services/service-planning.service';
-import {ServiceNodeTypes} from '../../shared/models/ServiceNodeTypes';
-import {NgRedux} from '@angular-redux/store';
-import {VNFModel} from '../../shared/models/vnfModel';
-import {VfModule} from '../../shared/models/vfModule';
-import {FormControl, FormGroup, Validators} from '@angular/forms';
-import {NumbersLettersUnderscoreValidator} from '../../shared/components/validators/numbersLettersUnderscore/numbersLettersUnderscore.validator';
-import {VnfInstanceDetailsService} from './vnf-instance-details/vnf-instance-details.service';
-import {ReflectiveInjector} from '@angular/core';
-
-export class MockAppStore<T> {
-}
-
-describe('Vnf popup service', () => {
-  let injector;
-  let service: VnfPopupService;
-  let fg: FormGroup;
-  let data = generateModelData();
-  let servicePopupDataModel = generateServicePopupDataModel();
-  let form: FormGroup = generateFormGroup();
-  beforeEach(() => {
-
-    let injector = ReflectiveInjector.resolveAndCreate([
-      VnfPopupService,
-      ServicePlanningService,
-      VnfInstanceDetailsService,
-      {provide: FormGroup, useClass: MockAppStore},
-      {provide: NgRedux, useClass: MockAppStore}
-    ]);
-
-    service = injector.get(VnfPopupService);
-    fg = injector.get(FormGroup);
-  });
-
-  describe('#updateVnfDataFromModel', () => {
-    it('update vnf data from model should return new vnf', (done: DoneFn) => {
-      let vnf: VNFModel = service.getModelFromResponse(data, ServiceNodeTypes.VF, '2017-388_ADIOD-vPE 1');
-
-      expect(vnf).toEqual(jasmine.any(VNFModel));
-      done();
-    });
-
-    it('update wrong vnf data from model should be undefined', (done: DoneFn) => {
-      let vnf: VNFModel = service.getModelFromResponse(data, ServiceNodeTypes.VF, '2017-388_ADIOD-vPE 3');
-
-      expect(vnf).toBeUndefined();
-      done();
-    });
-
-    it('update vfModule data from model should return new vfModule', (done: DoneFn) => {
-      let vfModule: VfModule = service.getModelFromResponse(data, ServiceNodeTypes.VFmodule, '2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1');
-
-      expect(vfModule).toEqual(jasmine.any(VfModule));
-      done();
-    });
-
-  });
-
-
-  describe('#onControlError', () => {
-    it('onControlError should return true if instanceName is not legal', (done: DoneFn) => {
-      form.controls['instanceName'].setValue('aaaa - aaa');
-
-      let result: boolean = service.onControlError(<any>servicePopupDataModel, form, false, false);
-      expect(result).toBeTruthy();
-      done();
-    });
-
-    it('onControlError should return false if instanceName is legal', (done: DoneFn) => {
-
-      form.controls['instanceName'].setValue('aaaa');
-      let result = service.onControlError(<any>servicePopupDataModel, form, false, false);
-      expect(result).toBeFalsy();
-      done();
-    });
-
-    it('onControlError should return true if instanceName is not unique', (done: DoneFn) => {
-
-      form.controls['instanceName'].setValue('aaaa');
-      let result = service.onControlError(<any>servicePopupDataModel, form, true, false);
-      expect(result).toBeTruthy();
-      done();
-    });
-
-    it('onControlError should return true if lcpRegions is empty', (done: DoneFn) => {
-      servicePopupDataModel.vnfPopupDataModel['lcpRegions'] = [];
-      let result = service.onControlError(<any>servicePopupDataModel, form, true, false);
-      expect(result).toBeTruthy();
-      done();
-    });
-
-    it('onControlError should return true if isNotUniqueVolumeGroupName is true', (done: DoneFn) => {
-      let result = service.onControlError(<any>servicePopupDataModel, form, true, true);
-      expect(result).toBeTruthy();
-      done();
-    })
-  });
-
-
-  function generateServicePopupDataModel() {
-    return {
-      'vnfPopupDataModel': JSON.parse('{"tenants" : [1,2,3],"lcpRegions":[1,2,3],"lcpRegionsTenantsMap":{},"productFamilies":[1,2,3],"lineOfBusinesses":[{"id":"ECOMP","name":"ECOMP"},{"id":"zzz1","name":"zzz1"}],"platforms":[{"id":"platform","name":"platform"},{"id":"xxx1","name":"xxx1"}],"rollbackOnFailure":[{"id":"true","name":"Rollback"}]}')
-    }
-  }
-
-  function generateFormGroup() {
-    return new FormGroup({
-      productFamilyId: new FormControl(),
-      lcpCloudRegionId: new FormControl(Validators.required),
-      tenantId: new FormControl({value: null, disabled: false}, Validators.required),
-      legacyRegion: new FormControl(),
-      lineOfBusiness: new FormControl(),
-      platformName: new FormControl(Validators.required),
-      instanceName: new FormControl({value: null}, Validators.compose([Validators.required, NumbersLettersUnderscoreValidator.valid]))
-    });
-  }
-
-  function generateModelData() {
-    return JSON.parse(JSON.stringify(
-      {
-      'service': {
-        'uuid': '2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd',
-        'invariantUuid': 'e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0',
-        'name': 'action-data',
-        'version': '1.0',
-        'toscaModelURL': null,
-        'category': '',
-        'serviceType': '',
-        'serviceRole': '',
-        'description': '',
-        'serviceEcompNaming': 'true',
-        'instantiationType': 'ClientConfig',
-        'inputs': {
-          '2017488_adiodvpe0_ASN': {
-            'type': 'string',
-            'description': 'AV/PE',
-            'entry_schema': null,
-            'constraints': [],
-            'required': true,
-            'default': 'AV_vPE'
-          },
-          'adiodvpe0_bandwidth': {
-            'type': 'string',
-            'description': 'Requested VPE bandwidth',
-            'entry_schema': null,
-            'constraints': [],
-            'required': true,
-            'default': '10'
-          },
-          '2017488_adiodvpe0_vnf_instance_name': {
-            'type': 'string',
-            'description': 'The hostname assigned to the vpe.',
-            'entry_schema': null,
-            'constraints': [],
-            'required': true,
-            'default': 'mtnj309me6'
-          },
-          '2017488_adiodvpe0_vnf_config_template_version': {
-            'type': 'string',
-            'description': 'VPE Software Version',
-            'entry_schema': null,
-            'constraints': [],
-            'required': true,
-            'default': '17.2'
-          },
-          '2017488_adiodvpe0_AIC_CLLI': {
-            'type': 'string',
-            'description': 'AIC Site CLLI',
-            'entry_schema': null,
-            'constraints': [],
-            'required': true,
-            'default': 'ATLMY8GA'
-          },
-          'adiodvpe0_bandwidth_units': {
-            'type': 'string',
-            'description': 'Units of bandwidth',
-            'entry_schema': null,
-            'constraints': [],
-            'required': true,
-            'default': 'Gbps'
-          }
-        }
-      },
-      'vnfs': {
-        '2017-388_ADIOD-vPE 1': {
-          'uuid': '0903e1c0-8e03-4936-b5c2-260653b96413',
-          'invariantUuid': '00beb8f9-6d39-452f-816d-c709b9cbb87d',
-          'description': 'Name ADIOD vPE Description The provider edge function for the ADIOD service supported by the Junipers VMX product Category Router Vendor Juniper Vendor Release Code 17.2 Owners Mary Fragale. Updated 9-25 to use v8.0 of the Juniper Valid 2 VLM',
-          'name': '2017-388_ADIOD-vPE',
-          'version': '1.0',
-          'customizationUuid': '280dec31-f16d-488b-9668-4aae55d6648a',
-          'inputs': {
-            'vnf_config_template_version': {
-              'type': 'string',
-              'description': 'VPE Software Version',
-              'entry_schema': null,
-              'constraints': [],
-              'required': true,
-              'default': '17.2'
-            },
-            'bandwidth_units': {
-              'type': 'string',
-              'description': 'Units of bandwidth',
-              'entry_schema': null,
-              'constraints': [],
-              'required': true,
-              'default': 'Gbps'
-            },
-            'bandwidth': {
-              'type': 'string',
-              'description': 'Requested VPE bandwidth',
-              'entry_schema': null,
-              'constraints': [],
-              'required': true,
-              'default': '10'
-            },
-            'AIC_CLLI': {
-              'type': 'string',
-              'description': 'AIC Site CLLI',
-              'entry_schema': null,
-              'constraints': [],
-              'required': true,
-              'default': 'ATLMY8GA'
-            },
-            'ASN': {
-              'type': 'string',
-              'description': 'AV/PE',
-              'entry_schema': null,
-              'constraints': [],
-              'required': true,
-              'default': 'AV_vPE'
-            },
-            'vnf_instance_name': {
-              'type': 'string',
-              'description': 'The hostname assigned to the vpe.',
-              'entry_schema': null,
-              'constraints': [],
-              'required': true,
-              'default': 'mtnj309me6'
-            }
-          },
-          'commands': {
-            'vnf_config_template_version': {
-              'displayName': 'vnf_config_template_version',
-              'command': 'get_input',
-              'inputName': '2017488_adiodvpe0_vnf_config_template_version'
-            },
-            'bandwidth_units': {
-              'displayName': 'bandwidth_units',
-              'command': 'get_input',
-              'inputName': 'adiodvpe0_bandwidth_units'
-            },
-            'bandwidth': {'displayName': 'bandwidth', 'command': 'get_input', 'inputName': 'adiodvpe0_bandwidth'},
-            'AIC_CLLI': {'displayName': 'AIC_CLLI', 'command': 'get_input', 'inputName': '2017488_adiodvpe0_AIC_CLLI'},
-            'ASN': {'displayName': 'ASN', 'command': 'get_input', 'inputName': '2017488_adiodvpe0_ASN'},
-            'vnf_instance_name': {
-              'displayName': 'vnf_instance_name',
-              'command': 'get_input',
-              'inputName': '2017488_adiodvpe0_vnf_instance_name'
-            }
-          },
-          'properties': {
-            'vmxvre_retype': 'RE-VMX',
-            'vnf_config_template_version': 'get_input:2017488_adiodvpe0_vnf_config_template_version',
-            'sriov44_net_id': '48d399b3-11ee-48a8-94d2-f0ea94d6be8d',
-            'int_ctl_net_id': '2f323477-6936-4d01-ac53-d849430281d9',
-            'vmxvpfe_sriov41_0_port_mac': '00:11:22:EF:AC:DF',
-            'int_ctl_net_name': 'VMX-INTXI',
-            'vmx_int_ctl_prefix': '128.0.0.0',
-            'sriov43_net_id': 'da349ca1-6de9-4548-be88-2d88e99bfef5',
-            'sriov42_net_id': '760669ba-013d-4d9b-b0e7-4151fe2e6279',
-            'sriov41_net_id': '25ad52d5-c165-40f8-b3b0-ddfc2373280a',
-            'nf_type': 'vPE',
-            'vmxvpfe_int_ctl_ip_1': '128.0.0.16',
-            'is_AVPN_service': 'false',
-            'vmx_RSG_name': 'vREXI-affinity',
-            'vmx_int_ctl_forwarding': 'l2',
-            'vmxvre_oam_ip_0': '10.40.123.5',
-            'vmxvpfe_sriov44_0_port_mac': '00:11:22:EF:AC:DF',
-            'vmxvpfe_sriov41_0_port_vlanstrip': 'false',
-            'vmxvpfe_sriov42_0_port_vlanfilter': '4001',
-            'vmxvpfe_sriov44_0_port_unknownunicastallow': 'true',
-            'vmxvre_image_name_0': 'VRE-ENGINE_17.2-S2.1.qcow2',
-            'vmxvre_instance': '0',
-            'vmxvpfe_sriov43_0_port_mac': '00:11:22:EF:AC:DF',
-            'vmxvre_flavor_name': 'ns.c1r16d32.v5',
-            'vmxvpfe_volume_size_0': '40.0',
-            'vmxvpfe_sriov43_0_port_vlanfilter': '4001',
-            'nf_naming': '{ecomp_generated_naming=true}',
-            'nf_naming_code': 'Navneet',
-            'vmxvre_name_0': 'vREXI',
-            'vmxvpfe_sriov42_0_port_vlanstrip': 'false',
-            'vmxvpfe_volume_name_0': 'vPFEXI_FBVolume',
-            'vmx_RSG_id': 'bd89a33c-13c3-4a04-8fde-1a57eb123141',
-            'vmxvpfe_image_name_0': 'VPE_ROUTING-ENGINE_17.2R1-S2.1.qcow2',
-            'vmxvpfe_sriov43_0_port_unknownunicastallow': 'true',
-            'vmxvpfe_sriov44_0_port_unknownmulticastallow': 'true',
-            'vmxvre_console': 'vidconsole',
-            'vmxvpfe_sriov44_0_port_vlanfilter': '4001',
-            'vmxvpfe_sriov42_0_port_mac': '00:11:22:EF:AC:DF',
-            'vmxvpfe_volume_id_0': '47cede15-da2f-4397-a101-aa683220aff3',
-            'vmxvpfe_sriov42_0_port_unknownmulticastallow': 'true',
-            'vmxvpfe_sriov44_0_port_vlanstrip': 'false',
-            'vf_module_id': '123',
-            'nf_function': 'JAI',
-            'vmxvpfe_sriov43_0_port_unknownmulticastallow': 'true',
-            'vmxvre_int_ctl_ip_0': '128.0.0.1',
-            'AIC_CLLI': 'get_input:2017488_adiodvpe0_AIC_CLLI',
-            'vnf_name': 'mtnj309me6vre',
-            'vmxvpfe_sriov41_0_port_unknownunicastallow': 'true',
-            'vmxvre_volume_type_1': 'HITACHI',
-            'vmxvpfe_sriov44_0_port_broadcastallow': 'true',
-            'vmxvre_volume_type_0': 'HITACHI',
-            'vmxvpfe_volume_type_0': 'HITACHI',
-            'vmxvpfe_sriov43_0_port_broadcastallow': 'true',
-            'bandwidth_units': 'get_input:adiodvpe0_bandwidth_units',
-            'vnf_id': '123',
-            'vmxvre_oam_prefix': '24',
-            'availability_zone_0': 'mtpocfo-kvm-az01',
-            'ASN': 'get_input:2017488_adiodvpe0_ASN',
-            'vmxvre_chassis_i2cid': '161',
-            'vmxvpfe_name_0': 'vPFEXI',
-            'bandwidth': 'get_input:adiodvpe0_bandwidth',
-            'availability_zone_max_count': '1',
-            'vmxvre_volume_size_0': '45.0',
-            'vmxvre_volume_size_1': '50.0',
-            'vmxvpfe_sriov42_0_port_broadcastallow': 'true',
-            'vmxvre_oam_gateway': '10.40.123.1',
-            'vmxvre_volume_name_1': 'vREXI_FAVolume',
-            'vmxvre_ore_present': '0',
-            'vmxvre_volume_name_0': 'vREXI_FBVolume',
-            'vmxvre_type': '0',
-            'vnf_instance_name': 'get_input:2017488_adiodvpe0_vnf_instance_name',
-            'vmxvpfe_sriov41_0_port_unknownmulticastallow': 'true',
-            'oam_net_id': 'b95eeb1d-d55d-4827-abb4-8ebb94941429',
-            'vmx_int_ctl_len': '24',
-            'vmxvpfe_sriov43_0_port_vlanstrip': 'false',
-            'vmxvpfe_sriov41_0_port_broadcastallow': 'true',
-            'vmxvre_volume_id_1': '6e86797e-03cd-4fdc-ba72-2957119c746d',
-            'vmxvpfe_sriov41_0_port_vlanfilter': '4001',
-            'nf_role': 'Testing',
-            'vmxvre_volume_id_0': 'f4eacb79-f687-4e9d-b760-21847c8bb15a',
-            'vmxvpfe_sriov42_0_port_unknownunicastallow': 'true',
-            'vmxvpfe_flavor_name': 'ns.c20r16d25.v5'
-          },
-          'type': 'VF',
-          'modelCustomizationName': '2017-388_ADIOD-vPE 1',
-          'vfModules': {},
-          'volumeGroups': {}
-        },
-        '2017-388_ADIOD-vPE 0': {
-          'uuid': 'afacccf6-397d-45d6-b5ae-94c39734b168',
-          'invariantUuid': '72e465fe-71b1-4e7b-b5ed-9496118ff7a8',
-          'description': 'Name ADIOD vPE Description The provider edge function for the ADIOD service supported by the Junipers VMX product Category Router Vendor Juniper Vendor Release Code 17.2 Owners Mary Fragale. Updated 9-25 to use v8.0 of the Juniper Valid 2 VLM',
-          'name': '2017-388_ADIOD-vPE',
-          'version': '4.0',
-          'customizationUuid': 'b3c76f73-eeb5-4fb6-9d31-72a889f1811c',
-          'inputs': {
-            'vnf_config_template_version': {
-              'type': 'string',
-              'description': 'VPE Software Version',
-              'entry_schema': null,
-              'constraints': [],
-              'required': true,
-              'default': '17.2'
-            },
-            'bandwidth_units': {
-              'type': 'string',
-              'description': 'Units of bandwidth',
-              'entry_schema': null,
-              'constraints': [],
-              'required': true,
-              'default': 'Gbps'
-            },
-            'bandwidth': {
-              'type': 'string',
-              'description': 'Requested VPE bandwidth',
-              'entry_schema': null,
-              'constraints': [],
-              'required': true,
-              'default': '10'
-            },
-            'AIC_CLLI': {
-              'type': 'string',
-              'description': 'AIC Site CLLI',
-              'entry_schema': null,
-              'constraints': [],
-              'required': true,
-              'default': 'ATLMY8GA'
-            },
-            'ASN': {
-              'type': 'string',
-              'description': 'AV/PE',
-              'entry_schema': null,
-              'constraints': [],
-              'required': true,
-              'default': 'AV_vPE'
-            },
-            'vnf_instance_name': {
-              'type': 'string',
-              'description': 'The hostname assigned to the vpe.',
-              'entry_schema': null,
-              'constraints': [],
-              'required': true,
-              'default': 'mtnj309me6'
-            }
-          },
-          'commands': {
-            'vnf_config_template_version': {
-              'displayName': 'vnf_config_template_version',
-              'command': 'get_input',
-              'inputName': '2017488_adiodvpe0_vnf_config_template_version'
-            },
-            'bandwidth_units': {
-              'displayName': 'bandwidth_units',
-              'command': 'get_input',
-              'inputName': 'adiodvpe0_bandwidth_units'
-            },
-            'bandwidth': {'displayName': 'bandwidth', 'command': 'get_input', 'inputName': 'adiodvpe0_bandwidth'},
-            'AIC_CLLI': {'displayName': 'AIC_CLLI', 'command': 'get_input', 'inputName': '2017488_adiodvpe0_AIC_CLLI'},
-            'ASN': {'displayName': 'ASN', 'command': 'get_input', 'inputName': '2017488_adiodvpe0_ASN'},
-            'vnf_instance_name': {
-              'displayName': 'vnf_instance_name',
-              'command': 'get_input',
-              'inputName': '2017488_adiodvpe0_vnf_instance_name'
-            }
-          },
-          'properties': {
-            'vmxvre_retype': 'RE-VMX',
-            'vnf_config_template_version': 'get_input:2017488_adiodvpe0_vnf_config_template_version',
-            'sriov44_net_id': '48d399b3-11ee-48a8-94d2-f0ea94d6be8d',
-            'int_ctl_net_id': '2f323477-6936-4d01-ac53-d849430281d9',
-            'vmxvpfe_sriov41_0_port_mac': '00:11:22:EF:AC:DF',
-            'int_ctl_net_name': 'VMX-INTXI',
-            'vmx_int_ctl_prefix': '128.0.0.0',
-            'sriov43_net_id': 'da349ca1-6de9-4548-be88-2d88e99bfef5',
-            'sriov42_net_id': '760669ba-013d-4d9b-b0e7-4151fe2e6279',
-            'sriov41_net_id': '25ad52d5-c165-40f8-b3b0-ddfc2373280a',
-            'nf_type': 'vPE',
-            'vmxvpfe_int_ctl_ip_1': '128.0.0.16',
-            'is_AVPN_service': 'false',
-            'vmx_RSG_name': 'vREXI-affinity',
-            'vmx_int_ctl_forwarding': 'l2',
-            'vmxvre_oam_ip_0': '10.40.123.5',
-            'vmxvpfe_sriov44_0_port_mac': '00:11:22:EF:AC:DF',
-            'vmxvpfe_sriov41_0_port_vlanstrip': 'false',
-            'vmxvpfe_sriov42_0_port_vlanfilter': '4001',
-            'vmxvpfe_sriov44_0_port_unknownunicastallow': 'true',
-            'vmxvre_image_name_0': 'VRE-ENGINE_17.2-S2.1.qcow2',
-            'vmxvre_instance': '0',
-            'vmxvpfe_sriov43_0_port_mac': '00:11:22:EF:AC:DF',
-            'vmxvre_flavor_name': 'ns.c1r16d32.v5',
-            'vmxvpfe_volume_size_0': '40.0',
-            'vmxvpfe_sriov43_0_port_vlanfilter': '4001',
-            'nf_naming': '{ecomp_generated_naming=true}',
-            'nf_naming_code': 'Navneet',
-            'vmxvre_name_0': 'vREXI',
-            'vmxvpfe_sriov42_0_port_vlanstrip': 'false',
-            'vmxvpfe_volume_name_0': 'vPFEXI_FBVolume',
-            'vmx_RSG_id': 'bd89a33c-13c3-4a04-8fde-1a57eb123141',
-            'vmxvpfe_image_name_0': 'VPE_ROUTING-ENGINE_17.2R1-S2.1.qcow2',
-            'vmxvpfe_sriov43_0_port_unknownunicastallow': 'true',
-            'vmxvpfe_sriov44_0_port_unknownmulticastallow': 'true',
-            'vmxvre_console': 'vidconsole',
-            'vmxvpfe_sriov44_0_port_vlanfilter': '4001',
-            'vmxvpfe_sriov42_0_port_mac': '00:11:22:EF:AC:DF',
-            'vmxvpfe_volume_id_0': '47cede15-da2f-4397-a101-aa683220aff3',
-            'vmxvpfe_sriov42_0_port_unknownmulticastallow': 'true',
-            'vmxvpfe_sriov44_0_port_vlanstrip': 'false',
-            'vf_module_id': '123',
-            'nf_function': 'JAI',
-            'vmxvpfe_sriov43_0_port_unknownmulticastallow': 'true',
-            'vmxvre_int_ctl_ip_0': '128.0.0.1',
-            'AIC_CLLI': 'get_input:2017488_adiodvpe0_AIC_CLLI',
-            'vnf_name': 'mtnj309me6vre',
-            'vmxvpfe_sriov41_0_port_unknownunicastallow': 'true',
-            'vmxvre_volume_type_1': 'HITACHI',
-            'vmxvpfe_sriov44_0_port_broadcastallow': 'true',
-            'vmxvre_volume_type_0': 'HITACHI',
-            'vmxvpfe_volume_type_0': 'HITACHI',
-            'vmxvpfe_sriov43_0_port_broadcastallow': 'true',
-            'bandwidth_units': 'get_input:adiodvpe0_bandwidth_units',
-            'vnf_id': '123',
-            'vmxvre_oam_prefix': '24',
-            'availability_zone_0': 'mtpocfo-kvm-az01',
-            'ASN': 'get_input:2017488_adiodvpe0_ASN',
-            'vmxvre_chassis_i2cid': '161',
-            'vmxvpfe_name_0': 'vPFEXI',
-            'bandwidth': 'get_input:adiodvpe0_bandwidth',
-            'availability_zone_max_count': '1',
-            'vmxvre_volume_size_0': '45.0',
-            'vmxvre_volume_size_1': '50.0',
-            'vmxvpfe_sriov42_0_port_broadcastallow': 'true',
-            'vmxvre_oam_gateway': '10.40.123.1',
-            'vmxvre_volume_name_1': 'vREXI_FAVolume',
-            'vmxvre_ore_present': '0',
-            'vmxvre_volume_name_0': 'vREXI_FBVolume',
-            'vmxvre_type': '0',
-            'vnf_instance_name': 'get_input:2017488_adiodvpe0_vnf_instance_name',
-            'vmxvpfe_sriov41_0_port_unknownmulticastallow': 'true',
-            'oam_net_id': 'b95eeb1d-d55d-4827-abb4-8ebb94941429',
-            'vmx_int_ctl_len': '24',
-            'vmxvpfe_sriov43_0_port_vlanstrip': 'false',
-            'vmxvpfe_sriov41_0_port_broadcastallow': 'true',
-            'vmxvre_volume_id_1': '6e86797e-03cd-4fdc-ba72-2957119c746d',
-            'vmxvpfe_sriov41_0_port_vlanfilter': '4001',
-            'nf_role': 'Testing',
-            'vmxvre_volume_id_0': 'f4eacb79-f687-4e9d-b760-21847c8bb15a',
-            'vmxvpfe_sriov42_0_port_unknownunicastallow': 'true',
-            'vmxvpfe_flavor_name': 'ns.c20r16d25.v5'
-          },
-          'type': 'VF',
-          'modelCustomizationName': '2017-388_ADIOD-vPE 0',
-          'vfModules': {},
-          'volumeGroups': {}
-        },
-        '2017488_ADIODvPE 0': {
-          'uuid': '69e09f68-8b63-4cc9-b9ff-860960b5db09',
-          'invariantUuid': '72e465fe-71b1-4e7b-b5ed-9496118ff7a8',
-          'description': 'Name ADIOD vPE Description The provider edge function for the ADIOD service supported by the Junipers VMX product Category Router Vendor Juniper Vendor Release Code 17.2 Owners Mary Fragale. Updated 9-25 to use v8.0 of the Juniper Valid 2 VLM',
-          'name': '2017488_ADIODvPE',
-          'version': '5.0',
-          'customizationUuid': '1da7b585-5e61-4993-b95e-8e6606c81e45',
-          'inputs': {
-            'vnf_config_template_version': {
-              'type': 'string',
-              'description': 'VPE Software Version',
-              'entry_schema': null,
-              'constraints': [],
-              'required': true,
-              'default': '17.2'
-            },
-            'bandwidth_units': {
-              'type': 'string',
-              'description': 'Units of bandwidth',
-              'entry_schema': null,
-              'constraints': [],
-              'required': true,
-              'default': 'Gbps'
-            },
-            'bandwidth': {
-              'type': 'string',
-              'description': 'Requested VPE bandwidth',
-              'entry_schema': null,
-              'constraints': [],
-              'required': true,
-              'default': '10'
-            },
-            'AIC_CLLI': {
-              'type': 'string',
-              'description': 'AIC Site CLLI',
-              'entry_schema': null,
-              'constraints': [],
-              'required': true,
-              'default': 'ATLMY8GA'
-            },
-            'ASN': {
-              'type': 'string',
-              'description': 'AV/PE',
-              'entry_schema': null,
-              'constraints': [],
-              'required': true,
-              'default': 'AV_vPE'
-            },
-            'vnf_instance_name': {
-              'type': 'string',
-              'description': 'The hostname assigned to the vpe.',
-              'entry_schema': null,
-              'constraints': [],
-              'required': true,
-              'default': 'mtnj309me6'
-            }
-          },
-          'commands': {
-            'vnf_config_template_version': {
-              'displayName': 'vnf_config_template_version',
-              'command': 'get_input',
-              'inputName': '2017488_adiodvpe0_vnf_config_template_version'
-            },
-            'bandwidth_units': {
-              'displayName': 'bandwidth_units',
-              'command': 'get_input',
-              'inputName': 'adiodvpe0_bandwidth_units'
-            },
-            'bandwidth': {'displayName': 'bandwidth', 'command': 'get_input', 'inputName': 'adiodvpe0_bandwidth'},
-            'AIC_CLLI': {'displayName': 'AIC_CLLI', 'command': 'get_input', 'inputName': '2017488_adiodvpe0_AIC_CLLI'},
-            'ASN': {'displayName': 'ASN', 'command': 'get_input', 'inputName': '2017488_adiodvpe0_ASN'},
-            'vnf_instance_name': {
-              'displayName': 'vnf_instance_name',
-              'command': 'get_input',
-              'inputName': '2017488_adiodvpe0_vnf_instance_name'
-            }
-          },
-          'properties': {
-            'vmxvre_retype': 'RE-VMX',
-            'vnf_config_template_version': 'get_input:2017488_adiodvpe0_vnf_config_template_version',
-            'sriov44_net_id': '48d399b3-11ee-48a8-94d2-f0ea94d6be8d',
-            'int_ctl_net_id': '2f323477-6936-4d01-ac53-d849430281d9',
-            'vmxvpfe_sriov41_0_port_mac': '00:11:22:EF:AC:DF',
-            'int_ctl_net_name': 'VMX-INTXI',
-            'vmx_int_ctl_prefix': '128.0.0.0',
-            'sriov43_net_id': 'da349ca1-6de9-4548-be88-2d88e99bfef5',
-            'sriov42_net_id': '760669ba-013d-4d9b-b0e7-4151fe2e6279',
-            'sriov41_net_id': '25ad52d5-c165-40f8-b3b0-ddfc2373280a',
-            'nf_type': 'vPE',
-            'vmxvpfe_int_ctl_ip_1': '128.0.0.16',
-            'is_AVPN_service': 'false',
-            'vmx_RSG_name': 'vREXI-affinity',
-            'vmx_int_ctl_forwarding': 'l2',
-            'vmxvre_oam_ip_0': '10.40.123.5',
-            'vmxvpfe_sriov44_0_port_mac': '00:11:22:EF:AC:DF',
-            'vmxvpfe_sriov41_0_port_vlanstrip': 'false',
-            'vmxvpfe_sriov42_0_port_vlanfilter': '4001',
-            'vmxvpfe_sriov44_0_port_unknownunicastallow': 'true',
-            'vmxvre_image_name_0': 'VRE-ENGINE_17.2-S2.1.qcow2',
-            'vmxvre_instance': '0',
-            'vmxvpfe_sriov43_0_port_mac': '00:11:22:EF:AC:DF',
-            'vmxvre_flavor_name': 'ns.c1r16d32.v5',
-            'vmxvpfe_volume_size_0': '40.0',
-            'vmxvpfe_sriov43_0_port_vlanfilter': '4001',
-            'nf_naming': '{ecomp_generated_naming=true}',
-            'nf_naming_code': 'Navneet',
-            'vmxvre_name_0': 'vREXI',
-            'vmxvpfe_sriov42_0_port_vlanstrip': 'false',
-            'vmxvpfe_volume_name_0': 'vPFEXI_FBVolume',
-            'vmx_RSG_id': 'bd89a33c-13c3-4a04-8fde-1a57eb123141',
-            'vmxvpfe_image_name_0': 'VPE_ROUTING-ENGINE_17.2R1-S2.1.qcow2',
-            'vmxvpfe_sriov43_0_port_unknownunicastallow': 'true',
-            'vmxvpfe_sriov44_0_port_unknownmulticastallow': 'true',
-            'vmxvre_console': 'vidconsole',
-            'vmxvpfe_sriov44_0_port_vlanfilter': '4001',
-            'vmxvpfe_sriov42_0_port_mac': '00:11:22:EF:AC:DF',
-            'vmxvpfe_volume_id_0': '47cede15-da2f-4397-a101-aa683220aff3',
-            'vmxvpfe_sriov42_0_port_unknownmulticastallow': 'true',
-            'vmxvpfe_sriov44_0_port_vlanstrip': 'false',
-            'vf_module_id': '123',
-            'nf_function': 'JAI',
-            'vmxvpfe_sriov43_0_port_unknownmulticastallow': 'true',
-            'vmxvre_int_ctl_ip_0': '128.0.0.1',
-            'AIC_CLLI': 'get_input:2017488_adiodvpe0_AIC_CLLI',
-            'vnf_name': 'mtnj309me6vre',
-            'vmxvpfe_sriov41_0_port_unknownunicastallow': 'true',
-            'vmxvre_volume_type_1': 'HITACHI',
-            'vmxvpfe_sriov44_0_port_broadcastallow': 'true',
-            'vmxvre_volume_type_0': 'HITACHI',
-            'vmxvpfe_volume_type_0': 'HITACHI',
-            'vmxvpfe_sriov43_0_port_broadcastallow': 'true',
-            'bandwidth_units': 'get_input:adiodvpe0_bandwidth_units',
-            'vnf_id': '123',
-            'vmxvre_oam_prefix': '24',
-            'availability_zone_0': 'mtpocfo-kvm-az01',
-            'ASN': 'get_input:2017488_adiodvpe0_ASN',
-            'vmxvre_chassis_i2cid': '161',
-            'vmxvpfe_name_0': 'vPFEXI',
-            'bandwidth': 'get_input:adiodvpe0_bandwidth',
-            'availability_zone_max_count': '1',
-            'vmxvre_volume_size_0': '45.0',
-            'vmxvre_volume_size_1': '50.0',
-            'vmxvpfe_sriov42_0_port_broadcastallow': 'true',
-            'vmxvre_oam_gateway': '10.40.123.1',
-            'vmxvre_volume_name_1': 'vREXI_FAVolume',
-            'vmxvre_ore_present': '0',
-            'vmxvre_volume_name_0': 'vREXI_FBVolume',
-            'vmxvre_type': '0',
-            'vnf_instance_name': 'get_input:2017488_adiodvpe0_vnf_instance_name',
-            'vmxvpfe_sriov41_0_port_unknownmulticastallow': 'true',
-            'oam_net_id': 'b95eeb1d-d55d-4827-abb4-8ebb94941429',
-            'vmx_int_ctl_len': '24',
-            'vmxvpfe_sriov43_0_port_vlanstrip': 'false',
-            'vmxvpfe_sriov41_0_port_broadcastallow': 'true',
-            'vmxvre_volume_id_1': '6e86797e-03cd-4fdc-ba72-2957119c746d',
-            'vmxvpfe_sriov41_0_port_vlanfilter': '4001',
-            'nf_role': 'Testing',
-            'vmxvre_volume_id_0': 'f4eacb79-f687-4e9d-b760-21847c8bb15a',
-            'vmxvpfe_sriov42_0_port_unknownunicastallow': 'true',
-            'vmxvpfe_flavor_name': 'ns.c20r16d25.v5'
-          },
-          'type': 'VF',
-          'modelCustomizationName': '2017488_ADIODvPE 0',
-          'vfModules': {
-            '2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1': {
-              'uuid': '25284168-24bb-4698-8cb4-3f509146eca5',
-              'invariantUuid': '7253ff5c-97f0-4b8b-937c-77aeb4d79aa1',
-              'customizationUuid': 'f7e7c365-60cf-49a9-9ebf-a1aa11b9d401',
-              'description': null,
-              'name': '2017488AdiodVpe..ADIOD_vRE_BV..module-1',
-              'version': '6',
-              'modelCustomizationName': '2017488AdiodVpe..ADIOD_vRE_BV..module-1',
-              'properties': {'minCountInstances': 0, 'maxCountInstances': null, 'initialCount': 0},
-              'commands': {},
-              'volumeGroupAllowed': true,
-              'inputs': {
-                '2017488_adiodvpe0_vnf_config_template_version': {
-                  'type': 'string',
-                  'description': 'VPE Software Version',
-                  'entry_schema': null,
-                  'constraints': [],
-                  'required': true,
-                  'default': '17.2'
-                },
-                '2017488_adiodvpe0_AIC_CLLI': {
-                  'type': 'string',
-                  'description': 'AIC Site CLLI',
-                  'entry_schema': null,
-                  'constraints': [],
-                  'required': true,
-                  'default': 'ATLMY8GA'
-                }
-              }
-            },
-            '2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0': {
-              'uuid': 'f8360508-3f17-4414-a2ed-6bc71161e8db',
-              'invariantUuid': 'b34833bb-6aa9-4ad6-a831-70b06367a091',
-              'customizationUuid': 'a55961b2-2065-4ab0-a5b7-2fcee1c227e3',
-              'description': null,
-              'name': '2017488AdiodVpe..ADIOD_base_vPE_BV..module-0',
-              'version': '5',
-              'modelCustomizationName': '2017488AdiodVpe..ADIOD_base_vPE_BV..module-0',
-              'properties': {'minCountInstances': 1, 'maxCountInstances': 1, 'initialCount': 1},
-              'commands': {},
-              'volumeGroupAllowed': false,
-              'inputs': {
-                '2017488_adiodvpe0_ASN': {
-                  'type': 'string',
-                  'description': 'AV/PE',
-                  'entry_schema': null,
-                  'constraints': [],
-                  'required': true,
-                  'default': 'AV_vPE'
-                },
-                'adiodvpe0_bandwidth': {
-                  'type': 'string',
-                  'description': 'Requested VPE bandwidth',
-                  'entry_schema': null,
-                  'constraints': [],
-                  'required': true,
-                  'default': '10'
-                }
-              }
-            },
-            '2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vPFE_BV..module-2': {
-              'uuid': '0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a',
-              'invariantUuid': 'eff8cc59-53a1-4101-aed7-8cf24ecf8339',
-              'customizationUuid': '3cd946bb-50e0-40d8-96d3-c9023520b557',
-              'description': null,
-              'name': '2017488AdiodVpe..ADIOD_vPFE_BV..module-2',
-              'version': '6',
-              'modelCustomizationName': '2017488AdiodVpe..ADIOD_vPFE_BV..module-2',
-              'properties': {'minCountInstances': 0, 'maxCountInstances': null, 'initialCount': 0},
-              'commands': {},
-              'volumeGroupAllowed': true,
-              'inputs': {}
-            }
-          },
-          'volumeGroups': {
-            '2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1': {
-              'uuid': '25284168-24bb-4698-8cb4-3f509146eca5',
-              'invariantUuid': '7253ff5c-97f0-4b8b-937c-77aeb4d79aa1',
-              'customizationUuid': 'f7e7c365-60cf-49a9-9ebf-a1aa11b9d401',
-              'description': null,
-              'name': '2017488AdiodVpe..ADIOD_vRE_BV..module-1',
-              'version': '6',
-              'modelCustomizationName': '2017488AdiodVpe..ADIOD_vRE_BV..module-1',
-              'properties': {'minCountInstances': 0, 'maxCountInstances': null, 'initialCount': 0}
-            },
-            '2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vPFE_BV..module-2': {
-              'uuid': '0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a',
-              'invariantUuid': 'eff8cc59-53a1-4101-aed7-8cf24ecf8339',
-              'customizationUuid': '3cd946bb-50e0-40d8-96d3-c9023520b557',
-              'description': null,
-              'name': '2017488AdiodVpe..ADIOD_vPFE_BV..module-2',
-              'version': '6',
-              'modelCustomizationName': '2017488AdiodVpe..ADIOD_vPFE_BV..module-2',
-              'properties': {'minCountInstances': 0, 'maxCountInstances': null, 'initialCount': 0}
-            }
-          }
-        }
-      },
-      'vfModules': {
-        '2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1': {
-          'uuid': '25284168-24bb-4698-8cb4-3f509146eca5',
-          'invariantUuid': '7253ff5c-97f0-4b8b-937c-77aeb4d79aa1',
-          'customizationUuid': 'f7e7c365-60cf-49a9-9ebf-a1aa11b9d401',
-          'description': null,
-          'name': '2017488AdiodVpe..ADIOD_vRE_BV..module-1',
-          'version': '6',
-          'modelCustomizationName': '2017488AdiodVpe..ADIOD_vRE_BV..module-1',
-          'properties': {'minCountInstances': 0, 'maxCountInstances': null, 'initialCount': 0},
-          'commands': {},
-          'volumeGroupAllowed': true
-        },
-        '2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0': {
-          'uuid': 'f8360508-3f17-4414-a2ed-6bc71161e8db',
-          'invariantUuid': 'b34833bb-6aa9-4ad6-a831-70b06367a091',
-          'customizationUuid': 'a55961b2-2065-4ab0-a5b7-2fcee1c227e3',
-          'description': null,
-          'name': '2017488AdiodVpe..ADIOD_base_vPE_BV..module-0',
-          'version': '5',
-          'modelCustomizationName': '2017488AdiodVpe..ADIOD_base_vPE_BV..module-0',
-          'properties': {'minCountInstances': 1, 'maxCountInstances': 1, 'initialCount': 1},
-          'commands': {},
-          'volumeGroupAllowed': false
-        },
-        '2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vPFE_BV..module-2': {
-          'uuid': '0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a',
-          'invariantUuid': 'eff8cc59-53a1-4101-aed7-8cf24ecf8339',
-          'customizationUuid': '3cd946bb-50e0-40d8-96d3-c9023520b557',
-          'description': null,
-          'name': '2017488AdiodVpe..ADIOD_vPFE_BV..module-2',
-          'version': '6',
-          'modelCustomizationName': '2017488AdiodVpe..ADIOD_vPFE_BV..module-2',
-          'properties': {'minCountInstances': 0, 'maxCountInstances': null, 'initialCount': 0},
-          'commands': {},
-          'volumeGroupAllowed': true
-        }
-      },
-      'networks': {},
-      'collectionResource': {},
-      'configurations': {},
-      'serviceProxies': {},
-      'pnfs': {}
-    }
-    ))
-  }
-
-});