blob: 1ad7064620a3b24a87115e7403ae27cc74d2f226 [file] [log] [blame]
Ittay Stern6f900cc2018-08-29 17:01:32 +03001///<reference path="../../../node_modules/cypress/types/index.d.ts"/>
2
3import {JsonBuilder} from "../../support/jsonBuilders/jsonBuilder";
4import {ServiceModel} from "../../support/jsonBuilders/models/service.model";
5
6describe('Network popup', function () {
7
8 var jsonBuilderAndMock: JsonBuilder<ServiceModel> = new JsonBuilder<ServiceModel>();
9
10 beforeEach(() => {
11 cy.window().then((win) => {
12 win.sessionStorage.clear();
13 cy.setReduxState();
14 cy.preventErrorsOnLoading();
15 cy.permissionVidMock();
16 cy.setTestApiParamToGR();
17 cy.initAAIMock();
18 cy.initVidMock();
19 cy.login();
20 })
21 });
22
23 afterEach(() => {
24 cy.screenshot();
25 });
26
27 describe('basic UI tests', () => {
28
29 it('Network(A-La-Carte) - create / edit / duplicate / delete', function () {
30 let redux = getReduxWithVNFSAndNetwork();
31 redux.service.serviceHierarchy['6b528779-44a3-4472-bdff-9cd15ec93450'].service.instantiationType = 'A-La-Carte';
32
33 cy.setReduxState(<any>redux);
34 cy.openIframe('app/ui/#/servicePlanning?serviceModelId=6b528779-44a3-4472-bdff-9cd15ec93450');
35 //create
36 cy.getElementByDataTestsId('node-ExtVL 0-add-btn').click({force: true}).then(() => {
37
38
39 verifyServiceModelNameInModelInfo();
40 cy.fillNetworkPopup();
41 });
42 });
43
44 it('Network (Macro) - create / edit / duplicate / delete', function () {
45
46 cy.setReduxState(<any>getReduxWithVNFSAndNetwork());
47 cy.openIframe('app/ui/#/servicePlanning?serviceModelId=6b528779-44a3-4472-bdff-9cd15ec93450');
48 //create
49 cy.getElementByDataTestsId('node-ExtVL 0-add-btn').click({force: true}).then(() => {
50 verifyServiceModelNameInModelInfo();
51 cy.fillNetworkPopup().then(()=>{
52 cy.getElementByDataTestsId('node-ddc3f20c-08b5-40fd-af72-c6d14636b986-ExtVL 0').should('be.visible');
53 cy.getElementByDataTestsId('numberButton').contains('1');
54
55 //Edit
56 cy.getElementByDataTestsId('node-ddc3f20c-08b5-40fd-af72-c6d14636b986-ExtVL 0-menu-btn').click({force: true})
57 .getElementByDataTestsId('context-menu-edit').click({force: true}).then(() => {
58 cy.checkIsOptionSelected('productFamily', 'a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb');
59 cy.checkIsOptionSelected('lcpRegion', 'hvf6');
60 cy.checkIsOptionSelected('tenant', '229bcdc6eaeb4ca59d55221141d01f8e');
61 cy.checkIsOptionSelected('lineOfBusiness', 'zzz1');
62 cy.checkIsOptionSelected('platform', 'xxx1');
63 //change platform value
64 cy.selectDropdownOptionByText('platform', 'platform');
65 cy.getElementByDataTestsId('form-set').click({force: true}).then(() => {
66 cy.getElementByDataTestsId('numberButton').contains('1');
67 cy.getElementByDataTestsId('node-ddc3f20c-08b5-40fd-af72-c6d14636b986-ExtVL 0-menu-btn').click({force: true})
68 .getElementByDataTestsId('context-menu-edit').click({force: true}).then(() => {
69 cy.checkIsOptionSelected('platform', 'platform');
70 // cancel button should close the dialog
71 cy.getElementByDataTestsId('cancelButton').click({force: true}).then(() => {
72 // duplicate network
73 cy.getElementByDataTestsId('node-ddc3f20c-08b5-40fd-af72-c6d14636b986-ExtVL 0-menu-btn').click({force: true})
74 .getElementByDataTestsId('context-menu-duplicate').click({force: true}).then(() => {
75 cy.getTagElementContainsText('button', 'Duplicate').click({force: true});
76 cy.getElementByDataTestsId('node-ddc3f20c-08b5-40fd-af72-c6d14636b986-ExtVL 0').should('have.length', 2);
77 cy.getElementByDataTestsId('numberButton').contains('2');
78 //delete
79 cy.getElementByDataTestsId('node-ddc3f20c-08b5-40fd-af72-c6d14636b986-ExtVL 0-menu-btn').eq(1).click({force: true})
80 cy.getElementByDataTestsId('context-menu-remove').click({force: true}).then(()=>{
81 cy.getElementByDataTestsId('numberButton').contains('1');
82 cy.getElementByDataTestsId('node-ddc3f20c-08b5-40fd-af72-c6d14636b986-ExtVL 0').should('have.length', 1);
83
84 })
85
86 });
87 });
88 })
89 })
90 });
91 });
92 });
93
94 });
95
96 it('Network dynamic inputs', function () {
97 let redux = getReduxWithVNFSAndNetwork();
98 redux.service.serviceHierarchy['6b528779-44a3-4472-bdff-9cd15ec93450'].networks['ExtVL 0'].inputs = <any>{
99 "vnf_config_template_version": {
100 "type": "string",
101 "description": "VPE Software Version",
102 'entry_schema': null,
103 "inputProperties": null,
104 "constraints": [],
105 "required": true,
106 "default": "17.2"
107 },
108 "bandwidth_units": {
109 "type": "string",
110 "description": "Units of bandwidth",
111 "entry_schema": null,
112 "inputProperties": null,
113 "constraints": [],
114 "required": false,
115 "default": "Gbps"
116 }
117 };
118 cy.setReduxState(<any>redux);
119 cy.openIframe('app/ui/#/servicePlanning?serviceModelId=6b528779-44a3-4472-bdff-9cd15ec93450');
120
121 cy.getElementByDataTestsId('node-ExtVL 0-add-btn').click({force: true}).then(() => {
122 //check if dynamic inputs exist
123 cy.getElementByDataTestsId('vnf_config_template_version');
124 cy.getElementByDataTestsId('bandwidth_units');
125
126 //check if required icon exists
127 cy.get('label').contains('VNF config template version:').should('have.class', 'required');
128 cy.get('label').contains('Bandwidth units:').should('not.have.class', 'required');
129
130 //set button should be disabled when some dynamic inputs not valid
131 cy.selectDropdownOptionByText('productFamily', 'Emanuel');
132 cy.selectDropdownOptionByText('lcpRegion', 'hvf6');
133 cy.selectDropdownOptionByText('tenant', 'AIN Web Tool-15-D-STTest2');
134 cy.selectDropdownOptionByText('lineOfBusiness', 'zzz1');
135 cy.selectDropdownOptionByText('platform', 'xxx1');
136 cy.getElementByDataTestsId('form-set').should('not.have.attr', 'disabled');
137
138 // clear required dynamic input.
139 cy.getElementByDataTestsId('vnf_config_template_version').clear();
140 cy.getElementByDataTestsId('form-set').should('have.attr', 'disabled');
141
142 });
143 });
144
145 it('Edit service with network - delete 1 create 1', function () {
146 const SUBSCRIBER_ID: string = "e433710f-9217-458d-a79d-1c7aff376d89";
147 const SERVICE_TYPE: string = "TYLER SILVIA";
148 const SERVICE_INSTANCE_ID: string = "f8791436-8d55-4fde-b4d5-72dd2cf13cfb";
149 const SERVICE_MODEL_ID: string = '6b528779-44a3-4472-bdff-9cd15ec93450';
150
151 cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/basicNetworkModel.json').then((res) => {
152 jsonBuilderAndMock.basicJson(res,
153 Cypress.config('baseUrl') + '/rest/models/services/6b528779-44a3-4472-bdff-9cd15ec93450',
154 200,
155 0,
156 'initServiceModel');
157 });
158
159 cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/basicNetworkInstance.json').then((res) => {
160 jsonBuilderAndMock.basicJson(
161 res,
162 Cypress.config('baseUrl') + "/aai_get_service_instance_topology/e433710f-9217-458d-a79d-1c7aff376d89/TYLER SILVIA/f8791436-8d55-4fde-b4d5-72dd2cf13cfb",
163 200, 0,
164 "initServiceInstanceTopology"
165 )
166 });
167
168 cy.server().route({
169 url: Cypress.config('baseUrl') + '/asyncInstantiation/bulk',
170 method: 'POST',
171 status: 200,
172 response: "[]",
173 }).as("expectedPostAsyncInstantiation");
174
175 cy.openIframe(`app/ui/#/servicePlanning/EDIT?serviceModelId=${SERVICE_MODEL_ID}&subscriberId=${SUBSCRIBER_ID}&serviceType=${SERVICE_TYPE}&serviceInstanceId=${SERVICE_INSTANCE_ID}`);
176
177 //add one network
178 cy.getElementByDataTestsId('node-ExtVL 0-add-btn').click({force: true}).then(() => {
179 verifyServiceModelNameInModelInfo();
180 cy.fillNetworkPopup();
181 });
182
183 const networkNodeToDelete = "node-ddc3f20c-08b5-40fd-af72-c6d14636b986-ExtVL 0";
184 cy.getElementByDataTestsId(`${networkNodeToDelete}-menu-btn`).eq(0).click({force: true})
185 .getElementByDataTestsId('context-menu-delete').click();
186
187 //click update
188 cy.getElementByDataTestsId('deployBtn').should('have.text', 'UPDATE').click();
189
190 cy.getReduxState().then((state) => {
191 const network = state.service.serviceInstance[SERVICE_MODEL_ID].networks["ExtVL 0_1"];
192 cy.wait('@expectedPostAsyncInstantiation').then(xhr => {
193 cy.readFile('../vid-automation/src/test/resources/asyncInstantiation/vidRequestDelete1Create1Network.json').then((expectedResult) => {
194 expectedResult.networks["ExtVL 0_1"].trackById = network.trackById;
195 cy.deepCompare(xhr.request.body, expectedResult);
196 });
197 });
198 });
199
200 });
201
202 function verifyServiceModelNameInModelInfo() {
203 cy.getElementByDataTestsId('model-item-label-serviceModelName').contains('Service Name');
204 cy.getElementByDataTestsId('model-item-value-serviceModelName').contains('action-data');
205 }
206
207 function getReduxWithVNFSAndNetwork() {
208 return {
209 "global": {
210 "name": null,
211 "flags": {
212 "FLAG_NETWORK_TO_ASYNC_INSTANTIATION": false,
213 "FLAG_SHOW_ASSIGNMENTS": true,
214 "FLAG_FABRIC_CONFIGURATION_ASSIGNMENTS": true,
215 "FLAG_UNASSIGN_SERVICE": true,
216 "FLAG_SHOW_VERIFY_SERVICE": false,
217 "FLAG_COLLECTION_RESOURCE_SUPPORT": true,
218 "FLAG_DUPLICATE_VNF": true,
219 "FLAG_SERVICE_MODEL_CACHE": true,
220 "FLAG_ADVANCED_PORTS_FILTER": true,
221 "CREATE_INSTANCE_TEST": false,
222 "FLAG_SETTING_DEFAULTS_IN_DRAWING_BOARD": false,
223 "FLAG_REGION_ID_FROM_REMOTE": true,
224 "FLAG_ASYNC_INSTANTIATION": true,
225 "FLAG_ASYNC_JOBS": true,
226 "EMPTY_DRAWING_BOARD_TEST": false,
227 "FLAG_ADD_MSO_TESTAPI_FIELD": true
228 },
229 "type": "[FLAGS] Update"
230 },
231 "service": {
232 "serviceHierarchy": {
233 "6e59c5de-f052-46fa-aa7e-2fca9d674c44": {
234 "service": {
235 "uuid": "6e59c5de-f052-46fa-aa7e-2fca9d674c44",
236 "invariantUuid": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
237 "name": "ComplexService",
238 "version": "1.0",
239 "toscaModelURL": null,
240 "category": "Emanuel",
241 "serviceType": "",
242 "serviceRole": "",
243 "description": "ComplexService",
244 "serviceEcompNaming": "false",
245 "instantiationType": "Macro",
246 "inputs": {}
247 },
248 "vnfs": {
249 "VF_vMee 0": {
250 "uuid": "d6557200-ecf2-4641-8094-5393ae3aae60",
251 "invariantUuid": "4160458e-f648-4b30-a176-43881ffffe9e",
252 "description": "VSP_vMee",
253 "name": "VF_vMee",
254 "version": "2.0",
255 "customizationUuid": "91415b44-753d-494c-926a-456a9172bbb9",
256 "inputs": {},
257 "commands": {},
258 "properties": {
259 "max_instances": 10,
260 "min_instances": 1,
261 "gpb2_Internal2_mac": "00:11:22:EF:AC:DF",
262 "sctp-b-ipv6-egress_src_start_port": "0",
263 "sctp-a-ipv6-egress_rule_application": "any",
264 "Internal2_allow_transit": "true",
265 "sctp-b-IPv6_ethertype": "IPv6",
266 "sctp-a-egress_rule_application": "any",
267 "sctp-b-ingress_action": "pass",
268 "sctp-b-ingress_rule_protocol": "icmp",
269 "ncb2_Internal1_mac": "00:11:22:EF:AC:DF",
270 "sctp-b-ipv6-ingress-src_start_port": "0.0",
271 "ncb1_Internal2_mac": "00:11:22:EF:AC:DF",
272 "fsb_volume_size_0": "320.0",
273 "sctp-b-egress_src_addresses": "local",
274 "sctp-a-ipv6-ingress_ethertype": "IPv4",
275 "sctp-a-ipv6-ingress-dst_start_port": "0",
276 "sctp-b-ipv6-ingress_rule_application": "any",
277 "domain_name": "default-domain",
278 "sctp-a-ingress_rule_protocol": "icmp",
279 "sctp-b-egress-src_start_port": "0.0",
280 "sctp-a-egress_src_addresses": "local",
281 "sctp-b-display_name": "epc-sctp-b-ipv4v6-sec-group",
282 "sctp-a-egress-src_start_port": "0.0",
283 "sctp-a-ingress_ethertype": "IPv4",
284 "sctp-b-ipv6-ingress-dst_end_port": "65535",
285 "sctp-b-dst_subnet_prefix_v6": "::",
286 "nf_naming": "{ecomp_generated_naming=true}",
287 "sctp-a-ipv6-ingress_src_subnet_prefix": "0.0.0.0",
288 "sctp-b-egress-dst_start_port": "0.0",
289 "ncb_flavor_name": "nv.c20r64d1",
290 "gpb1_Internal1_mac": "00:11:22:EF:AC:DF",
291 "sctp-b-egress_dst_subnet_prefix_len": "0.0",
292 "Internal2_net_cidr": "10.0.0.10",
293 "sctp-a-ingress-dst_start_port": "0.0",
294 "sctp-a-egress-dst_start_port": "0.0",
295 "fsb1_Internal2_mac": "00:11:22:EF:AC:DF",
296 "sctp-a-egress_ethertype": "IPv4",
297 "vlc_st_service_mode": "in-network-nat",
298 "sctp-a-ipv6-egress_ethertype": "IPv4",
299 "sctp-a-egress-src_end_port": "65535.0",
300 "sctp-b-ipv6-egress_rule_application": "any",
301 "sctp-b-egress_action": "pass",
302 "sctp-a-ingress-src_subnet_prefix_len": "0.0",
303 "sctp-b-ipv6-ingress-src_end_port": "65535.0",
304 "sctp-b-name": "epc-sctp-b-ipv4v6-sec-group",
305 "fsb2_Internal1_mac": "00:11:22:EF:AC:DF",
306 "sctp-a-ipv6-ingress-src_start_port": "0.0",
307 "sctp-b-ipv6-egress_ethertype": "IPv4",
308 "Internal1_net_cidr": "10.0.0.10",
309 "sctp-a-egress_dst_subnet_prefix": "0.0.0.0",
310 "fsb_flavor_name": "nv.c20r64d1",
311 "sctp_rule_protocol": "132",
312 "sctp-b-ipv6-ingress_src_subnet_prefix_len": "0",
313 "sctp-a-ipv6-ingress_rule_application": "any",
314 "ecomp_generated_naming": "false",
315 "sctp-a-IPv6_ethertype": "IPv6",
316 "vlc2_Internal1_mac": "00:11:22:EF:AC:DF",
317 "vlc_st_virtualization_type": "virtual-machine",
318 "sctp-b-ingress-dst_start_port": "0.0",
319 "sctp-b-ingress-dst_end_port": "65535.0",
320 "sctp-a-ipv6-ingress-src_end_port": "65535.0",
321 "sctp-a-display_name": "epc-sctp-a-ipv4v6-sec-group",
322 "sctp-b-ingress_rule_application": "any",
323 "int2_sec_group_name": "int2-sec-group",
324 "vlc_flavor_name": "nd.c16r64d1",
325 "sctp-b-ipv6-egress_src_addresses": "local",
326 "vlc_st_interface_type_int1": "other1",
327 "sctp-b-egress-src_end_port": "65535.0",
328 "sctp-a-ipv6-egress-dst_start_port": "0",
329 "vlc_st_interface_type_int2": "other2",
330 "sctp-a-ipv6-egress_rule_protocol": "any",
331 "Internal2_shared": "false",
332 "sctp-a-ipv6-egress_dst_subnet_prefix_len": "0",
333 "Internal2_rpf": "disable",
334 "vlc1_Internal1_mac": "00:11:22:EF:AC:DF",
335 "sctp-b-ipv6-egress_src_end_port": "65535",
336 "sctp-a-ipv6-egress_src_addresses": "local",
337 "sctp-a-ingress-dst_end_port": "65535.0",
338 "sctp-a-ipv6-egress_src_end_port": "65535",
339 "Internal1_forwarding_mode": "l2",
340 "Internal2_dhcp": "false",
341 "sctp-a-dst_subnet_prefix_v6": "::",
342 "pxe_image_name": "MME_PXE-Boot_16ACP04_GA.qcow2",
343 "vlc_st_interface_type_gtp": "other0",
344 "ncb1_Internal1_mac": "00:11:22:EF:AC:DF",
345 "sctp-b-src_subnet_prefix_v6": "::",
346 "sctp-a-egress_dst_subnet_prefix_len": "0.0",
347 "int1_sec_group_name": "int1-sec-group",
348 "Internal1_dhcp": "false",
349 "sctp-a-ipv6-egress_dst_end_port": "65535",
350 "Internal2_forwarding_mode": "l2",
351 "fsb2_Internal2_mac": "00:11:22:EF:AC:DF",
352 "sctp-b-egress_dst_subnet_prefix": "0.0.0.0",
353 "Internal1_net_cidr_len": "17",
354 "gpb2_Internal1_mac": "00:11:22:EF:AC:DF",
355 "sctp-b-ingress-src_subnet_prefix_len": "0.0",
356 "sctp-a-ingress_dst_addresses": "local",
357 "sctp-a-egress_action": "pass",
358 "fsb_volume_type_0": "SF-Default-SSD",
359 "ncb2_Internal2_mac": "00:11:22:EF:AC:DF",
360 "vlc_st_interface_type_sctp_a": "left",
361 "vlc_st_interface_type_sctp_b": "right",
362 "sctp-a-src_subnet_prefix_v6": "::",
363 "vlc_st_version": "2",
364 "sctp-b-egress_ethertype": "IPv4",
365 "sctp-a-ingress_rule_application": "any",
366 "gpb1_Internal2_mac": "00:11:22:EF:AC:DF",
367 "instance_ip_family_v6": "v6",
368 "sctp-a-ipv6-egress_src_start_port": "0",
369 "sctp-b-ingress-src_start_port": "0.0",
370 "sctp-b-ingress_dst_addresses": "local",
371 "fsb1_Internal1_mac": "00:11:22:EF:AC:DF",
372 "vlc_st_interface_type_oam": "management",
373 "multi_stage_design": "true",
374 "oam_sec_group_name": "oam-sec-group",
375 "Internal2_net_gateway": "10.0.0.10",
376 "sctp-a-ipv6-ingress-dst_end_port": "65535",
377 "sctp-b-ipv6-egress-dst_start_port": "0",
378 "Internal1_net_gateway": "10.0.0.10",
379 "sctp-b-ipv6-egress_rule_protocol": "any",
380 "gtp_sec_group_name": "gtp-sec-group",
381 "sctp-a-ipv6-egress_dst_subnet_prefix": "0.0.0.0",
382 "sctp-b-ipv6-egress_dst_subnet_prefix_len": "0",
383 "sctp-a-ipv6-ingress_dst_addresses": "local",
384 "sctp-a-egress_rule_protocol": "icmp",
385 "sctp-b-ipv6-egress_action": "pass",
386 "sctp-a-ipv6-egress_action": "pass",
387 "Internal1_shared": "false",
388 "sctp-b-ipv6-ingress_rule_protocol": "any",
389 "Internal2_net_cidr_len": "17",
390 "sctp-a-name": "epc-sctp-a-ipv4v6-sec-group",
391 "sctp-a-ingress-src_end_port": "65535.0",
392 "sctp-b-ipv6-ingress_src_subnet_prefix": "0.0.0.0",
393 "sctp-a-egress-dst_end_port": "65535.0",
394 "sctp-a-ingress_action": "pass",
395 "sctp-b-egress_rule_protocol": "icmp",
396 "sctp-b-ipv6-ingress_action": "pass",
397 "vlc_st_service_type": "firewall",
398 "sctp-b-ipv6-egress_dst_end_port": "65535",
399 "sctp-b-ipv6-ingress-dst_start_port": "0",
400 "vlc2_Internal2_mac": "00:11:22:EF:AC:DF",
401 "vlc_st_availability_zone": "true",
402 "fsb_volume_image_name_1": "MME_FSB2_16ACP04_GA.qcow2",
403 "sctp-b-ingress-src_subnet_prefix": "0.0.0.0",
404 "sctp-a-ipv6-ingress_src_subnet_prefix_len": "0",
405 "Internal1_allow_transit": "true",
406 "gpb_flavor_name": "nv.c20r64d1",
407 "availability_zone_max_count": "1",
408 "fsb_volume_image_name_0": "MME_FSB1_16ACP04_GA.qcow2",
409 "sctp-b-ipv6-ingress_dst_addresses": "local",
410 "sctp-b-ipv6-egress_dst_subnet_prefix": "0.0.0.0",
411 "sctp-b-ipv6-ingress_ethertype": "IPv4",
412 "vlc1_Internal2_mac": "00:11:22:EF:AC:DF",
413 "sctp-a-ingress-src_subnet_prefix": "0.0.0.0",
414 "sctp-a-ipv6-ingress_action": "pass",
415 "Internal1_rpf": "disable",
416 "sctp-b-ingress_ethertype": "IPv4",
417 "sctp-b-egress_rule_application": "any",
418 "sctp-b-ingress-src_end_port": "65535.0",
419 "sctp-a-ipv6-ingress_rule_protocol": "any",
420 "sctp-a-ingress-src_start_port": "0.0",
421 "sctp-b-egress-dst_end_port": "65535.0"
422 },
423 "type": "VF",
424 "modelCustomizationName": "VF_vMee 0",
425 "vfModules": {
426 "vf_vmee0..VfVmee..vmme_vlc..module-1": {
427 "uuid": "522159d5-d6e0-4c2a-aa44-5a542a12a830",
428 "invariantUuid": "98a7c88b-b577-476a-90e4-e25a5871e02b",
429 "customizationUuid": "55b1be94-671a-403e-a26c-667e9c47d091",
430 "description": null,
431 "name": "VfVmee..vmme_vlc..module-1",
432 "version": "2",
433 "modelCustomizationName": "VfVmee..vmme_vlc..module-1",
434 "properties": {
435 "minCountInstances": 0,
436 "maxCountInstances": null,
437 "initialCount": 0,
438 "vfModuleLabel": "vmme_vlc"
439 },
440 "inputs": {},
441 "volumeGroupAllowed": true
442 },
443 "vf_vmee0..VfVmee..vmme_gpb..module-2": {
444 "uuid": "41708296-e443-4c71-953f-d9a010f059e1",
445 "invariantUuid": "1cca90b8-3490-495e-87da-3f3e4c57d5b9",
446 "customizationUuid": "6add59e0-7fe1-4bc4-af48-f8812422ae7c",
447 "description": null,
448 "name": "VfVmee..vmme_gpb..module-2",
449 "version": "2",
450 "modelCustomizationName": "VfVmee..vmme_gpb..module-2",
451 "properties": {
452 "minCountInstances": 0,
453 "maxCountInstances": null,
454 "initialCount": 0,
455 "vfModuleLabel": "vmme_gpb"
456 },
457 "inputs": {},
458 "volumeGroupAllowed": false
459 },
460 "vf_vmee0..VfVmee..base_vmme..module-0": {
461 "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
462 "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
463 "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
464 "description": null,
465 "name": "VfVmee..base_vmme..module-0",
466 "version": "2",
467 "modelCustomizationName": "VfVmee..base_vmme..module-0",
468 "properties": {
469 "minCountInstances": 1,
470 "maxCountInstances": 1,
471 "initialCount": 1,
472 "vfModuleLabel": "base_vmme"
473 },
474 "inputs": {},
475 "volumeGroupAllowed": true
476 }
477 },
478 "volumeGroups": {
479 "vf_vmee0..VfVmee..base_vmme..module-0": {
480 "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
481 "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
482 "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
483 "description": null,
484 "name": "VfVmee..base_vmme..module-0",
485 "version": "2",
486 "modelCustomizationName": "VfVmee..base_vmme..module-0",
487 "properties": {
488 "minCountInstances": 1,
489 "maxCountInstances": 1,
490 "initialCount": 1,
491 "vfModuleLabel": "base_vmme"
492 },
493 "inputs": {}
494 }
495 },
496 "vfcInstanceGroups": {}
497 }
498 },
499 "networks": {
500 "ExtVL 0": {
501 "uuid": "ddc3f20c-08b5-40fd-af72-c6d14636b986",
502 "invariantUuid": "379f816b-a7aa-422f-be30-17114ff50b7c",
503 "description": "ECOMP generic virtual link (network) base type for all other service-level and global networks",
504 "name": "ExtVL",
505 "version": "37.0",
506 "customizationUuid": "94fdd893-4a36-4d70-b16a-ec29c54c184f",
507 "inputs": {},
508 "commands": {},
509 "properties": {
510 "network_assignments": "{is_external_network=false, ipv4_subnet_default_assignment={min_subnets_count=1}, ecomp_generated_network_assignment=false, ipv6_subnet_default_assignment={min_subnets_count=1}}",
511 "exVL_naming": "{ecomp_generated_naming=true}",
512 "network_flows": "{is_network_policy=false, is_bound_to_vpn=false}",
513 "network_homing": "{ecomp_selected_instance_node_target=false}"
514 },
515 "type": "VL",
516 "modelCustomizationName": "ExtVL 0"
517 }
518 },
519 "collectionResource": {},
520 "configurations": {
521 "Port Mirroring Configuration By Policy 0": {
522 "uuid": "b4398538-e89d-4f13-b33d-ca323434ba50",
523 "invariantUuid": "6ef0ca40-f366-4897-951f-abd65d25f6f7",
524 "description": "A port mirroring configuration by policy object",
525 "name": "Port Mirroring Configuration By Policy",
526 "version": "27.0",
527 "customizationUuid": "3c3b7b8d-8669-4b3b-8664-61970041fad2",
528 "inputs": {},
529 "commands": {},
530 "properties": {},
531 "type": "Configuration",
532 "modelCustomizationName": "Port Mirroring Configuration By Policy 0",
533 "sourceNodes": [],
534 "collectorNodes": null,
535 "configurationByPolicy": false
536 }
537 },
538 "serviceProxies": {},
539 "vfModules": {
540 "vf_vmee0..VfVmee..vmme_vlc..module-1": {
541 "uuid": "522159d5-d6e0-4c2a-aa44-5a542a12a830",
542 "invariantUuid": "98a7c88b-b577-476a-90e4-e25a5871e02b",
543 "customizationUuid": "55b1be94-671a-403e-a26c-667e9c47d091",
544 "description": null,
545 "name": "VfVmee..vmme_vlc..module-1",
546 "version": "2",
547 "modelCustomizationName": "VfVmee..vmme_vlc..module-1",
548 "properties": {
549 "minCountInstances": 0,
550 "maxCountInstances": null,
551 "initialCount": 0,
552 "vfModuleLabel": "vmme_vlc"
553 },
554 "inputs": {},
555 "volumeGroupAllowed": true
556 },
557 "vf_vmee0..VfVmee..vmme_gpb..module-2": {
558 "uuid": "41708296-e443-4c71-953f-d9a010f059e1",
559 "invariantUuid": "1cca90b8-3490-495e-87da-3f3e4c57d5b9",
560 "customizationUuid": "6add59e0-7fe1-4bc4-af48-f8812422ae7c",
561 "description": null,
562 "name": "VfVmee..vmme_gpb..module-2",
563 "version": "2",
564 "modelCustomizationName": "VfVmee..vmme_gpb..module-2",
565 "properties": {
566 "minCountInstances": 0,
567 "maxCountInstances": null,
568 "initialCount": 0,
569 "vfModuleLabel": "vmme_gpb"
570 },
571 "inputs": {},
572 "volumeGroupAllowed": false
573 },
574 "vf_vmee0..VfVmee..base_vmme..module-0": {
575 "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
576 "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
577 "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
578 "description": null,
579 "name": "VfVmee..base_vmme..module-0",
580 "version": "2",
581 "modelCustomizationName": "VfVmee..base_vmme..module-0",
582 "properties": {
583 "minCountInstances": 1,
584 "maxCountInstances": 1,
585 "initialCount": 1,
586 "vfModuleLabel": "base_vmme"
587 },
588 "inputs": {},
589 "volumeGroupAllowed": true
590 }
591 },
592 "volumeGroups": {
593 "vf_vmee0..VfVmee..base_vmme..module-0": {
594 "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
595 "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
596 "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
597 "description": null,
598 "name": "VfVmee..base_vmme..module-0",
599 "version": "2",
600 "modelCustomizationName": "VfVmee..base_vmme..module-0",
601 "properties": {
602 "minCountInstances": 1,
603 "maxCountInstances": 1,
604 "initialCount": 1,
605 "vfModuleLabel": "base_vmme"
606 },
607 "inputs": {}
608 }
609 },
610 "pnfs": {}
611 },
612 "6b528779-44a3-4472-bdff-9cd15ec93450": {
613 "service": {
614 "uuid": "6b528779-44a3-4472-bdff-9cd15ec93450",
615 "invariantUuid": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
616 "name": "action-data",
617 "version": "1.0",
618 "toscaModelURL": null,
619 "category": "",
620 "serviceType": "",
621 "serviceRole": "",
622 "description": "",
623 "serviceEcompNaming": "false",
624 "instantiationType": "Macro",
625 "inputs": {
626 "2017488_adiodvpe0_ASN": {
627 "type": "string",
628 "description": "AV/PE",
629 "entry_schema": null,
630 "inputProperties": null,
631 "constraints": [],
632 "required": true,
633 "default": "AV_vPE"
634 }
635 }
636 },
637 "vnfs": {
638 "2017-388_ADIOD-vPE 1": {
639 "uuid": "0903e1c0-8e03-4936-b5c2-260653b96413",
640 "invariantUuid": "00beb8f9-6d39-452f-816d-c709b9cbb87d",
641 "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",
642 "name": "2017-388_ADIOD-vPE",
643 "version": "1.0",
644 "customizationUuid": "280dec31-f16d-488b-9668-4aae55d6648a",
645 "inputs": {
646 "vnf_config_template_version": {
647 "type": "string",
648 "description": "VPE Software Version",
649 "entry_schema": null,
650 "inputProperties": null,
651 "constraints": [],
652 "required": true,
653 "default": "17.2"
654 },
655 "bandwidth_units": {
656 "type": "string",
657 "description": "Units of bandwidth",
658 "entry_schema": null,
659 "inputProperties": null,
660 "constraints": [],
661 "required": true,
662 "default": "Gbps"
663 },
664 "bandwidth": {
665 "type": "string",
666 "description": "Requested VPE bandwidth",
667 "entry_schema": null,
668 "inputProperties": null,
669 "constraints": [],
670 "required": true,
671 "default": "10"
672 },
673 "AIC_CLLI": {
674 "type": "string",
675 "description": "AIC Site CLLI",
676 "entry_schema": null,
677 "inputProperties": null,
678 "constraints": [],
679 "required": true,
680 "default": "ATLMY8GA"
681 },
682 "ASN": {
683 "type": "string",
684 "description": "AV/PE",
685 "entry_schema": null,
686 "inputProperties": null,
687 "constraints": [],
688 "required": true,
689 "default": "AV_vPE"
690 },
691 "vnf_instance_name": {
692 "type": "string",
693 "description": "The hostname assigned to the vpe.",
694 "entry_schema": null,
695 "inputProperties": null,
696 "constraints": [],
697 "required": true,
698 "default": "mtnj309me6"
699 }
700 },
701 "commands": {
702 "vnf_config_template_version": {
703 "displayName": "vnf_config_template_version",
704 "command": "get_input",
705 "inputName": "2017488_adiodvpe0_vnf_config_template_version"
706 },
707 "bandwidth_units": {
708 "displayName": "bandwidth_units",
709 "command": "get_input",
710 "inputName": "adiodvpe0_bandwidth_units"
711 },
712 "bandwidth": {
713 "displayName": "bandwidth",
714 "command": "get_input",
715 "inputName": "adiodvpe0_bandwidth"
716 },
717 "AIC_CLLI": {
718 "displayName": "AIC_CLLI",
719 "command": "get_input",
720 "inputName": "2017488_adiodvpe0_AIC_CLLI"
721 },
722 "ASN": {
723 "displayName": "ASN",
724 "command": "get_input",
725 "inputName": "2017488_adiodvpe0_ASN"
726 },
727 "vnf_instance_name": {
728 "displayName": "vnf_instance_name",
729 "command": "get_input",
730 "inputName": "2017488_adiodvpe0_vnf_instance_name"
731 }
732 },
733 "properties": {
734 "vmxvre_retype": "RE-VMX",
735 "vnf_config_template_version": "get_input:2017488_adiodvpe0_vnf_config_template_version",
736 "sriov44_net_id": "48d399b3-11ee-48a8-94d2-f0ea94d6be8d",
737 "int_ctl_net_id": "2f323477-6936-4d01-ac53-d849430281d9",
738 "vmxvpfe_sriov41_0_port_mac": "00:11:22:EF:AC:DF",
739 "int_ctl_net_name": "VMX-INTXI",
740 "vmx_int_ctl_prefix": "10.0.0.10",
741 "sriov43_net_id": "da349ca1-6de9-4548-be88-2d88e99bfef5",
742 "sriov42_net_id": "760669ba-013d-4d9b-b0e7-4151fe2e6279",
743 "sriov41_net_id": "25ad52d5-c165-40f8-b3b0-ddfc2373280a",
744 "nf_type": "vPE",
745 "vmxvpfe_int_ctl_ip_1": "10.0.0.10",
746 "is_AVPN_service": "false",
747 "vmx_RSG_name": "vREXI-affinity",
748 "vmx_int_ctl_forwarding": "l2",
749 "vmxvre_oam_ip_0": "10.0.0.10",
750 "vmxvpfe_sriov44_0_port_mac": "00:11:22:EF:AC:DF",
751 "vmxvpfe_sriov41_0_port_vlanstrip": "false",
752 "vmxvpfe_sriov42_0_port_vlanfilter": "4001",
753 "vmxvpfe_sriov44_0_port_unknownunicastallow": "true",
754 "vmxvre_image_name_0": "VRE-ENGINE_17.2-S2.1.qcow2",
755 "vmxvre_instance": "0",
756 "vmxvpfe_sriov43_0_port_mac": "00:11:22:EF:AC:DF",
757 "vmxvre_flavor_name": "ns.c1r16d32.v5",
758 "vmxvpfe_volume_size_0": "40.0",
759 "vmxvpfe_sriov43_0_port_vlanfilter": "4001",
760 "nf_naming": "{ecomp_generated_naming=false}",
761 "nf_naming_code": "Navneet",
762 "vmxvre_name_0": "vREXI",
763 "vmxvpfe_sriov42_0_port_vlanstrip": "false",
764 "vmxvpfe_volume_name_0": "vPFEXI_FBVolume",
765 "vmx_RSG_id": "bd89a33c-13c3-4a04-8fde-1a57eb123141",
766 "vmxvpfe_image_name_0": "VPE_ROUTING-ENGINE_17.2R1-S2.1.qcow2",
767 "vmxvpfe_sriov43_0_port_unknownunicastallow": "true",
768 "vmxvpfe_sriov44_0_port_unknownmulticastallow": "true",
769 "vmxvre_console": "vidconsole",
770 "vmxvpfe_sriov44_0_port_vlanfilter": "4001",
771 "vmxvpfe_sriov42_0_port_mac": "00:11:22:EF:AC:DF",
772 "vmxvpfe_volume_id_0": "47cede15-da2f-4397-a101-aa683220aff3",
773 "vmxvpfe_sriov42_0_port_unknownmulticastallow": "true",
774 "vmxvpfe_sriov44_0_port_vlanstrip": "false",
775 "vf_module_id": "123",
776 "nf_function": "JAI",
777 "vmxvpfe_sriov43_0_port_unknownmulticastallow": "true",
778 "vmxvre_int_ctl_ip_0": "10.0.0.10",
779 "ecomp_generated_naming": "false",
780 "AIC_CLLI": "get_input:2017488_adiodvpe0_AIC_CLLI",
781 "vnf_name": "mtnj309me6vre",
782 "vmxvpfe_sriov41_0_port_unknownunicastallow": "true",
783 "vmxvre_volume_type_1": "HITACHI",
784 "vmxvpfe_sriov44_0_port_broadcastallow": "true",
785 "vmxvre_volume_type_0": "HITACHI",
786 "vmxvpfe_volume_type_0": "HITACHI",
787 "vmxvpfe_sriov43_0_port_broadcastallow": "true",
788 "bandwidth_units": "get_input:adiodvpe0_bandwidth_units",
789 "vnf_id": "123",
790 "vmxvre_oam_prefix": "24",
791 "availability_zone_0": "mtpocfo-kvm-az01",
792 "ASN": "get_input:2017488_adiodvpe0_ASN",
793 "vmxvre_chassis_i2cid": "161",
794 "vmxvpfe_name_0": "vPFEXI",
795 "bandwidth": "get_input:adiodvpe0_bandwidth",
796 "availability_zone_max_count": "1",
797 "vmxvre_volume_size_0": "45.0",
798 "vmxvre_volume_size_1": "50.0",
799 "vmxvpfe_sriov42_0_port_broadcastallow": "true",
800 "vmxvre_oam_gateway": "10.0.0.10",
801 "vmxvre_volume_name_1": "vREXI_FAVolume",
802 "vmxvre_ore_present": "0",
803 "vmxvre_volume_name_0": "vREXI_FBVolume",
804 "vmxvre_type": "0",
805 "vnf_instance_name": "get_input:2017488_adiodvpe0_vnf_instance_name",
806 "vmxvpfe_sriov41_0_port_unknownmulticastallow": "true",
807 "oam_net_id": "b95eeb1d-d55d-4827-abb4-8ebb94941429",
808 "vmx_int_ctl_len": "24",
809 "vmxvpfe_sriov43_0_port_vlanstrip": "false",
810 "vmxvpfe_sriov41_0_port_broadcastallow": "true",
811 "vmxvre_volume_id_1": "6e86797e-03cd-4fdc-ba72-2957119c746d",
812 "vmxvpfe_sriov41_0_port_vlanfilter": "4001",
813 "nf_role": "Testing",
814 "vmxvre_volume_id_0": "f4eacb79-f687-4e9d-b760-21847c8bb15a",
815 "vmxvpfe_sriov42_0_port_unknownunicastallow": "true",
816 "vmxvpfe_flavor_name": "ns.c20r16d25.v5"
817 },
818 "type": "VF",
819 "modelCustomizationName": "2017-388_ADIOD-vPE 1",
820 "vfModules": {},
821 "volumeGroups": {},
822 "vfcInstanceGroups": {}
823 },
824 "2017-388_ADIOD-vPE 0": {
825 "uuid": "afacccf6-397d-45d6-b5ae-94c39734b168",
826 "invariantUuid": "72e465fe-71b1-4e7b-b5ed-9496118ff7a8",
827 "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",
828 "name": "2017-388_ADIOD-vPE",
829 "version": "4.0",
830 "customizationUuid": "b3c76f73-eeb5-4fb6-9d31-72a889f1811c",
831 "inputs": {
832 "vnf_config_template_version": {
833 "type": "string",
834 "description": "VPE Software Version",
835 "entry_schema": null,
836 "inputProperties": null,
837 "constraints": [],
838 "required": true,
839 "default": "17.2"
840 },
841 "bandwidth_units": {
842 "type": "string",
843 "description": "Units of bandwidth",
844 "entry_schema": null,
845 "inputProperties": null,
846 "constraints": [],
847 "required": true,
848 "default": "Gbps"
849 },
850 "bandwidth": {
851 "type": "string",
852 "description": "Requested VPE bandwidth",
853 "entry_schema": null,
854 "inputProperties": null,
855 "constraints": [],
856 "required": true,
857 "default": "10"
858 },
859 "AIC_CLLI": {
860 "type": "string",
861 "description": "AIC Site CLLI",
862 "entry_schema": null,
863 "inputProperties": null,
864 "constraints": [],
865 "required": true,
866 "default": "ATLMY8GA"
867 },
868 "ASN": {
869 "type": "string",
870 "description": "AV/PE",
871 "entry_schema": null,
872 "inputProperties": null,
873 "constraints": [],
874 "required": true,
875 "default": "AV_vPE"
876 },
877 "vnf_instance_name": {
878 "type": "string",
879 "description": "The hostname assigned to the vpe.",
880 "entry_schema": null,
881 "inputProperties": null,
882 "constraints": [],
883 "required": true,
884 "default": "mtnj309me6"
885 }
886 },
887 "commands": {
888 "vnf_config_template_version": {
889 "displayName": "vnf_config_template_version",
890 "command": "get_input",
891 "inputName": "2017488_adiodvpe0_vnf_config_template_version"
892 },
893 "bandwidth_units": {
894 "displayName": "bandwidth_units",
895 "command": "get_input",
896 "inputName": "adiodvpe0_bandwidth_units"
897 },
898 "bandwidth": {
899 "displayName": "bandwidth",
900 "command": "get_input",
901 "inputName": "adiodvpe0_bandwidth"
902 },
903 "AIC_CLLI": {
904 "displayName": "AIC_CLLI",
905 "command": "get_input",
906 "inputName": "2017488_adiodvpe0_AIC_CLLI"
907 },
908 "ASN": {
909 "displayName": "ASN",
910 "command": "get_input",
911 "inputName": "2017488_adiodvpe0_ASN"
912 },
913 "vnf_instance_name": {
914 "displayName": "vnf_instance_name",
915 "command": "get_input",
916 "inputName": "2017488_adiodvpe0_vnf_instance_name"
917 }
918 },
919 "properties": {
920 "vmxvre_retype": "RE-VMX",
921 "vnf_config_template_version": "get_input:2017488_adiodvpe0_vnf_config_template_version",
922 "sriov44_net_id": "48d399b3-11ee-48a8-94d2-f0ea94d6be8d",
923 "int_ctl_net_id": "2f323477-6936-4d01-ac53-d849430281d9",
924 "vmxvpfe_sriov41_0_port_mac": "00:11:22:EF:AC:DF",
925 "int_ctl_net_name": "VMX-INTXI",
926 "vmx_int_ctl_prefix": "10.0.0.10",
927 "sriov43_net_id": "da349ca1-6de9-4548-be88-2d88e99bfef5",
928 "sriov42_net_id": "760669ba-013d-4d9b-b0e7-4151fe2e6279",
929 "sriov41_net_id": "25ad52d5-c165-40f8-b3b0-ddfc2373280a",
930 "nf_type": "vPE",
931 "vmxvpfe_int_ctl_ip_1": "10.0.0.10",
932 "is_AVPN_service": "false",
933 "vmx_RSG_name": "vREXI-affinity",
934 "vmx_int_ctl_forwarding": "l2",
935 "vmxvre_oam_ip_0": "10.0.0.10",
936 "vmxvpfe_sriov44_0_port_mac": "00:11:22:EF:AC:DF",
937 "vmxvpfe_sriov41_0_port_vlanstrip": "false",
938 "vmxvpfe_sriov42_0_port_vlanfilter": "4001",
939 "vmxvpfe_sriov44_0_port_unknownunicastallow": "true",
940 "vmxvre_image_name_0": "VRE-ENGINE_17.2-S2.1.qcow2",
941 "vmxvre_instance": "0",
942 "vmxvpfe_sriov43_0_port_mac": "00:11:22:EF:AC:DF",
943 "vmxvre_flavor_name": "ns.c1r16d32.v5",
944 "vmxvpfe_volume_size_0": "40.0",
945 "vmxvpfe_sriov43_0_port_vlanfilter": "4001",
946 "nf_naming": "{ecomp_generated_naming=false}",
947 "nf_naming_code": "Navneet",
948 "vmxvre_name_0": "vREXI",
949 "vmxvpfe_sriov42_0_port_vlanstrip": "false",
950 "vmxvpfe_volume_name_0": "vPFEXI_FBVolume",
951 "vmx_RSG_id": "bd89a33c-13c3-4a04-8fde-1a57eb123141",
952 "vmxvpfe_image_name_0": "VPE_ROUTING-ENGINE_17.2R1-S2.1.qcow2",
953 "vmxvpfe_sriov43_0_port_unknownunicastallow": "true",
954 "vmxvpfe_sriov44_0_port_unknownmulticastallow": "true",
955 "vmxvre_console": "vidconsole",
956 "vmxvpfe_sriov44_0_port_vlanfilter": "4001",
957 "vmxvpfe_sriov42_0_port_mac": "00:11:22:EF:AC:DF",
958 "vmxvpfe_volume_id_0": "47cede15-da2f-4397-a101-aa683220aff3",
959 "vmxvpfe_sriov42_0_port_unknownmulticastallow": "true",
960 "min_instances": "1",
961 "vmxvpfe_sriov44_0_port_vlanstrip": "false",
962 "vf_module_id": "123",
963 "nf_function": "JAI",
964 "vmxvpfe_sriov43_0_port_unknownmulticastallow": "true",
965 "vmxvre_int_ctl_ip_0": "10.0.0.10",
966 "ecomp_generated_naming": "false",
967 "AIC_CLLI": "get_input:2017488_adiodvpe0_AIC_CLLI",
968 "vnf_name": "mtnj309me6vre",
969 "vmxvpfe_sriov41_0_port_unknownunicastallow": "true",
970 "vmxvre_volume_type_1": "HITACHI",
971 "vmxvpfe_sriov44_0_port_broadcastallow": "true",
972 "vmxvre_volume_type_0": "HITACHI",
973 "vmxvpfe_volume_type_0": "HITACHI",
974 "vmxvpfe_sriov43_0_port_broadcastallow": "true",
975 "bandwidth_units": "get_input:adiodvpe0_bandwidth_units",
976 "vnf_id": "123",
977 "vmxvre_oam_prefix": "24",
978 "availability_zone_0": "mtpocfo-kvm-az01",
979 "ASN": "get_input:2017488_adiodvpe0_ASN",
980 "vmxvre_chassis_i2cid": "161",
981 "vmxvpfe_name_0": "vPFEXI",
982 "bandwidth": "get_input:adiodvpe0_bandwidth",
983 "availability_zone_max_count": "1",
984 "vmxvre_volume_size_0": "45.0",
985 "vmxvre_volume_size_1": "50.0",
986 "vmxvpfe_sriov42_0_port_broadcastallow": "true",
987 "vmxvre_oam_gateway": "10.0.0.10",
988 "vmxvre_volume_name_1": "vREXI_FAVolume",
989 "vmxvre_ore_present": "0",
990 "vmxvre_volume_name_0": "vREXI_FBVolume",
991 "vmxvre_type": "0",
992 "vnf_instance_name": "get_input:2017488_adiodvpe0_vnf_instance_name",
993 "vmxvpfe_sriov41_0_port_unknownmulticastallow": "true",
994 "oam_net_id": "b95eeb1d-d55d-4827-abb4-8ebb94941429",
995 "vmx_int_ctl_len": "24",
996 "vmxvpfe_sriov43_0_port_vlanstrip": "false",
997 "vmxvpfe_sriov41_0_port_broadcastallow": "true",
998 "vmxvre_volume_id_1": "6e86797e-03cd-4fdc-ba72-2957119c746d",
999 "vmxvpfe_sriov41_0_port_vlanfilter": "4001",
1000 "nf_role": "Testing",
1001 "vmxvre_volume_id_0": "f4eacb79-f687-4e9d-b760-21847c8bb15a",
1002 "vmxvpfe_sriov42_0_port_unknownunicastallow": "true",
1003 "vmxvpfe_flavor_name": "ns.c20r16d25.v5"
1004 },
1005 "type": "VF",
1006 "modelCustomizationName": "2017-388_ADIOD-vPE 0",
1007 "vfModules": {},
1008 "volumeGroups": {},
1009 "vfcInstanceGroups": {}
1010 },
1011 "2017-488_ADIOD-vPE 0": {
1012 "uuid": "69e09f68-8b63-4cc9-b9ff-860960b5db09",
1013 "invariantUuid": "72e465fe-71b1-4e7b-b5ed-9496118ff7a8",
1014 "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",
1015 "name": "2017-488_ADIOD-vPE",
1016 "version": "5.0",
1017 "customizationUuid": "1da7b585-5e61-4993-b95e-8e6606c81e45",
1018 "inputs": {
1019 "vnf_config_template_version": {
1020 "type": "string",
1021 "description": "VPE Software Version",
1022 "entry_schema": null,
1023 "inputProperties": null,
1024 "constraints": [],
1025 "required": true,
1026 "default": "17.2"
1027 },
1028 "bandwidth_units": {
1029 "type": "string",
1030 "description": "Units of bandwidth",
1031 "entry_schema": null,
1032 "inputProperties": null,
1033 "constraints": [],
1034 "required": true,
1035 "default": "Gbps"
1036 },
1037 "bandwidth": {
1038 "type": "string",
1039 "description": "Requested VPE bandwidth",
1040 "entry_schema": null,
1041 "inputProperties": null,
1042 "constraints": [],
1043 "required": true,
1044 "default": "10"
1045 },
1046 "AIC_CLLI": {
1047 "type": "string",
1048 "description": "AIC Site CLLI",
1049 "entry_schema": null,
1050 "inputProperties": null,
1051 "constraints": [],
1052 "required": true,
1053 "default": "ATLMY8GA"
1054 },
1055 "ASN": {
1056 "type": "string",
1057 "description": "AV/PE",
1058 "entry_schema": null,
1059 "inputProperties": null,
1060 "constraints": [],
1061 "required": true,
1062 "default": "AV_vPE"
1063 },
1064 "vnf_instance_name": {
1065 "type": "string",
1066 "description": "The hostname assigned to the vpe.",
1067 "entry_schema": null,
1068 "inputProperties": null,
1069 "constraints": [],
1070 "required": true,
1071 "default": "mtnj309me6"
1072 }
1073 },
1074 "commands": {
1075 "vnf_config_template_version": {
1076 "displayName": "vnf_config_template_version",
1077 "command": "get_input",
1078 "inputName": "2017488_adiodvpe0_vnf_config_template_version"
1079 },
1080 "bandwidth_units": {
1081 "displayName": "bandwidth_units",
1082 "command": "get_input",
1083 "inputName": "adiodvpe0_bandwidth_units"
1084 },
1085 "bandwidth": {
1086 "displayName": "bandwidth",
1087 "command": "get_input",
1088 "inputName": "adiodvpe0_bandwidth"
1089 },
1090 "AIC_CLLI": {
1091 "displayName": "AIC_CLLI",
1092 "command": "get_input",
1093 "inputName": "2017488_adiodvpe0_AIC_CLLI"
1094 },
1095 "ASN": {
1096 "displayName": "ASN",
1097 "command": "get_input",
1098 "inputName": "2017488_adiodvpe0_ASN"
1099 },
1100 "vnf_instance_name": {
1101 "displayName": "vnf_instance_name",
1102 "command": "get_input",
1103 "inputName": "2017488_adiodvpe0_vnf_instance_name"
1104 }
1105 },
1106 "properties": {
1107 "vmxvre_retype": "RE-VMX",
1108 "vnf_config_template_version": "get_input:2017488_adiodvpe0_vnf_config_template_version",
1109 "sriov44_net_id": "48d399b3-11ee-48a8-94d2-f0ea94d6be8d",
1110 "int_ctl_net_id": "2f323477-6936-4d01-ac53-d849430281d9",
1111 "vmxvpfe_sriov41_0_port_mac": "00:11:22:EF:AC:DF",
1112 "int_ctl_net_name": "VMX-INTXI",
1113 "vmx_int_ctl_prefix": "10.0.0.10",
1114 "sriov43_net_id": "da349ca1-6de9-4548-be88-2d88e99bfef5",
1115 "sriov42_net_id": "760669ba-013d-4d9b-b0e7-4151fe2e6279",
1116 "sriov41_net_id": "25ad52d5-c165-40f8-b3b0-ddfc2373280a",
1117 "nf_type": "vPE",
1118 "vmxvpfe_int_ctl_ip_1": "10.0.0.10",
1119 "is_AVPN_service": "false",
1120 "vmx_RSG_name": "vREXI-affinity",
1121 "vmx_int_ctl_forwarding": "l2",
1122 "vmxvre_oam_ip_0": "10.0.0.10",
1123 "vmxvpfe_sriov44_0_port_mac": "00:11:22:EF:AC:DF",
1124 "vmxvpfe_sriov41_0_port_vlanstrip": "false",
1125 "vmxvpfe_sriov42_0_port_vlanfilter": "4001",
1126 "vmxvpfe_sriov44_0_port_unknownunicastallow": "true",
1127 "vmxvre_image_name_0": "VRE-ENGINE_17.2-S2.1.qcow2",
1128 "vmxvre_instance": "0",
1129 "vmxvpfe_sriov43_0_port_mac": "00:11:22:EF:AC:DF",
1130 "vmxvre_flavor_name": "ns.c1r16d32.v5",
1131 "vmxvpfe_volume_size_0": "40.0",
1132 "vmxvpfe_sriov43_0_port_vlanfilter": "4001",
1133 "nf_naming": "{ecomp_generated_naming=false}",
1134 "nf_naming_code": "Navneet",
1135 "vmxvre_name_0": "vREXI",
1136 "vmxvpfe_sriov42_0_port_vlanstrip": "false",
1137 "vmxvpfe_volume_name_0": "vPFEXI_FBVolume",
1138 "max_instances": "3",
1139 "vmx_RSG_id": "bd89a33c-13c3-4a04-8fde-1a57eb123141",
1140 "vmxvpfe_image_name_0": "VPE_ROUTING-ENGINE_17.2R1-S2.1.qcow2",
1141 "vmxvpfe_sriov43_0_port_unknownunicastallow": "true",
1142 "vmxvpfe_sriov44_0_port_unknownmulticastallow": "true",
1143 "vmxvre_console": "vidconsole",
1144 "vmxvpfe_sriov44_0_port_vlanfilter": "4001",
1145 "vmxvpfe_sriov42_0_port_mac": "00:11:22:EF:AC:DF",
1146 "vmxvpfe_volume_id_0": "47cede15-da2f-4397-a101-aa683220aff3",
1147 "vmxvpfe_sriov42_0_port_unknownmulticastallow": "true",
1148 "min_instances": "1",
1149 "vmxvpfe_sriov44_0_port_vlanstrip": "false",
1150 "vf_module_id": "123",
1151 "nf_function": "JAI",
1152 "vmxvpfe_sriov43_0_port_unknownmulticastallow": "true",
1153 "vmxvre_int_ctl_ip_0": "10.0.0.10",
1154 "ecomp_generated_naming": "false",
1155 "AIC_CLLI": "get_input:2017488_adiodvpe0_AIC_CLLI",
1156 "vnf_name": "mtnj309me6vre",
1157 "vmxvpfe_sriov41_0_port_unknownunicastallow": "true",
1158 "vmxvre_volume_type_1": "HITACHI",
1159 "vmxvpfe_sriov44_0_port_broadcastallow": "true",
1160 "vmxvre_volume_type_0": "HITACHI",
1161 "vmxvpfe_volume_type_0": "HITACHI",
1162 "vmxvpfe_sriov43_0_port_broadcastallow": "true",
1163 "bandwidth_units": "get_input:adiodvpe0_bandwidth_units",
1164 "vnf_id": "123",
1165 "vmxvre_oam_prefix": "24",
1166 "availability_zone_0": "mtpocfo-kvm-az01",
1167 "ASN": "get_input:2017488_adiodvpe0_ASN",
1168 "vmxvre_chassis_i2cid": "161",
1169 "vmxvpfe_name_0": "vPFEXI",
1170 "bandwidth": "get_input:adiodvpe0_bandwidth",
1171 "availability_zone_max_count": "1",
1172 "vmxvre_volume_size_0": "45.0",
1173 "vmxvre_volume_size_1": "50.0",
1174 "vmxvpfe_sriov42_0_port_broadcastallow": "true",
1175 "vmxvre_oam_gateway": "10.0.0.10",
1176 "vmxvre_volume_name_1": "vREXI_FAVolume",
1177 "vmxvre_ore_present": "0",
1178 "vmxvre_volume_name_0": "vREXI_FBVolume",
1179 "vmxvre_type": "0",
1180 "vnf_instance_name": "get_input:2017488_adiodvpe0_vnf_instance_name",
1181 "vmxvpfe_sriov41_0_port_unknownmulticastallow": "true",
1182 "oam_net_id": "b95eeb1d-d55d-4827-abb4-8ebb94941429",
1183 "vmx_int_ctl_len": "24",
1184 "vmxvpfe_sriov43_0_port_vlanstrip": "false",
1185 "vmxvpfe_sriov41_0_port_broadcastallow": "true",
1186 "vmxvre_volume_id_1": "6e86797e-03cd-4fdc-ba72-2957119c746d",
1187 "vmxvpfe_sriov41_0_port_vlanfilter": "4001",
1188 "nf_role": "Testing",
1189 "vmxvre_volume_id_0": "f4eacb79-f687-4e9d-b760-21847c8bb15a",
1190 "vmxvpfe_sriov42_0_port_unknownunicastallow": "true",
1191 "vmxvpfe_flavor_name": "ns.c20r16d25.v5"
1192 },
1193 "type": "VF",
1194 "modelCustomizationName": "2017-488_ADIOD-vPE 0",
1195 "vfModules": {
1196 "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1": {
1197 "uuid": "25284168-24bb-4698-8cb4-3f509146eca5",
1198 "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
1199 "customizationUuid": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401",
1200 "description": null,
1201 "name": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
1202 "version": "6",
1203 "modelCustomizationName": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
1204 "properties": {
1205 "minCountInstances": 0,
1206 "maxCountInstances": null,
1207 "initialCount": 0,
1208 "vfModuleLabel": "ADIOD_vRE_BV"
1209 },
1210 "inputs": {
1211 "adiodvpe0_bandwidth": {
1212 "type": "string",
1213 "description": "Requested VPE bandwidth",
1214 "entry_schema": null,
1215 "inputProperties": {
1216 "sourceType": "HEAT",
1217 "vfModuleLabel": "ADIOD_vRE_BV",
1218 "paramName": "bandwidth"
1219 },
1220 "constraints": null,
1221 "required": true,
1222 "default": "10"
1223 },
1224 "2017488_adiodvpe0_vnf_instance_name": {
1225 "type": "string",
1226 "description": "The hostname assigned to the vpe.",
1227 "entry_schema": null,
1228 "inputProperties": {
1229 "sourceType": "HEAT",
1230 "vfModuleLabel": "ADIOD_vRE_BV",
1231 "paramName": "vnf_instance_name"
1232 },
1233 "constraints": null,
1234 "required": true,
1235 "default": "mtnj309me6"
1236 },
1237 "2017488_adiodvpe0_vnf_config_template_version": {
1238 "type": "string",
1239 "description": "VPE Software Version",
1240 "entry_schema": null,
1241 "inputProperties": {
1242 "sourceType": "HEAT",
1243 "vfModuleLabel": "ADIOD_vRE_BV",
1244 "paramName": "vnf_config_template_version"
1245 },
1246 "constraints": null,
1247 "required": true,
1248 "default": "17.2"
1249 },
1250 "2017488_adiodvpe0_AIC_CLLI": {
1251 "type": "string",
1252 "description": "AIC Site CLLI",
1253 "entry_schema": null,
1254 "inputProperties": {
1255 "sourceType": "HEAT",
1256 "vfModuleLabel": "ADIOD_vRE_BV",
1257 "paramName": "AIC_CLLI"
1258 },
1259 "constraints": null,
1260 "required": true,
1261 "default": "ATLMY8GA"
1262 },
1263 "adiodvpe0_bandwidth_units": {
1264 "type": "string",
1265 "description": "Units of bandwidth",
1266 "entry_schema": null,
1267 "inputProperties": {
1268 "sourceType": "HEAT",
1269 "vfModuleLabel": "ADIOD_vRE_BV",
1270 "paramName": "bandwidth_units"
1271 },
1272 "constraints": null,
1273 "required": true,
1274 "default": "Gbps"
1275 }
1276 },
1277 "volumeGroupAllowed": true
1278 },
1279 "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0": {
1280 "uuid": "f8360508-3f17-4414-a2ed-6bc71161e8db",
1281 "invariantUuid": "b34833bb-6aa9-4ad6-a831-70b06367a091",
1282 "customizationUuid": "a55961b2-2065-4ab0-a5b7-2fcee1c227e3",
1283 "description": null,
1284 "name": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0",
1285 "version": "5",
1286 "modelCustomizationName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0",
1287 "properties": {
1288 "minCountInstances": 1,
1289 "maxCountInstances": 1,
1290 "initialCount": 1,
1291 "vfModuleLabel": "ADIOD_base_vPE_BV"
1292 },
1293 "inputs": {},
1294 "volumeGroupAllowed": false
1295 },
1296 "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vPFE_BV..module-2": {
1297 "uuid": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a",
1298 "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
1299 "customizationUuid": "3cd946bb-50e0-40d8-96d3-c9023520b557",
1300 "description": null,
1301 "name": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
1302 "version": "6",
1303 "modelCustomizationName": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
1304 "properties": {
1305 "minCountInstances": 0,
1306 "maxCountInstances": null,
1307 "initialCount": 0,
1308 "vfModuleLabel": "ADIOD_vPFE_BV"
1309 },
1310 "inputs": {},
1311 "volumeGroupAllowed": true
1312 }
1313 },
1314 "volumeGroups": {
1315 "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1": {
1316 "uuid": "25284168-24bb-4698-8cb4-3f509146eca5",
1317 "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
1318 "customizationUuid": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401",
1319 "description": null,
1320 "name": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
1321 "version": "6",
1322 "modelCustomizationName": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
1323 "properties": {
1324 "minCountInstances": 0,
1325 "maxCountInstances": null,
1326 "initialCount": 0,
1327 "vfModuleLabel": "ADIOD_vRE_BV"
1328 },
1329 "inputs": {
1330 "adiodvpe0_bandwidth": {
1331 "type": "string",
1332 "description": "Requested VPE bandwidth",
1333 "entry_schema": null,
1334 "inputProperties": {
1335 "sourceType": "HEAT",
1336 "vfModuleLabel": "ADIOD_vRE_BV",
1337 "paramName": "bandwidth"
1338 },
1339 "constraints": null,
1340 "required": true,
1341 "default": "10"
1342 },
1343 "2017488_adiodvpe0_vnf_instance_name": {
1344 "type": "string",
1345 "description": "The hostname assigned to the vpe.",
1346 "entry_schema": null,
1347 "inputProperties": {
1348 "sourceType": "HEAT",
1349 "vfModuleLabel": "ADIOD_vRE_BV",
1350 "paramName": "vnf_instance_name"
1351 },
1352 "constraints": null,
1353 "required": true,
1354 "default": "mtnj309me6"
1355 },
1356 "2017488_adiodvpe0_vnf_config_template_version": {
1357 "type": "string",
1358 "description": "VPE Software Version",
1359 "entry_schema": null,
1360 "inputProperties": {
1361 "sourceType": "HEAT",
1362 "vfModuleLabel": "ADIOD_vRE_BV",
1363 "paramName": "vnf_config_template_version"
1364 },
1365 "constraints": null,
1366 "required": true,
1367 "default": "17.2"
1368 },
1369 "2017488_adiodvpe0_AIC_CLLI": {
1370 "type": "string",
1371 "description": "AIC Site CLLI",
1372 "entry_schema": null,
1373 "inputProperties": {
1374 "sourceType": "HEAT",
1375 "vfModuleLabel": "ADIOD_vRE_BV",
1376 "paramName": "AIC_CLLI"
1377 },
1378 "constraints": null,
1379 "required": true,
1380 "default": "ATLMY8GA"
1381 },
1382 "adiodvpe0_bandwidth_units": {
1383 "type": "string",
1384 "description": "Units of bandwidth",
1385 "entry_schema": null,
1386 "inputProperties": {
1387 "sourceType": "HEAT",
1388 "vfModuleLabel": "ADIOD_vRE_BV",
1389 "paramName": "bandwidth_units"
1390 },
1391 "constraints": null,
1392 "required": true,
1393 "default": "Gbps"
1394 }
1395 }
1396 },
1397 "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vPFE_BV..module-2": {
1398 "uuid": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a",
1399 "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
1400 "customizationUuid": "3cd946bb-50e0-40d8-96d3-c9023520b557",
1401 "description": null,
1402 "name": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
1403 "version": "6",
1404 "modelCustomizationName": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
1405 "properties": {
1406 "minCountInstances": 0,
1407 "maxCountInstances": null,
1408 "initialCount": 0,
1409 "vfModuleLabel": "ADIOD_vPFE_BV"
1410 },
1411 "inputs": {}
1412 }
1413 },
1414 "vfcInstanceGroups": {}
1415 }
1416 },
1417 "networks": {
1418 "ExtVL 0": {
1419 "uuid": "ddc3f20c-08b5-40fd-af72-c6d14636b986",
1420 "invariantUuid": "379f816b-a7aa-422f-be30-17114ff50b7c",
1421 "description": "ECOMP generic virtual link (network) base type for all other service-level and global networks",
1422 "name": "ExtVL",
1423 "version": "37.0",
1424 "customizationUuid": "94fdd893-4a36-4d70-b16a-ec29c54c184f",
1425 "inputs": {},
1426 "commands": {},
1427 "properties": {
1428 "min_instances": 1,
1429 "max_instances": 10,
1430 "network_assignments": "{is_external_network=false, ipv4_subnet_default_assignment={min_subnets_count=1}, ecomp_generated_network_assignment=false, ipv6_subnet_default_assignment={min_subnets_count=1}}",
1431 "exVL_naming": "{ecomp_generated_naming=true}",
1432 "network_flows": "{is_network_policy=false, is_bound_to_vpn=false}",
1433 "network_homing": "{ecomp_selected_instance_node_target=false}"
1434 },
1435 "type": "VL",
1436 "modelCustomizationName": "ExtVL 0"
1437 }
1438 },
1439 "collectionResource": {},
1440 "configurations": {},
1441 "fabricConfigurations": {},
1442 "serviceProxies": {},
1443 "vfModules": {
1444 "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1": {
1445 "uuid": "25284168-24bb-4698-8cb4-3f509146eca5",
1446 "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
1447 "customizationUuid": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401",
1448 "description": null,
1449 "name": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
1450 "version": "6",
1451 "modelCustomizationName": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
1452 "properties": {
1453 "minCountInstances": 0,
1454 "maxCountInstances": null,
1455 "initialCount": 0,
1456 "vfModuleLabel": "ADIOD_vRE_BV"
1457 },
1458 "inputs": {
1459 "adiodvpe0_bandwidth": {
1460 "type": "string",
1461 "description": "Requested VPE bandwidth",
1462 "entry_schema": null,
1463 "inputProperties": {
1464 "sourceType": "HEAT",
1465 "vfModuleLabel": "ADIOD_vRE_BV",
1466 "paramName": "bandwidth"
1467 },
1468 "constraints": null,
1469 "required": true,
1470 "default": "10"
1471 },
1472 "2017488_adiodvpe0_vnf_instance_name": {
1473 "type": "string",
1474 "description": "The hostname assigned to the vpe.",
1475 "entry_schema": null,
1476 "inputProperties": {
1477 "sourceType": "HEAT",
1478 "vfModuleLabel": "ADIOD_vRE_BV",
1479 "paramName": "vnf_instance_name"
1480 },
1481 "constraints": null,
1482 "required": true,
1483 "default": "mtnj309me6"
1484 },
1485 "2017488_adiodvpe0_vnf_config_template_version": {
1486 "type": "string",
1487 "description": "VPE Software Version",
1488 "entry_schema": null,
1489 "inputProperties": {
1490 "sourceType": "HEAT",
1491 "vfModuleLabel": "ADIOD_vRE_BV",
1492 "paramName": "vnf_config_template_version"
1493 },
1494 "constraints": null,
1495 "required": true,
1496 "default": "17.2"
1497 },
1498 "2017488_adiodvpe0_AIC_CLLI": {
1499 "type": "string",
1500 "description": "AIC Site CLLI",
1501 "entry_schema": null,
1502 "inputProperties": {
1503 "sourceType": "HEAT",
1504 "vfModuleLabel": "ADIOD_vRE_BV",
1505 "paramName": "AIC_CLLI"
1506 },
1507 "constraints": null,
1508 "required": true,
1509 "default": "ATLMY8GA"
1510 },
1511 "adiodvpe0_bandwidth_units": {
1512 "type": "string",
1513 "description": "Units of bandwidth",
1514 "entry_schema": null,
1515 "inputProperties": {
1516 "sourceType": "HEAT",
1517 "vfModuleLabel": "ADIOD_vRE_BV",
1518 "paramName": "bandwidth_units"
1519 },
1520 "constraints": null,
1521 "required": true,
1522 "default": "Gbps"
1523 }
1524 },
1525 "volumeGroupAllowed": true
1526 },
1527 "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0": {
1528 "uuid": "f8360508-3f17-4414-a2ed-6bc71161e8db",
1529 "invariantUuid": "b34833bb-6aa9-4ad6-a831-70b06367a091",
1530 "customizationUuid": "a55961b2-2065-4ab0-a5b7-2fcee1c227e3",
1531 "description": null,
1532 "name": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0",
1533 "version": "5",
1534 "modelCustomizationName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0",
1535 "properties": {
1536 "minCountInstances": 1,
1537 "maxCountInstances": 1,
1538 "initialCount": 1,
1539 "vfModuleLabel": "ADIOD_base_vPE_BV"
1540 },
1541 "inputs": {},
1542 "volumeGroupAllowed": false
1543 },
1544 "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vPFE_BV..module-2": {
1545 "uuid": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a",
1546 "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
1547 "customizationUuid": "3cd946bb-50e0-40d8-96d3-c9023520b557",
1548 "description": null,
1549 "name": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
1550 "version": "6",
1551 "modelCustomizationName": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
1552 "properties": {
1553 "minCountInstances": 0,
1554 "maxCountInstances": null,
1555 "initialCount": 0,
1556 "vfModuleLabel": "ADIOD_vPFE_BV"
1557 },
1558 "inputs": {},
1559 "volumeGroupAllowed": true
1560 }
1561 },
1562 "volumeGroups": {
1563 "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1": {
1564 "uuid": "25284168-24bb-4698-8cb4-3f509146eca5",
1565 "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1",
1566 "customizationUuid": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401",
1567 "description": null,
1568 "name": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
1569 "version": "6",
1570 "modelCustomizationName": "2017488AdiodVpe..ADIOD_vRE_BV..module-1",
1571 "properties": {
1572 "minCountInstances": 0,
1573 "maxCountInstances": null,
1574 "initialCount": 0,
1575 "vfModuleLabel": "ADIOD_vRE_BV"
1576 },
1577 "inputs": {
1578 "adiodvpe0_bandwidth": {
1579 "type": "string",
1580 "description": "Requested VPE bandwidth",
1581 "entry_schema": null,
1582 "inputProperties": {
1583 "sourceType": "HEAT",
1584 "vfModuleLabel": "ADIOD_vRE_BV",
1585 "paramName": "bandwidth"
1586 },
1587 "constraints": null,
1588 "required": true,
1589 "default": "10"
1590 },
1591 "2017488_adiodvpe0_vnf_instance_name": {
1592 "type": "string",
1593 "description": "The hostname assigned to the vpe.",
1594 "entry_schema": null,
1595 "inputProperties": {
1596 "sourceType": "HEAT",
1597 "vfModuleLabel": "ADIOD_vRE_BV",
1598 "paramName": "vnf_instance_name"
1599 },
1600 "constraints": null,
1601 "required": true,
1602 "default": "mtnj309me6"
1603 },
1604 "2017488_adiodvpe0_vnf_config_template_version": {
1605 "type": "string",
1606 "description": "VPE Software Version",
1607 "entry_schema": null,
1608 "inputProperties": {
1609 "sourceType": "HEAT",
1610 "vfModuleLabel": "ADIOD_vRE_BV",
1611 "paramName": "vnf_config_template_version"
1612 },
1613 "constraints": null,
1614 "required": true,
1615 "default": "17.2"
1616 },
1617 "2017488_adiodvpe0_AIC_CLLI": {
1618 "type": "string",
1619 "description": "AIC Site CLLI",
1620 "entry_schema": null,
1621 "inputProperties": {
1622 "sourceType": "HEAT",
1623 "vfModuleLabel": "ADIOD_vRE_BV",
1624 "paramName": "AIC_CLLI"
1625 },
1626 "constraints": null,
1627 "required": true,
1628 "default": "ATLMY8GA"
1629 },
1630 "adiodvpe0_bandwidth_units": {
1631 "type": "string",
1632 "description": "Units of bandwidth",
1633 "entry_schema": null,
1634 "inputProperties": {
1635 "sourceType": "HEAT",
1636 "vfModuleLabel": "ADIOD_vRE_BV",
1637 "paramName": "bandwidth_units"
1638 },
1639 "constraints": null,
1640 "required": true,
1641 "default": "Gbps"
1642 }
1643 }
1644 },
1645 "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vPFE_BV..module-2": {
1646 "uuid": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a",
1647 "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339",
1648 "customizationUuid": "3cd946bb-50e0-40d8-96d3-c9023520b557",
1649 "description": null,
1650 "name": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
1651 "version": "6",
1652 "modelCustomizationName": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2",
1653 "properties": {
1654 "minCountInstances": 0,
1655 "maxCountInstances": null,
1656 "initialCount": 0,
1657 "vfModuleLabel": "ADIOD_vPFE_BV"
1658 },
1659 "inputs": {}
1660 }
1661 },
1662 "pnfs": {}
1663 }
1664 },
1665 "serviceInstance": {
1666 "6e59c5de-f052-46fa-aa7e-2fca9d674c44": {
1667 "vnfs": {
1668 "VF_vMee 0": {
1669 "rollbackOnFailure": "true",
1670 "vfModules": {
1671 "vf_vmee0..VfVmee..base_vmme..module-0": {
1672 "vf_vmee0..VfVmee..base_vmme..module-0vmvzo": {
1673 "isMissingData": false,
1674 "sdncPreReload": null,
1675 "modelInfo": {
1676 "modelType": "VFmodule",
1677 "modelInvariantId": "a6f9e51a-2b35-416a-ae15-15e58d61f36d",
1678 "modelVersionId": "a27f5cfc-7f12-4f99-af08-0af9c3885c87",
1679 "modelName": "VfVmee..base_vmme..module-0",
1680 "modelVersion": "2",
1681 "modelCustomizationId": "f8c040f1-7e51-4a11-aca8-acf256cfd861",
1682 "modelCustomizationName": "VfVmee..base_vmme..module-0"
1683 },
1684 "instanceParams": [
1685 {}
1686 ],
1687 "trackById": "wmtm6sy2uj"
1688 }
1689 }
1690 },
1691 "isMissingData": true,
1692 "originalName": "VF_vMee 0",
1693 "vnfStoreKey": "VF_vMee 0",
1694 "trackById": "p3wk448m5do",
1695 "uuid": "d6557200-ecf2-4641-8094-5393ae3aae60",
1696 "productFamilyId": "36b4733a-53f4-4cc8-8ff0-9172e5fc4b8e",
1697 "lcpCloudRegionId": null,
1698 "tenantId": null,
1699 "lineOfBusiness": null,
1700 "platformName": null,
1701 "modelInfo": {
1702 "modelType": "VF",
1703 "modelInvariantId": "4160458e-f648-4b30-a176-43881ffffe9e",
1704 "modelVersionId": "6e59c5de-f052-46fa-aa7e-2fca9d674c44",
1705 "modelName": "VF_vMee",
1706 "modelVersion": "2.0",
1707 "modelCustomizationName": "VF_vMee 0"
1708 }
1709 }
1710 },
1711 "networks": {},
1712 "instanceParams": [
1713 {}
1714 ],
1715 "validationCounter": 1,
1716 "existingNames": {},
1717 "existingVNFCounterMap": {
1718 "d91415b44-753d-494c-926a-456a9172bbb9": 1
1719 },
1720 "globalSubscriberId": "e433710f-9217-458d-a79d-1c7aff376d89",
1721 "subscriptionServiceType": "TYLER SILVIA",
1722 "owningEntityId": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc",
1723 "productFamilyId": "36b4733a-53f4-4cc8-8ff0-9172e5fc4b8e",
1724 "lcpCloudRegionId": "hvf6",
1725 "tenantId": "229bcdc6eaeb4ca59d55221141d01f8e",
1726 "aicZoneId": "JAG1",
1727 "projectName": "x1",
1728 "rollbackOnFailure": "true",
1729 "bulkSize": 1,
1730 "modelInfo": {
1731 "modelInvariantId": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
1732 "modelVersionId": "6e59c5de-f052-46fa-aa7e-2fca9d674c44",
1733 "modelName": "ComplexService",
1734 "modelVersion": "1.0",
1735 "uuid": "6e59c5de-f052-46fa-aa7e-2fca9d674c44"
1736 },
1737 "isALaCarte": false,
1738 "name": "ComplexService",
1739 "version": "1.0",
1740 "description": "ComplexService",
1741 "category": "Emanuel",
1742 "uuid": "6e59c5de-f052-46fa-aa7e-2fca9d674c44",
1743 "invariantUuid": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
1744 "serviceType": "",
1745 "serviceRole": "",
1746 "isMultiStepDesign": false
1747 },
1748 "6b528779-44a3-4472-bdff-9cd15ec93450": {
1749 "networks": {},
1750 "vnfs": {},
1751 "instanceParams": [
1752 {
1753 "2017488_adiodvpe0_ASN": "AV_vPE"
1754 }
1755 ],
1756 "validationCounter": 0,
1757 "existingNames": {
1758 "123": "",
1759 "instancename": "",
1760 "yoav": ""
1761 },
1762 "existingVNFCounterMap": {},
1763 "existingNetworksCounterMap": {},
1764 "instanceName": "InstanceName",
1765 "globalSubscriberId": "e433710f-9217-458d-a79d-1c7aff376d89",
1766 "subscriptionServiceType": "TYLER SILVIA",
1767 "owningEntityId": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc",
1768 "productFamilyId": "17cc1042-527b-11e6-beb8-9e71128cae77",
1769 "lcpCloudRegionId": "JANET25",
1770 "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
1771 "aicZoneId": "JAG1",
1772 "projectName": null,
1773 "rollbackOnFailure": "true",
1774 "aicZoneName": "YUDFJULP-JAG1",
1775 "owningEntityName": "WayneHolland",
1776 "testApi": "GR_API",
1777 "tenantName": "USP-SIP-IC-24335-T-01",
1778 "bulkSize": 1,
1779 "modelInfo": {
1780 "modelInvariantId": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
1781 "modelVersionId": "6b528779-44a3-4472-bdff-9cd15ec93450",
1782 "modelName": "action-data",
1783 "modelVersion": "1.0",
1784 "uuid": "6b528779-44a3-4472-bdff-9cd15ec93450"
1785 },
1786 "isALaCarte": false,
1787 "name": "action-data",
1788 "version": "1.0",
1789 "description": "",
1790 "category": "",
1791 "uuid": "6b528779-44a3-4472-bdff-9cd15ec93450",
1792 "invariantUuid": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
1793 "serviceType": "",
1794 "serviceRole": "",
1795 "isMultiStepDesign": false
1796 }
1797 },
1798 "lcpRegionsAndTenants": {
1799 "lcpRegionList": [
1800 {
1801 "id": "JANET25",
1802 "name": "JANET25",
1803 "isPermitted": true
1804 },
1805 {
1806 "id": "hvf6",
1807 "name": "hvf6",
1808 "isPermitted": true
1809 }
1810 ],
1811 "lcpRegionsTenantsMap": {
1812 "JANET25": [
1813 {
1814 "id": "092eb9e8e4b7412e8787dd091bc58e86",
1815 "name": "USP-SIP-IC-24335-T-01",
1816 "isPermitted": true
1817 }
1818 ],
1819 "hvf6": [
1820 {
1821 "id": "bae71557c5bb4d5aac6743a4e5f1d054",
1822 "name": "AIN Web Tool-15-D-testalexandria",
1823 "isPermitted": true
1824 },
1825 {
1826 "id": "229bcdc6eaeb4ca59d55221141d01f8e",
1827 "name": "AIN Web Tool-15-D-STTest2",
1828 "isPermitted": true
1829 },
1830 {
1831 "id": "1178612d2b394be4834ad77f567c0af2",
1832 "name": "AIN Web Tool-15-D-SSPtestcustome",
1833 "isPermitted": true
1834 },
1835 {
1836 "id": "19c5ade915eb461e8af52fb2fd8cd1f2",
1837 "name": "AIN Web Tool-15-D-UncheckedEcopm",
1838 "isPermitted": true
1839 },
1840 {
1841 "id": "de007636e25249238447264a988a927b",
1842 "name": "AIN Web Tool-15-D-dfsdf",
1843 "isPermitted": true
1844 },
1845 {
1846 "id": "62f29b3613634ca6a3065cbe0e020c44",
1847 "name": "AIN/SMS-16-D-Multiservices1",
1848 "isPermitted": true
1849 },
1850 {
1851 "id": "649289e30d3244e0b48098114d63c2aa",
1852 "name": "AIN Web Tool-15-D-SSPST66",
1853 "isPermitted": true
1854 },
1855 {
1856 "id": "3f21eeea6c2c486bba31dab816c05a32",
1857 "name": "AIN Web Tool-15-D-ASSPST47",
1858 "isPermitted": true
1859 },
1860 {
1861 "id": "f60ce21d3ee6427586cff0d22b03b773",
1862 "name": "CESAR-100-D-sspjg67246",
1863 "isPermitted": true
1864 },
1865 {
1866 "id": "8774659e425f479895ae091bb5d46560",
1867 "name": "CESAR-100-D-sspjg68359",
1868 "isPermitted": true
1869 },
1870 {
1871 "id": "624eb554b0d147c19ff8885341760481",
1872 "name": "AINWebTool-15-D-iftach",
1873 "isPermitted": true
1874 },
1875 {
1876 "id": "214f55f5fc414c678059c383b03e4962",
1877 "name": "CESAR-100-D-sspjg612401",
1878 "isPermitted": true
1879 },
1880 {
1881 "id": "c90666c291664841bb98e4d981ff1db5",
1882 "name": "CESAR-100-D-sspjg621340",
1883 "isPermitted": true
1884 },
1885 {
1886 "id": "ce5b6bc5c7b348e1bf4b91ac9a174278",
1887 "name": "sspjg621351cloned",
1888 "isPermitted": true
1889 },
1890 {
1891 "id": "b386b768a3f24c8e953abbe0b3488c02",
1892 "name": "AINWebTool-15-D-eteancomp",
1893 "isPermitted": true
1894 },
1895 {
1896 "id": "dc6c4dbfd225474e9deaadd34968646c",
1897 "name": "AINWebTool-15-T-SPFET",
1898 "isPermitted": true
1899 },
1900 {
1901 "id": "02cb5030e9914aa4be120bd9ed1e19eb",
1902 "name": "AINWebTool-15-X-eeweww",
1903 "isPermitted": true
1904 },
1905 {
1906 "id": "f2f3830e4c984d45bcd00e1a04158a79",
1907 "name": "CESAR-100-D-spjg61909",
1908 "isPermitted": true
1909 },
1910 {
1911 "id": "05b91bd5137f4929878edd965755c06d",
1912 "name": "CESAR-100-D-sspjg621512cloned",
1913 "isPermitted": true
1914 },
1915 {
1916 "id": "7002fbe8482d4a989ddf445b1ce336e0",
1917 "name": "AINWebTool-15-X-vdr",
1918 "isPermitted": true
1919 },
1920 {
1921 "id": "4008522be43741dcb1f5422022a2aa0b",
1922 "name": "AINWebTool-15-D-ssasa",
1923 "isPermitted": true
1924 },
1925 {
1926 "id": "f44e2e96a1b6476abfda2fa407b00169",
1927 "name": "AINWebTool-15-D-PFNPT",
1928 "isPermitted": true
1929 },
1930 {
1931 "id": "b69a52bec8a84669a37a1e8b72708be7",
1932 "name": "AINWebTool-15-X-vdre",
1933 "isPermitted": true
1934 },
1935 {
1936 "id": "fac7d9fd56154caeb9332202dcf2969f",
1937 "name": "AINWebTool-15-X-NONPODECOMP",
1938 "isPermitted": true
1939 },
1940 {
1941 "id": "2d34d8396e194eb49969fd61ffbff961",
1942 "name": "DN5242-Nov16-T5",
1943 "isPermitted": true
1944 },
1945 {
1946 "id": "cb42a77ff45b48a8b8deb83bb64acc74",
1947 "name": "ro-T11",
1948 "isPermitted": true
1949 },
1950 {
1951 "id": "fa45ca53c80b492fa8be5477cd84fc2b",
1952 "name": "ro-T112",
1953 "isPermitted": true
1954 },
1955 {
1956 "id": "4914ab0ab3a743e58f0eefdacc1dde77",
1957 "name": "DN5242-Nov21-T1",
1958 "isPermitted": true
1959 },
1960 {
1961 "id": "d0a3e3f2964542259d155a81c41aadc3",
1962 "name": "test-hvf6-09",
1963 "isPermitted": true
1964 },
1965 {
1966 "id": "cbb99fe4ada84631b7baf046b6fd2044",
1967 "name": "DN5242-Nov16-T3",
1968 "isPermitted": true
1969 }
1970 ]
1971 }
1972 },
1973 "productFamilies": [
1974 {
1975 "id": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034",
1976 "name": "SCOTTIE",
1977 "isPermitted": true
1978 },
1979 {
1980 "id": "17cc1042-527b-11e6-beb8-9e71128cae77",
1981 "name": "IGNACIO",
1982 "isPermitted": true
1983 },
1984 {
1985 "id": "36b4733a-53f4-4cc8-8ff0-9172e5fc4b8e",
1986 "name": "Christie",
1987 "isPermitted": true
1988 },
1989 {
1990 "id": "a4f6f2ae-9bf5-4ed7-b904-06b2099c4bd7",
1991 "name": "Enhanced Services",
1992 "isPermitted": true
1993 },
1994 {
1995 "id": "vTerrance",
1996 "name": "vTerrance",
1997 "isPermitted": true
1998 },
1999 {
2000 "id": "323d69d9-2efe-4r45-ay0a-89ea7ard4e6f",
2001 "name": "vSCP",
2002 "isPermitted": true
2003 },
2004 {
2005 "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
2006 "name": "Emanuel",
2007 "isPermitted": true
2008 },
2009 {
2010 "id": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
2011 "name": "BVOIP",
2012 "isPermitted": true
2013 },
2014 {
2015 "id": "db171b8f-115c-4992-a2e3-ee04cae357e0",
2016 "name": "LINDSEY",
2017 "isPermitted": true
2018 },
2019 {
2020 "id": "LRSI-OSPF",
2021 "name": "LRSI-OSPF",
2022 "isPermitted": true
2023 },
2024 {
2025 "id": "vRosemarie",
2026 "name": "HNGATEWAY",
2027 "isPermitted": true
2028 },
2029 {
2030 "id": "vHNPaas",
2031 "name": "WILKINS",
2032 "isPermitted": true
2033 },
2034 {
2035 "id": "e433710f-9217-458d-a79d-1c7aff376d89",
2036 "name": "TYLER SILVIA",
2037 "isPermitted": true
2038 },
2039 {
2040 "id": "b6a3f28c-eebf-494c-a900-055cc7c874ce",
2041 "name": "VROUTER",
2042 "isPermitted": true
2043 },
2044 {
2045 "id": "Cisneros",
2046 "name": "vMuriel",
2047 "isPermitted": true
2048 },
2049 {
2050 "id": "0ee8c1bc-7cbd-4b0a-a1ac-e9999255abc1",
2051 "name": "CARA Griffin",
2052 "isPermitted": true
2053 },
2054 {
2055 "id": "c7611ebe-c324-48f1-8085-94aef0c6ef3d",
2056 "name": "DARREN MCGEE",
2057 "isPermitted": true
2058 },
2059 {
2060 "id": "e30755dc-5673-4b6b-9dcf-9abdd96b93d1",
2061 "name": "Transport",
2062 "isPermitted": true
2063 },
2064 {
2065 "id": "vSalvatore",
2066 "name": "vSalvatore",
2067 "isPermitted": true
2068 },
2069 {
2070 "id": "d7bb0a21-66f2-4e6d-87d9-9ef3ced63ae4",
2071 "name": "Josefina",
2072 "isPermitted": true
2073 },
2074 {
2075 "id": "vHubbard",
2076 "name": "vHubbard",
2077 "isPermitted": true
2078 },
2079 {
2080 "id": "12a96a9d-4b4c-4349-a950-fe1159602621",
2081 "name": "DARREN MCGEE",
2082 "isPermitted": true
2083 }
2084 ],
2085 "serviceTypes": {
2086 "e433710f-9217-458d-a79d-1c7aff376d89": [
2087 {
2088 "id": "0",
2089 "name": "vRichardson",
2090 "isPermitted": false
2091 },
2092 {
2093 "id": "1",
2094 "name": "TYLER SILVIA",
2095 "isPermitted": true
2096 },
2097 {
2098 "id": "2",
2099 "name": "Emanuel",
2100 "isPermitted": false
2101 },
2102 {
2103 "id": "3",
2104 "name": "vJamie",
2105 "isPermitted": false
2106 },
2107 {
2108 "id": "4",
2109 "name": "vVoiceMail",
2110 "isPermitted": false
2111 },
2112 {
2113 "id": "5",
2114 "name": "Kennedy",
2115 "isPermitted": false
2116 },
2117 {
2118 "id": "6",
2119 "name": "vSEGW",
2120 "isPermitted": false
2121 },
2122 {
2123 "id": "7",
2124 "name": "vVM",
2125 "isPermitted": false
2126 },
2127 {
2128 "id": "8",
2129 "name": "vOTA",
2130 "isPermitted": false
2131 },
2132 {
2133 "id": "9",
2134 "name": "vMME",
2135 "isPermitted": false
2136 },
2137 {
2138 "id": "10",
2139 "name": "vMNS",
2140 "isPermitted": false
2141 },
2142 {
2143 "id": "11",
2144 "name": "vSCP",
2145 "isPermitted": false
2146 },
2147 {
2148 "id": "12",
2149 "name": "VPMS",
2150 "isPermitted": false
2151 },
2152 {
2153 "id": "13",
2154 "name": "vMMSC",
2155 "isPermitted": false
2156 },
2157 {
2158 "id": "14",
2159 "name": "SSD",
2160 "isPermitted": false
2161 },
2162 {
2163 "id": "15",
2164 "name": "vMOG",
2165 "isPermitted": false
2166 },
2167 {
2168 "id": "16",
2169 "name": "LINDSEY",
2170 "isPermitted": false
2171 },
2172 {
2173 "id": "17",
2174 "name": "JOHANNA_SANTOS",
2175 "isPermitted": false
2176 },
2177 {
2178 "id": "18",
2179 "name": "vCarroll",
2180 "isPermitted": false
2181 }
2182 ]
2183 },
2184 "aicZones": [
2185 {
2186 "id": "NFT1",
2187 "name": "NFTJSSSS-NFT1"
2188 },
2189 {
2190 "id": "JAG1",
2191 "name": "YUDFJULP-JAG1"
2192 },
2193 {
2194 "id": "YYY1",
2195 "name": "UUUAIAAI-YYY1"
2196 },
2197 {
2198 "id": "BAN1",
2199 "name": "VSDKYUTP-BAN1"
2200 },
2201 {
2202 "id": "DKJ1",
2203 "name": "DKJSJDKA-DKJ1"
2204 },
2205 {
2206 "id": "MCS1",
2207 "name": "ASACMAMS-MCS1"
2208 },
2209 {
2210 "id": "UIO1",
2211 "name": "uioclli1-UIO1"
2212 },
2213 {
2214 "id": "RAJ1",
2215 "name": "YGBIJNLQ-RAJ1"
2216 },
2217 {
2218 "id": "OPA1",
2219 "name": "opaclli1-OPA1"
2220 },
2221 {
2222 "id": "SDE1",
2223 "name": "ZXCVBNMA-SDE1"
2224 },
2225 {
2226 "id": "VEN2",
2227 "name": "FGHJUHIL-VEN2"
2228 },
2229 {
2230 "id": "ORL1",
2231 "name": "ORLDFLMA-ORL1"
2232 },
2233 {
2234 "id": "JAD1",
2235 "name": "JADECLLI-JAD1"
2236 },
2237 {
2238 "id": "ZXL1",
2239 "name": "LWLWCANN-ZXL1"
2240 },
2241 {
2242 "id": "CKL1",
2243 "name": "CLKSKCKK-CKL1"
2244 },
2245 {
2246 "id": "SDF1",
2247 "name": "sdfclli1-SDF1"
2248 },
2249 {
2250 "id": "RAD1",
2251 "name": "RADICAL1-RAD1"
2252 },
2253 {
2254 "id": "KIT1",
2255 "name": "BHYJFGLN-KIT1"
2256 },
2257 {
2258 "id": "REL1",
2259 "name": "INGERFGT-REL1"
2260 },
2261 {
2262 "id": "JNL1",
2263 "name": "CJALSDAC-JNL1"
2264 },
2265 {
2266 "id": "OLK1",
2267 "name": "OLKOLKLS-OLK1"
2268 },
2269 {
2270 "id": "CHI1",
2271 "name": "CHILLIWE-CHI1"
2272 },
2273 {
2274 "id": "UUU4",
2275 "name": "UUUAAAUU-UUU4"
2276 },
2277 {
2278 "id": "TUF1",
2279 "name": "TUFCLLI1-TUF1"
2280 },
2281 {
2282 "id": "KJN1",
2283 "name": "CKALDKSA-KJN1"
2284 },
2285 {
2286 "id": "SAM1",
2287 "name": "SNDGCA64-SAN1"
2288 },
2289 {
2290 "id": "SCK1",
2291 "name": "SCKSCKSK-SCK1"
2292 },
2293 {
2294 "id": "HJH1",
2295 "name": "AOEEQQQD-HJH1"
2296 },
2297 {
2298 "id": "HGD1",
2299 "name": "SDFQWHGD-HGD1"
2300 },
2301 {
2302 "id": "KOR1",
2303 "name": "HYFLNBVT-KOR1"
2304 },
2305 {
2306 "id": "ATL43",
2307 "name": "AICLOCID-ATL43"
2308 },
2309 {
2310 "id": "ATL54",
2311 "name": "AICFTAAI-ATL54"
2312 },
2313 {
2314 "id": "ATL66",
2315 "name": "CLLIAAII-ATL66"
2316 },
2317 {
2318 "id": "VEL1",
2319 "name": "BNMLKUIK-VEL1"
2320 },
2321 {
2322 "id": "ICC1",
2323 "name": "SANJITAT-ICC1"
2324 },
2325 {
2326 "id": "MNT11",
2327 "name": "WSXEFBTH-MNT11"
2328 },
2329 {
2330 "id": "DEF2",
2331 "name": "WSBHGTYL-DEF2"
2332 },
2333 {
2334 "id": "MAD11",
2335 "name": "SDFQWGKL-MAD11"
2336 },
2337 {
2338 "id": "OLG1",
2339 "name": "OLHOLHOL-OLG1"
2340 },
2341 {
2342 "id": "GAR1",
2343 "name": "NGFVSJKO-GAR1"
2344 },
2345 {
2346 "id": "SAN22",
2347 "name": "GNVLSCTL-SAN22"
2348 },
2349 {
2350 "id": "HRG1",
2351 "name": "HRGHRGGS-HRG1"
2352 },
2353 {
2354 "id": "JCS1",
2355 "name": "JCSJSCJS-JCS1"
2356 },
2357 {
2358 "id": "DHA12",
2359 "name": "WSXEDECF-DHA12"
2360 },
2361 {
2362 "id": "HJE1",
2363 "name": "AOEEWWWD-HJE1"
2364 },
2365 {
2366 "id": "NCA1",
2367 "name": "NCANCANN-NCA1"
2368 },
2369 {
2370 "id": "IOP1",
2371 "name": "iopclli1-IOP1"
2372 },
2373 {
2374 "id": "RTY1",
2375 "name": "rtyclli1-RTY1"
2376 },
2377 {
2378 "id": "KAP1",
2379 "name": "HIOUYTRQ-KAP1"
2380 },
2381 {
2382 "id": "ZEN1",
2383 "name": "ZENCLLI1-ZEN1"
2384 },
2385 {
2386 "id": "HKA1",
2387 "name": "JAKHLASS-HKA1"
2388 },
2389 {
2390 "id": "CQK1",
2391 "name": "CQKSCAKK-CQK1"
2392 },
2393 {
2394 "id": "SAI1",
2395 "name": "UBEKQLPD-SAI1"
2396 },
2397 {
2398 "id": "ERT1",
2399 "name": "ertclli1-ERT1"
2400 },
2401 {
2402 "id": "IBB1",
2403 "name": "PLMKOIJU-IBB1"
2404 },
2405 {
2406 "id": "TIR2",
2407 "name": "PLKINHYI-TIR2"
2408 },
2409 {
2410 "id": "HSD1",
2411 "name": "CHASKCDS-HSD1"
2412 },
2413 {
2414 "id": "SLF78",
2415 "name": "SDCTLFN1-SLF78"
2416 },
2417 {
2418 "id": "SEE78",
2419 "name": "SDCTEEE4-SEE78"
2420 },
2421 {
2422 "id": "SAN13",
2423 "name": "TOKYJPFA-SAN13"
2424 },
2425 {
2426 "id": "SAA78",
2427 "name": "SDCTAAA1-SAA78"
2428 },
2429 {
2430 "id": "LUC1",
2431 "name": "ATLDFGYC-LUC1"
2432 },
2433 {
2434 "id": "AMD13",
2435 "name": "MEMATLAN-AMD13"
2436 },
2437 {
2438 "id": "TOR1",
2439 "name": "TOROONXN-TOR1"
2440 },
2441 {
2442 "id": "QWE1",
2443 "name": "QWECLLI1-QWE1"
2444 },
2445 {
2446 "id": "ZOG1",
2447 "name": "ZOGASTRO-ZOG1"
2448 },
2449 {
2450 "id": "CAL33",
2451 "name": "CALIFORN-CAL33"
2452 },
2453 {
2454 "id": "SHH78",
2455 "name": "SDIT1HHH-SHH78"
2456 },
2457 {
2458 "id": "DSA1",
2459 "name": "LKJHGFDS-DSA1"
2460 },
2461 {
2462 "id": "CLG1",
2463 "name": "CLGRABAD-CLG1"
2464 },
2465 {
2466 "id": "BNA1",
2467 "name": "BNARAGBK-BNA1"
2468 },
2469 {
2470 "id": "ATL84",
2471 "name": "CANTTCOC-ATL84"
2472 },
2473 {
2474 "id": "APP1",
2475 "name": "WBHGTYUI-APP1"
2476 },
2477 {
2478 "id": "RJN1",
2479 "name": "RJNRBZAW-RJN1"
2480 },
2481 {
2482 "id": "EHH78",
2483 "name": "SDCSHHH5-EHH78"
2484 },
2485 {
2486 "id": "mac10",
2487 "name": "PKGTESTF-mac10"
2488 },
2489 {
2490 "id": "SXB78",
2491 "name": "SDCTGXB1-SXB78"
2492 },
2493 {
2494 "id": "SAX78",
2495 "name": "SDCTAXG1-SAX78"
2496 },
2497 {
2498 "id": "SYD1",
2499 "name": "SYDNAUBV-SYD1"
2500 },
2501 {
2502 "id": "TOK1",
2503 "name": "TOKYJPFA-TOK1"
2504 },
2505 {
2506 "id": "KGM2",
2507 "name": "KGMTNC20-KGM2"
2508 },
2509 {
2510 "id": "DCC1b",
2511 "name": "POIUYTGH-DCC1b"
2512 },
2513 {
2514 "id": "SKK78",
2515 "name": "SDCTKKK1-SKK78"
2516 },
2517 {
2518 "id": "SGG78",
2519 "name": "SDCTGGG1-SGG78"
2520 },
2521 {
2522 "id": "SJJ78",
2523 "name": "SDCTJJJ1-SJJ78"
2524 },
2525 {
2526 "id": "SBX78",
2527 "name": "SDCTBXG1-SBX78"
2528 },
2529 {
2530 "id": "LAG1",
2531 "name": "LARGIZON-LAG1"
2532 },
2533 {
2534 "id": "IAA1",
2535 "name": "QAZXSWED-IAA1"
2536 },
2537 {
2538 "id": "POI1",
2539 "name": "PLMNJKIU-POI1"
2540 },
2541 {
2542 "id": "LAG1a",
2543 "name": "LARGIZON-LAG1a"
2544 },
2545 {
2546 "id": "PBL1",
2547 "name": "PBLAPBAI-PBL1"
2548 },
2549 {
2550 "id": "LAG45",
2551 "name": "LARGIZON-LAG1a"
2552 },
2553 {
2554 "id": "MAR1",
2555 "name": "MNBVCXZM-MAR1"
2556 },
2557 {
2558 "id": "HST70",
2559 "name": "HSTNTX70-HST70"
2560 },
2561 {
2562 "id": "DCC1a",
2563 "name": "POIUYTGH-DCC1a"
2564 },
2565 {
2566 "id": "TOL1",
2567 "name": "TOLDOH21-TOL1"
2568 },
2569 {
2570 "id": "LON1",
2571 "name": "LONEENCO-LON1"
2572 },
2573 {
2574 "id": "SJU78",
2575 "name": "SDIT1JUB-SJU78"
2576 },
2577 {
2578 "id": "STN27",
2579 "name": "HSTNTX01-STN27"
2580 },
2581 {
2582 "id": "SSW56",
2583 "name": "ss8126GT-SSW56"
2584 },
2585 {
2586 "id": "SBB78",
2587 "name": "SDIT1BBB-SBB78"
2588 },
2589 {
2590 "id": "DCC3",
2591 "name": "POIUYTGH-DCC3"
2592 },
2593 {
2594 "id": "GNV1",
2595 "name": "GNVLSCTL-GNV1"
2596 },
2597 {
2598 "id": "WAS1",
2599 "name": "WASHDCSW-WAS1"
2600 },
2601 {
2602 "id": "TOY1",
2603 "name": "TORYONNZ-TOY1"
2604 },
2605 {
2606 "id": "STT1",
2607 "name": "STTLWA02-STT1"
2608 },
2609 {
2610 "id": "STG1",
2611 "name": "STTGGE62-STG1"
2612 },
2613 {
2614 "id": "SLL78",
2615 "name": "SDCTLLL1-SLL78"
2616 },
2617 {
2618 "id": "SBU78",
2619 "name": "SDIT1BUB-SBU78"
2620 },
2621 {
2622 "id": "ATL2",
2623 "name": "ATLNGANW-ATL2"
2624 },
2625 {
2626 "id": "BOT1",
2627 "name": "BOTHWAKY-BOT1"
2628 },
2629 {
2630 "id": "SNG1",
2631 "name": "SNGPSIAU-SNG1"
2632 },
2633 {
2634 "id": "NYC1",
2635 "name": "NYCMNY54-NYC1"
2636 },
2637 {
2638 "id": "LAG1b",
2639 "name": "LARGIZON-LAG1b"
2640 },
2641 {
2642 "id": "AMD15",
2643 "name": "AMDFAA01-AMD15"
2644 },
2645 {
2646 "id": "SNA1",
2647 "name": "SNANTXCA-SNA1"
2648 },
2649 {
2650 "id": "PLT1",
2651 "name": "PLTNCA60-PLT1"
2652 },
2653 {
2654 "id": "TLP1",
2655 "name": "TLPNXM18-TLP1"
2656 },
2657 {
2658 "id": "SDD81",
2659 "name": "SAIT1DD6-SDD81"
2660 },
2661 {
2662 "id": "DCC1",
2663 "name": "POIUYTGH-DCC1"
2664 },
2665 {
2666 "id": "DCC2",
2667 "name": "POIUYTGH-DCC2"
2668 },
2669 {
2670 "id": "OKC1",
2671 "name": "OKCBOK55-OKC1"
2672 },
2673 {
2674 "id": "PAR1",
2675 "name": "PARSFRCG-PAR1"
2676 },
2677 {
2678 "id": "TES36",
2679 "name": "ABCEETES-TES36"
2680 },
2681 {
2682 "id": "COM1",
2683 "name": "PLMKOPIU-COM1"
2684 },
2685 {
2686 "id": "ANI1",
2687 "name": "ATLNGTRE-ANI1"
2688 },
2689 {
2690 "id": "SDG78",
2691 "name": "SDIT1BDG-SDG78"
2692 },
2693 {
2694 "id": "mac20",
2695 "name": "PKGTESTF-mac20"
2696 },
2697 {
2698 "id": "DSF45",
2699 "name": "DSFBG123-DSF45"
2700 },
2701 {
2702 "id": "HST25",
2703 "name": "HSTNTX01-HST25"
2704 },
2705 {
2706 "id": "AMD18",
2707 "name": "AUDIMA01-AMD18"
2708 },
2709 {
2710 "id": "SAA80",
2711 "name": "SAIT9AA3-SAA80"
2712 },
2713 {
2714 "id": "SSA56",
2715 "name": "SSIT2AA7-SSA56"
2716 },
2717 {
2718 "id": "SDD82",
2719 "name": "SAIT1DD9-SDD82"
2720 },
2721 {
2722 "id": "JCV1",
2723 "name": "JCVLFLBW-JCV1"
2724 },
2725 {
2726 "id": "SUL2",
2727 "name": "WERTYUJK-SUL2"
2728 },
2729 {
2730 "id": "PUR1",
2731 "name": "purelyde-PUR1"
2732 },
2733 {
2734 "id": "FDE55",
2735 "name": "FDERT555-FDE55"
2736 },
2737 {
2738 "id": "SITE",
2739 "name": "LONEENCO-SITE"
2740 },
2741 {
2742 "id": "ATL1",
2743 "name": "ATLNGAMA-ATL1"
2744 },
2745 {
2746 "id": "JUL1",
2747 "name": "ZXCVBNMM-JUL1"
2748 },
2749 {
2750 "id": "TAT34",
2751 "name": "TESAAISB-TAT34"
2752 },
2753 {
2754 "id": "XCP12",
2755 "name": "CHKGH123-XCP12"
2756 },
2757 {
2758 "id": "RAI1",
2759 "name": "poiuytre-RAI1"
2760 },
2761 {
2762 "id": "HPO1",
2763 "name": "ATLNGAUP-HPO1"
2764 },
2765 {
2766 "id": "KJF12",
2767 "name": "KJFDH123-KJF12"
2768 },
2769 {
2770 "id": "SCC80",
2771 "name": "SAIT9CC3-SCC80"
2772 },
2773 {
2774 "id": "SAA12",
2775 "name": "SAIT9AF8-SAA12"
2776 },
2777 {
2778 "id": "SAA14",
2779 "name": "SAIT1AA9-SAA14"
2780 },
2781 {
2782 "id": "ATL35",
2783 "name": "TTESSAAI-ATL35"
2784 },
2785 {
2786 "id": "CWY1",
2787 "name": "CWYMOWBS-CWY1"
2788 },
2789 {
2790 "id": "ATL76",
2791 "name": "TELEPAAI-ATL76"
2792 },
2793 {
2794 "id": "DSL12",
2795 "name": "DSLFK242-DSL12"
2796 },
2797 {
2798 "id": "ATL53",
2799 "name": "AAIATLTE-ATL53"
2800 },
2801 {
2802 "id": "SAA11",
2803 "name": "SAIT9AA2-SAA11"
2804 },
2805 {
2806 "id": "ATL62",
2807 "name": "TESSASCH-ATL62"
2808 },
2809 {
2810 "id": "AUG1",
2811 "name": "ASDFGHJK-AUG1"
2812 },
2813 {
2814 "id": "POI22",
2815 "name": "POIUY123-POI22"
2816 },
2817 {
2818 "id": "SAA13",
2819 "name": "SAIT1AA9-SAA13"
2820 },
2821 {
2822 "id": "BHY17",
2823 "name": "BHYTFRF3-BHY17"
2824 },
2825 {
2826 "id": "LIS1",
2827 "name": "HOSTPROF-LIS1"
2828 },
2829 {
2830 "id": "SIP1",
2831 "name": "ZXCVBNMK-SIP1"
2832 },
2833 {
2834 "id": "ATL99",
2835 "name": "TEESTAAI-ATL43"
2836 },
2837 {
2838 "id": "ATL64",
2839 "name": "FORLOAAJ-ATL64"
2840 },
2841 {
2842 "id": "TAT33",
2843 "name": "TESAAISA-TAT33"
2844 },
2845 {
2846 "id": "RAD10",
2847 "name": "INDIPUNE-RAD10"
2848 },
2849 {
2850 "id": "RTW5",
2851 "name": "BHYTFRY4-RTW5"
2852 },
2853 {
2854 "id": "JGS1",
2855 "name": "KSJKKKKK-JGS1"
2856 },
2857 {
2858 "id": "ATL98",
2859 "name": "TEESTAAI-ATL43"
2860 },
2861 {
2862 "id": "WAN1",
2863 "name": "LEIWANGW-WAN1"
2864 },
2865 {
2866 "id": "ATL44",
2867 "name": "ATLSANAB-ATL44"
2868 },
2869 {
2870 "id": "RTD2",
2871 "name": "BHYTFRk4-RTD2"
2872 },
2873 {
2874 "id": "NIR1",
2875 "name": "ORFLMANA-NIR1"
2876 },
2877 {
2878 "id": "ATL75",
2879 "name": "SANAAIRE-ATL75"
2880 },
2881 {
2882 "id": "NUM1",
2883 "name": "QWERTYUI-NUM1"
2884 },
2885 {
2886 "id": "MTN32",
2887 "name": "MDTWNJ21-MTN32"
2888 },
2889 {
2890 "id": "RTZ4",
2891 "name": "BHYTFRZ6-RTZ4"
2892 },
2893 {
2894 "id": "ATL56",
2895 "name": "ATLSANAC-ATL56"
2896 },
2897 {
2898 "id": "AMS1",
2899 "name": "AMSTNLBW-AMS1"
2900 },
2901 {
2902 "id": "RCT1",
2903 "name": "AMSTERNL-RCT1"
2904 },
2905 {
2906 "id": "JAN1",
2907 "name": "ORFLMATT-JAN1"
2908 },
2909 {
2910 "id": "ABC14",
2911 "name": "TESAAISA-ABC14"
2912 },
2913 {
2914 "id": "TAT37",
2915 "name": "TESAAISD-TAT37"
2916 },
2917 {
2918 "id": "MIC54",
2919 "name": "MICHIGAN-MIC54"
2920 },
2921 {
2922 "id": "ABC11",
2923 "name": "ATLSANAI-ABC11"
2924 },
2925 {
2926 "id": "AMF11",
2927 "name": "AMDOCS01-AMF11"
2928 },
2929 {
2930 "id": "ATL63",
2931 "name": "ATLSANEW-ATL63"
2932 },
2933 {
2934 "id": "ABC12",
2935 "name": "ATLSECIA-ABC12"
2936 },
2937 {
2938 "id": "MTN20",
2939 "name": "MDTWNJ21-MTN20"
2940 },
2941 {
2942 "id": "ABC15",
2943 "name": "AAITESAN-ABC15"
2944 },
2945 {
2946 "id": "AVT1",
2947 "name": "AVTRFLHD-AVT1"
2948 },
2949 {
2950 "id": "ATL34",
2951 "name": "ATLSANAI-ATL34"
2952 }
2953 ],
2954 "categoryParameters": {
2955 "owningEntityList": [
2956 {
2957 "id": "aaa1",
2958 "name": "aaa1"
2959 },
2960 {
2961 "id": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc",
2962 "name": "WayneHolland"
2963 },
2964 {
2965 "id": "Melissa",
2966 "name": "Melissa"
2967 }
2968 ],
2969 "projectList": [
2970 {
2971 "id": "WATKINS",
2972 "name": "WATKINS"
2973 },
2974 {
2975 "id": "x1",
2976 "name": "x1"
2977 },
2978 {
2979 "id": "yyy1",
2980 "name": "yyy1"
2981 }
2982 ],
2983 "lineOfBusinessList": [
2984 {
2985 "id": "ONAP",
2986 "name": "ONAP"
2987 },
2988 {
2989 "id": "zzz1",
2990 "name": "zzz1"
2991 }
2992 ],
2993 "platformList": [
2994 {
2995 "id": "platform",
2996 "name": "platform"
2997 },
2998 {
2999 "id": "xxx1",
3000 "name": "xxx1"
3001 }
3002 ]
3003 },
3004 "type": "[LCP_REGIONS_AND_TENANTS] Update",
3005 "subscribers": [
3006 {
3007 "id": "CAR_2020_ER",
3008 "name": "CAR_2020_ER",
3009 "isPermitted": true
3010 },
3011 {
3012 "id": "21014aa2-526b-11e6-beb8-9e71128cae77",
3013 "name": "JULIO ERICKSON",
3014 "isPermitted": false
3015 },
3016 {
3017 "id": "DHV1707-TestSubscriber-2",
3018 "name": "DALE BRIDGES",
3019 "isPermitted": false
3020 },
3021 {
3022 "id": "DHV1707-TestSubscriber-1",
3023 "name": "LLOYD BRIDGES",
3024 "isPermitted": false
3025 },
3026 {
3027 "id": "jimmy-example",
3028 "name": "JimmyExampleCust-20161102",
3029 "isPermitted": false
3030 },
3031 {
3032 "id": "jimmy-example2",
3033 "name": "JimmyExampleCust-20161103",
3034 "isPermitted": false
3035 },
3036 {
3037 "id": "ERICA5779-TestSub-PWT-102",
3038 "name": "ERICA5779-TestSub-PWT-102",
3039 "isPermitted": false
3040 },
3041 {
3042 "id": "ERICA5779-TestSub-PWT-101",
3043 "name": "ERICA5779-TestSub-PWT-101",
3044 "isPermitted": false
3045 },
3046 {
3047 "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
3048 "name": "Emanuel",
3049 "isPermitted": false
3050 },
3051 {
3052 "id": "ERICA5779-Subscriber-4",
3053 "name": "ERICA5779-Subscriber-5",
3054 "isPermitted": false
3055 },
3056 {
3057 "id": "ERICA5779-TestSub-PWT-103",
3058 "name": "ERICA5779-TestSub-PWT-103",
3059 "isPermitted": false
3060 },
3061 {
3062 "id": "ERICA5779-Subscriber-2",
3063 "name": "ERICA5779-Subscriber-2",
3064 "isPermitted": false
3065 },
3066 {
3067 "id": "e433710f-9217-458d-a79d-1c7aff376d89",
3068 "name": "SILVIA ROBBINS",
3069 "isPermitted": true
3070 },
3071 {
3072 "id": "ERICA5779-Subscriber-3",
3073 "name": "ERICA5779-Subscriber-3",
3074 "isPermitted": false
3075 },
3076 {
3077 "id": "31739f3e-526b-11e6-beb8-9e71128cae77",
3078 "name": "CRAIG/ROBERTS",
3079 "isPermitted": false
3080 }
3081 ]
3082 }
3083 }
3084 }
3085
3086 });
3087});