Add Semicolon at the end
[vid.git] / vid-webpack-master / cypress / integration / iFrames / collectionResource.e2e.ts
1 ///<reference path="../../../node_modules/cypress/types/index.d.ts"/>
2
3 import {JsonBuilder} from "../../support/jsonBuilders/jsonBuilder";
4 import {ServiceModel} from "../../support/jsonBuilders/models/service.model";
5
6 describe('Drawing board : Collection resource', function () {
7
8   let jsonBuilderAndMock: JsonBuilder<ServiceModel> = new JsonBuilder<ServiceModel>();
9
10   beforeEach(() => {
11     cy.window().then((win) => {
12       win.sessionStorage.clear();
13       cy.preventErrorsOnLoading();
14       cy.initAAIMock();
15       cy.initVidMock();
16       cy.login();
17     });
18   });
19
20   afterEach(() => {
21     cy.screenshot();
22   });
23
24
25   describe('should show collection resource model correctly', () => {
26     it('collection type + name', () => {
27       const serviceModelId: string = "6e59c5de-f052-46fa-aa7e-2fca9d674c44";
28       const collectionResourceName: string = "CR_sanity 0";
29       initDrawingBoardWithColectionResource(serviceModelId, collectionResourceName);
30       cy.get('.vf-type').contains('CR');
31       cy.getElementByDataTestsId('available-models-tree').getElementByDataTestsId('node-name').contains(collectionResourceName);
32     });
33
34     it('collection resource component info', () => {
35       const serviceModelId: string = "6e59c5de-f052-46fa-aa7e-2fca9d674c44";
36       const collectionResourceName: string = "CR_sanity 0";
37       const redux = initDrawingBoardWithColectionResource(serviceModelId, collectionResourceName)
38       cy.getElementByDataTestsId(`node-${collectionResourceName}`).click().then(()=>{
39         cy.getElementByDataTestsId('component-info-section-title').contains('Collection Resource INFO');
40         const customizationUuid: string = redux["service"]["serviceHierarchy"][serviceModelId]["collectionResources"][collectionResourceName].customizationUuid;
41         cy.getElementByDataTestsId('model-item-value-Model customization ID').contains(customizationUuid);
42       });
43     });
44   });
45
46   describe('collection resource in view edit mode',()=>{
47     const SUBSCRIBER_ID: string = "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb";
48     const SERVICE_TYPE: string = "Emanuel";
49     const SERVICE_MODEL_ID: string = "6e0bec91-09f3-43aa-9cf3-e617cd0146be";
50     const SERVICE_INSTANCE_ID: string = "a565e6ad-75d1-4493-98f1-33234b5c17e2";
51
52     function verifyOnlyStatusDelete(){
53       cy.getElementByDataTestsId('delete-status-type-header').should('exist');
54       cy.getElementByDataTestsId('resume-status-type-header').should('not.exist');
55       cy.getElementByDataTestsId('serviceName').should('have.css', 'text-decoration').and('contain', 'line-through');
56       cy.isNodeDeleted(0);
57       cy.isNodeDeleted(1);
58     }
59
60     function verifyOnlyStatusResume(){
61       cy.getElementByDataTestsId('resume-status-type-header').should('exist');
62       cy.getElementByDataTestsId('delete-status-type-header').should('not.exist');
63       cy.isNodeNotDeleted(0);
64       cy.isNodeNotDeleted(1);
65     }
66
67     function verifyEmptyStatus(){
68       cy.getElementByDataTestsId('resume-status-type-header').should('not.exist');
69       cy.getElementByDataTestsId('delete-status-type-header').should('not.exist');
70       cy.isNodeNotDeleted(0);
71       cy.isNodeNotDeleted(1);
72     }
73
74     function initCrViewEdit() {
75         cy.permissionVidMock();
76         cy.readFile('../vid-app-common/src/test/resources/getTopology/serviceWithCR/getTopologyWithCR.json').then((res) => {
77           jsonBuilderAndMock.basicJson(
78             res,
79             Cypress.config('baseUrl') + `/aai_get_service_instance_topology/${SUBSCRIBER_ID}/${SERVICE_TYPE}/${SERVICE_INSTANCE_ID}`,
80             200, 0,
81             "getTopologyWithCR",
82           )
83         });
84
85
86       cy.readFile('../vid-app-common/src/test/resources/getTopology/serviceWithCR/serviceWithCRModel.json').then((res) => {
87           jsonBuilderAndMock.basicJson(
88             res,
89             Cypress.config('baseUrl') + `/rest/models/services/${SERVICE_MODEL_ID}`,
90             200,
91             0,
92             "serviceModelWithCR",
93           )
94         });
95       cy.openIframe(`app/ui/#/servicePlanning/EDIT?serviceModelId=${SERVICE_MODEL_ID}&subscriberId=${SUBSCRIBER_ID}&serviceType=${SERVICE_TYPE}&serviceInstanceId=${SERVICE_INSTANCE_ID}`);
96     }
97
98     it('should show left and right trees correctly', () => {
99       initCrViewEdit();
100       cy.hasClass('orchStatusValue','tag-status-value');
101       cy.get('.vf-type').contains('CR');
102       const crModelName = "NCM_VLAN_ym161f 0";
103       cy.getElementByDataTestsId('available-models-tree').getElementByDataTestsId('node-name').contains(crModelName);
104
105       /*
106       Right tree
107       */
108
109       const rightShouldHaves: { [dataTestId: string]: { [dataTestId: string]: string; }; } = {
110         'node-ce8c98bc-4691-44fb-8ff0-7a47487c11c4-undefined': {
111           'node-type-indicator': 'CR',
112           'node-name': 'NcmVlanSvcYm161f_77_vTSBC Customer Landing Network Collection'
113         },
114         'node-undefined-undefined': {
115           'node-type-indicator': 'NCF',
116           'node-name': 'NcmVlanSvcYm161f_77_vTSBC Customer Landing Network Collection'
117         }
118       };
119
120       const expectedComponentInfo: { [key: string]: any } = {
121         'node-ce8c98bc-4691-44fb-8ff0-7a47487c11c4-undefined': {
122           labelsAndValues: [
123             //['Model version', "5.0"] //to add once fix in code
124             ['Instance ID', '84a351ae-3601-45e2-98df-878d6c816abc'],
125             ['In maintenance', 'false']
126           ],
127           title: "Collection Resource Instance INFO"
128         },
129         'node-undefined-undefined': {
130           labelsAndValues: [
131             ['Model version', "1"],
132             ['Instance ID', '6b3536cf-3a12-457f-abb5-fa2203e0d923'],
133             ['Instance type', 'L3-NETWORK'],
134             ['In maintenance', 'false'],
135             ['Role', 'SUB_INTERFACE'],
136             ['Collection function', 'vTSBC Customer Landing Network Collection'],
137             ['Number of networks', '1']
138           ],
139           title: "Network Collection Function Instance INFO"
140         }
141       };
142
143       for (let node in rightShouldHaves) {
144         for (let span in rightShouldHaves[node]) {
145           cy.getElementByDataTestsId(node).find(`[data-tests-id='${span}']`).should('have.text', rightShouldHaves[node][span]);
146         }
147         cy.getElementByDataTestsId(node).click().then(() => {
148           let expected = <any>expectedComponentInfo[node];
149           cy.assertComponentInfoTitleLabelsAndValues(expected['title'], expected['labelsAndValues']);
150         })
151       }
152     });
153
154
155     it('resume service with cr', () => {
156       cy.server().route({
157         url: Cypress.config('baseUrl') + '/asyncInstantiation/bulk',
158         method: 'POST',
159         status: 200,
160         response: "[]",
161       }).as("expectedPostAsyncInstantiation");
162       initCrViewEdit();
163       cy.serviceActionDelete();
164       verifyOnlyStatusDelete();
165       cy.serviceActionResume();
166       verifyOnlyStatusResume();
167       cy.serviceActionDelete();
168       verifyOnlyStatusDelete();
169       cy.serviceActionUndoDelete();
170       verifyEmptyStatus();
171       cy.serviceActionResume();
172       cy.serviceActionUndoResume();
173       verifyEmptyStatus();
174       cy.serviceActionResume();
175       cy.getDrawingBoardDeployBtn().click();
176       cy.wait('@expectedPostAsyncInstantiation').then(xhr => {
177         cy.readFile('../vid-app-common/src/test/resources/payload_jsons/resume/feRequestResumeMacroService.json').then((expectedResult) => {
178            cy.deepCompare(xhr.request.body, expectedResult);
179        });
180       });
181
182     });
183   });
184
185   function initDrawingBoardWithColectionResource(serviceModelId: string, collectionResourceName: string) {
186       const redux = reduxWithCollectionResource(serviceModelId, collectionResourceName);
187       cy.setReduxState(<any>redux);
188       cy.openIframe(`app/ui/#/servicePlanning?serviceModelId=${serviceModelId}`);
189       return redux;
190   }
191
192
193   function reduxWithCollectionResource(serviceModelId: string, collectionResourceName: string) {
194     return {
195       "service": {
196         "serviceHierarchy": {
197           [serviceModelId]: {
198             "service": {
199               "uuid": serviceModelId,
200               "invariantUuid": "cfef8302-d90f-475f-87cc-3f49a62ef14c",
201               "name": "ComplexService",
202               "version": "1.0",
203               "toscaModelURL": null,
204               "category": "Emanuel",
205               "serviceType": "",
206               "serviceRole": "",
207               "description": "ComplexService",
208               "serviceEcompNaming": "true",
209               "instantiationType": "Macro",
210               "inputs": {},
211               "vidNotions": {
212                 "instantiationUI": "legacy",
213                 "modelCategory": "other",
214                 "viewEditUI": "legacy"
215               }
216             },
217             "vnfs": {},
218             "networks": {},
219             "collectionResources": {
220               [collectionResourceName]: {
221                 "uuid": "3467f91f-1a2a-4013-a5ed-8ad99d4e06ad",
222                 "invariantUuid": "d0060da6-82b8-4ca0-9758-5eb2b111b926",
223                 "description": "CR_sanity",
224                 "name": "CR_sanity",
225                 "version": "1.0",
226                 "customizationUuid": "7160c618-9314-4c09-8717-b77f3d29d946",
227                 "inputs": {},
228                 "commands": {},
229                 "properties": {
230                   "cr_sanity..Fixed..0_quantity": "10",
231                   "cr_sanity..NetworkCollection..0_network_collection_function": "ABCD",
232                   "ecomp_generated_naming": "false",
233                   "cr_sanity..NetworkCollection..0_network_collection_description": "ABCD"
234                 },
235                 "type": "CR",
236                 "category": "Network L2-3",
237                 "subcategory": "Infrastructure",
238                 "resourceVendor": "ATT",
239                 "resourceVendorRelease": "2018.06",
240                 "resourceVendorModelNumber": "",
241                 "customizationUUID": "7160c618-9314-4c09-8717-b77f3d29d946",
242                 "networksCollection": {
243                   "cr_sanity..NetworkCollection..0": {
244                     "uuid": "445d7fa8-3e59-4606-bd76-30ba5fc677d3",
245                     "invariantUuid": "9dc623b8-0ae8-47ad-a791-a21b8d8e94a8",
246                     "name": "cr_sanity..NetworkCollection..0",
247                     "version": "1",
248                     "networkCollectionProperties": {
249                       "networkCollectionFunction": "ABCD",
250                       "networkCollectionDescription": "ABCD"
251                     }
252                   }
253                 }
254               }
255             },
256             "configurations": {},
257             "fabricConfigurations": {},
258             "serviceProxies": {},
259             "vfModules": {},
260             "volumeGroups": {},
261             "pnfs": {},
262             "vnfGroups": {}
263           }
264         },
265         "serviceInstance": {
266           "6e59c5de-f052-46fa-aa7e-2fca9d674c44": {
267             "action": "Create",
268             "isDirty": true,
269             "vnfs": {},
270             "instanceParams": [
271               {}
272             ],
273             "validationCounter": 0,
274             "existingNames": {
275               "11": "",
276               "yoav": ""
277             },
278             "existingVNFCounterMap": {
279               "91415b44-753d-494c-926a-456a9172bbb9": 1
280             },
281             "existingVnfGroupCounterMap": {},
282             "existingNetworksCounterMap": {},
283             "optionalGroupMembersMap": {},
284             "networks": {},
285             "vnfGroups": {},
286             "bulkSize": 1,
287             "instanceName": "serviceInstanceName",
288             "globalSubscriberId": "e433710f-9217-458d-a79d-1c7aff376d89",
289             "subscriptionServiceType": "TYLER SILVIA",
290             "owningEntityId": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc",
291             "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c",
292             "lcpCloudRegionId": "AAIAIC25",
293             "tenantId": "092eb9e8e4b7412e8787dd091bc58e86",
294             "aicZoneId": "ATL53",
295             "projectName": "WATKINS",
296             "rollbackOnFailure": "true",
297             "aicZoneName": "AAIATLTE-ATL53",
298             "owningEntityName": "WayneHolland",
299             "testApi": "VNF_API",
300             "tenantName": "USP-SIP-IC-24335-T-01",
301             "modelInfo": {
302               "modelInvariantId": "cfef8302-d90f-475f-87cc-3f49a62ef14c",
303               "modelVersionId": "6e59c5de-f052-46fa-aa7e-2fca9d674c44",
304               "modelName": "ComplexService",
305               "modelVersion": "1.0",
306               "uuid": "6e59c5de-f052-46fa-aa7e-2fca9d674c44",
307               "modelUniqueId": "6e59c5de-f052-46fa-aa7e-2fca9d674c44"
308             },
309             "isALaCarte": false,
310             "name": "ComplexService",
311             "version": "1.0",
312             "description": "ComplexService",
313             "category": "Emanuel",
314             "uuid": "6e59c5de-f052-46fa-aa7e-2fca9d674c44",
315             "invariantUuid": "cfef8302-d90f-475f-87cc-3f49a62ef14c",
316             "serviceType": "",
317             "serviceRole": "",
318             "vidNotions": {
319               "instantiationUI": "legacy",
320               "modelCategory": "other",
321               "viewEditUI": "legacy"
322             },
323             "isEcompGeneratedNaming": true,
324             "isMultiStepDesign": false
325           }
326         },
327         "lcpRegionsAndTenants": {
328           "lcpRegionList": [
329             {
330               "id": "AAIAIC25",
331               "name": "AAIAIC25 (AIC)",
332               "isPermitted": true,
333               "cloudOwner": "irma-aic"
334             },
335             {
336               "id": "hvf6",
337               "name": "hvf6 (AIC)",
338               "isPermitted": true,
339               "cloudOwner": "irma-aic"
340             }
341           ],
342           "lcpRegionsTenantsMap": {
343             "AAIAIC25": [
344               {
345                 "id": "092eb9e8e4b7412e8787dd091bc58e86",
346                 "name": "USP-SIP-IC-24335-T-01",
347                 "isPermitted": true,
348                 "cloudOwner": "irma-aic"
349               }
350             ],
351             "hvf6": [
352               {
353                 "id": "bae71557c5bb4d5aac6743a4e5f1d054",
354                 "name": "AIN Web Tool-15-D-testalexandria",
355                 "isPermitted": true,
356                 "cloudOwner": "irma-aic"
357               },
358               {
359                 "id": "229bcdc6eaeb4ca59d55221141d01f8e",
360                 "name": "AIN Web Tool-15-D-STTest2",
361                 "isPermitted": true,
362                 "cloudOwner": "irma-aic"
363               },
364               {
365                 "id": "1178612d2b394be4834ad77f567c0af2",
366                 "name": "AIN Web Tool-15-D-SSPtestcustome",
367                 "isPermitted": true,
368                 "cloudOwner": "irma-aic"
369               },
370               {
371                 "id": "19c5ade915eb461e8af52fb2fd8cd1f2",
372                 "name": "AIN Web Tool-15-D-UncheckedEcopm",
373                 "isPermitted": true,
374                 "cloudOwner": "irma-aic"
375               },
376               {
377                 "id": "de007636e25249238447264a988a927b",
378                 "name": "AIN Web Tool-15-D-dfsdf",
379                 "isPermitted": true,
380                 "cloudOwner": "irma-aic"
381               },
382               {
383                 "id": "62f29b3613634ca6a3065cbe0e020c44",
384                 "name": "AIN/SMS-16-D-Multiservices1",
385                 "isPermitted": true,
386                 "cloudOwner": "irma-aic"
387               },
388               {
389                 "id": "649289e30d3244e0b48098114d63c2aa",
390                 "name": "AIN Web Tool-15-D-SSPST66",
391                 "isPermitted": true,
392                 "cloudOwner": "irma-aic"
393               },
394               {
395                 "id": "3f21eeea6c2c486bba31dab816c05a32",
396                 "name": "AIN Web Tool-15-D-ASSPST47",
397                 "isPermitted": true,
398                 "cloudOwner": "irma-aic"
399               },
400               {
401                 "id": "f60ce21d3ee6427586cff0d22b03b773",
402                 "name": "CESAR-100-D-sspjg67246",
403                 "isPermitted": true,
404                 "cloudOwner": "irma-aic"
405               },
406               {
407                 "id": "8774659e425f479895ae091bb5d46560",
408                 "name": "CESAR-100-D-sspjg68359",
409                 "isPermitted": true,
410                 "cloudOwner": "irma-aic"
411               },
412               {
413                 "id": "624eb554b0d147c19ff8885341760481",
414                 "name": "AINWebTool-15-D-iftach",
415                 "isPermitted": true,
416                 "cloudOwner": "irma-aic"
417               },
418               {
419                 "id": "214f55f5fc414c678059c383b03e4962",
420                 "name": "CESAR-100-D-sspjg612401",
421                 "isPermitted": true,
422                 "cloudOwner": "irma-aic"
423               },
424               {
425                 "id": "c90666c291664841bb98e4d981ff1db5",
426                 "name": "CESAR-100-D-sspjg621340",
427                 "isPermitted": true,
428                 "cloudOwner": "irma-aic"
429               },
430               {
431                 "id": "ce5b6bc5c7b348e1bf4b91ac9a174278",
432                 "name": "sspjg621351cloned",
433                 "isPermitted": true,
434                 "cloudOwner": "irma-aic"
435               },
436               {
437                 "id": "b386b768a3f24c8e953abbe0b3488c02",
438                 "name": "AINWebTool-15-D-eteancomp",
439                 "isPermitted": true,
440                 "cloudOwner": "irma-aic"
441               },
442               {
443                 "id": "dc6c4dbfd225474e9deaadd34968646c",
444                 "name": "AINWebTool-15-T-SPFET",
445                 "isPermitted": true,
446                 "cloudOwner": "irma-aic"
447               },
448               {
449                 "id": "02cb5030e9914aa4be120bd9ed1e19eb",
450                 "name": "AINWebTool-15-X-eeweww",
451                 "isPermitted": true,
452                 "cloudOwner": "irma-aic"
453               },
454               {
455                 "id": "f2f3830e4c984d45bcd00e1a04158a79",
456                 "name": "CESAR-100-D-spjg61909",
457                 "isPermitted": true,
458                 "cloudOwner": "irma-aic"
459               },
460               {
461                 "id": "05b91bd5137f4929878edd965755c06d",
462                 "name": "CESAR-100-D-sspjg621512cloned",
463                 "isPermitted": true,
464                 "cloudOwner": "irma-aic"
465               },
466               {
467                 "id": "7002fbe8482d4a989ddf445b1ce336e0",
468                 "name": "AINWebTool-15-X-vdr",
469                 "isPermitted": true,
470                 "cloudOwner": "irma-aic"
471               },
472               {
473                 "id": "4008522be43741dcb1f5422022a2aa0b",
474                 "name": "AINWebTool-15-D-ssasa",
475                 "isPermitted": true,
476                 "cloudOwner": "irma-aic"
477               },
478               {
479                 "id": "f44e2e96a1b6476abfda2fa407b00169",
480                 "name": "AINWebTool-15-D-PFNPT",
481                 "isPermitted": true,
482                 "cloudOwner": "irma-aic"
483               },
484               {
485                 "id": "b69a52bec8a84669a37a1e8b72708be7",
486                 "name": "AINWebTool-15-X-vdre",
487                 "isPermitted": true,
488                 "cloudOwner": "irma-aic"
489               },
490               {
491                 "id": "fac7d9fd56154caeb9332202dcf2969f",
492                 "name": "AINWebTool-15-X-NONPODECOMP",
493                 "isPermitted": true,
494                 "cloudOwner": "irma-aic"
495               },
496               {
497                 "id": "2d34d8396e194eb49969fd61ffbff961",
498                 "name": "DN5242-Nov16-T5",
499                 "isPermitted": true,
500                 "cloudOwner": "irma-aic"
501               },
502               {
503                 "id": "cb42a77ff45b48a8b8deb83bb64acc74",
504                 "name": "ro-T11",
505                 "isPermitted": true,
506                 "cloudOwner": "irma-aic"
507               },
508               {
509                 "id": "fa45ca53c80b492fa8be5477cd84fc2b",
510                 "name": "ro-T112",
511                 "isPermitted": true,
512                 "cloudOwner": "irma-aic"
513               },
514               {
515                 "id": "4914ab0ab3a743e58f0eefdacc1dde77",
516                 "name": "DN5242-Nov21-T1",
517                 "isPermitted": true,
518                 "cloudOwner": "irma-aic"
519               },
520               {
521                 "id": "d0a3e3f2964542259d155a81c41aadc3",
522                 "name": "test-hvf6-09",
523                 "isPermitted": true,
524                 "cloudOwner": "irma-aic"
525               },
526               {
527                 "id": "cbb99fe4ada84631b7baf046b6fd2044",
528                 "name": "DN5242-Nov16-T3",
529                 "isPermitted": true,
530                 "cloudOwner": "irma-aic"
531               }
532             ]
533           }
534         },
535         "subscribers": [
536           {
537             "id": "ERICA5779-Subscriber-2",
538             "name": "ERICA5779-Subscriber-2",
539             "isPermitted": false
540           },
541           {
542             "id": "ERICA5779-Subscriber-3",
543             "name": "ERICA5779-Subscriber-3",
544             "isPermitted": false
545           },
546           {
547             "id": "ERICA5779-Subscriber-4",
548             "name": "ERICA5779-Subscriber-5",
549             "isPermitted": false
550           },
551           {
552             "id": "ERICA5779-TestSub-PWT-101",
553             "name": "ERICA5779-TestSub-PWT-101",
554             "isPermitted": false
555           },
556           {
557             "id": "ERICA5779-TestSub-PWT-102",
558             "name": "ERICA5779-TestSub-PWT-102",
559             "isPermitted": false
560           },
561           {
562             "id": "ERICA5779-TestSub-PWT-103",
563             "name": "ERICA5779-TestSub-PWT-103",
564             "isPermitted": false
565           },
566           {
567             "id": "31739f3e-526b-11e6-beb8-9e71128cae77",
568             "name": "CRAIG/ROBERTS",
569             "isPermitted": false
570           },
571           {
572             "id": "DHV1707-TestSubscriber-2",
573             "name": "DALE BRIDGES",
574             "isPermitted": false
575           },
576           {
577             "id": "jimmy-example",
578             "name": "JimmyExampleCust-20161102",
579             "isPermitted": false
580           },
581           {
582             "id": "jimmy-example2",
583             "name": "JimmyExampleCust-20161103",
584             "isPermitted": false
585           },
586           {
587             "id": "CAR_2020_ER",
588             "name": "CAR_2020_ER",
589             "isPermitted": true
590           },
591           {
592             "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
593             "name": "Emanuel",
594             "isPermitted": true
595           },
596           {
597             "id": "21014aa2-526b-11e6-beb8-9e71128cae77",
598             "name": "JULIO ERICKSON",
599             "isPermitted": false
600           },
601           {
602             "id": "DHV1707-TestSubscriber-1",
603             "name": "LLOYD BRIDGES",
604             "isPermitted": false
605           },
606           {
607             "id": "e433710f-9217-458d-a79d-1c7aff376d89",
608             "name": "SILVIA ROBBINS",
609             "isPermitted": true
610           },
611           {
612             "id": "global-customer-id",
613             "name": "global-customer-id",
614             "isPermitted": true
615           }
616         ],
617         "productFamilies": null,
618         "serviceTypes": {
619           "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb": [
620             {
621               "id": "3",
622               "name": "Emanuel",
623               "isPermitted": false
624             },
625             {
626               "id": "7",
627               "name": "Kennedy",
628               "isPermitted": false
629             },
630             {
631               "id": "6",
632               "name": "vJamie",
633               "isPermitted": false
634             },
635             {
636               "id": "0",
637               "name": "vWINIFRED",
638               "isPermitted": false
639             },
640             {
641               "id": "1",
642               "name": "vMNS",
643               "isPermitted": false
644             },
645             {
646               "id": "4",
647               "name": "vMOG",
648               "isPermitted": false
649             },
650             {
651               "id": "5",
652               "name": "vEsmeralda",
653               "isPermitted": false
654             },
655             {
656               "id": "2",
657               "name": "vVoiceMail",
658               "isPermitted": false
659             }
660           ],
661           "e433710f-9217-458d-a79d-1c7aff376d89": [
662             {
663               "id": "17",
664               "name": "JOHANNA_SANTOS",
665               "isPermitted": false
666             },
667             {
668               "id": "16",
669               "name": "LINDSEY",
670               "isPermitted": false
671             },
672             {
673               "id": "2",
674               "name": "Emanuel",
675               "isPermitted": false
676             },
677             {
678               "id": "5",
679               "name": "Kennedy",
680               "isPermitted": false
681             },
682             {
683               "id": "14",
684               "name": "SSD",
685               "isPermitted": false
686             },
687             {
688               "id": "1",
689               "name": "TYLER SILVIA",
690               "isPermitted": true
691             },
692             {
693               "id": "12",
694               "name": "VPMS",
695               "isPermitted": false
696             },
697             {
698               "id": "3",
699               "name": "vJamie",
700               "isPermitted": false
701             },
702             {
703               "id": "0",
704               "name": "vRichardson",
705               "isPermitted": false
706             },
707             {
708               "id": "18",
709               "name": "vCarroll",
710               "isPermitted": false
711             },
712             {
713               "id": "9",
714               "name": "vFLORENCE",
715               "isPermitted": false
716             },
717             {
718               "id": "13",
719               "name": "vWINIFRED",
720               "isPermitted": false
721             },
722             {
723               "id": "10",
724               "name": "vMNS",
725               "isPermitted": false
726             },
727             {
728               "id": "15",
729               "name": "vMOG",
730               "isPermitted": false
731             },
732             {
733               "id": "8",
734               "name": "vOTA",
735               "isPermitted": false
736             },
737             {
738               "id": "11",
739               "name": "vEsmeralda",
740               "isPermitted": false
741             },
742             {
743               "id": "6",
744               "name": "vPorfirio",
745               "isPermitted": false
746             },
747             {
748               "id": "7",
749               "name": "vVM",
750               "isPermitted": false
751             },
752             {
753               "id": "4",
754               "name": "vVoiceMail",
755               "isPermitted": false
756             }
757           ]
758         },
759         "aicZones": [
760           {
761             "id": "ATL53",
762             "name": "AAIATLTE-ATL53"
763           },
764           {
765             "id": "ABC15",
766             "name": "AAITESAN-ABC15"
767           },
768           {
769             "id": "TES36",
770             "name": "ABCEETES-TES36"
771           },
772           {
773             "id": "ATL54",
774             "name": "AICFTAAI-ATL54"
775           },
776           {
777             "id": "ATL43",
778             "name": "AICLOCID-ATL43"
779           },
780           {
781             "id": "AMD15",
782             "name": "AMDFAA01-AMD15"
783           },
784           {
785             "id": "AMF11",
786             "name": "AMDOCS01-AMF11"
787           },
788           {
789             "id": "RCT1",
790             "name": "AMSTERNL-RCT1"
791           },
792           {
793             "id": "AMS1",
794             "name": "AMSTNLBW-AMS1"
795           },
796           {
797             "id": "HJH1",
798             "name": "AOEEQQQD-HJH1"
799           },
800           {
801             "id": "HJE1",
802             "name": "AOEEWWWD-HJE1"
803           },
804           {
805             "id": "MCS1",
806             "name": "ASACMAMS-MCS1"
807           },
808           {
809             "id": "AUG1",
810             "name": "ASDFGHJK-AUG1"
811           },
812           {
813             "id": "LUC1",
814             "name": "ATLDFGYC-LUC1"
815           },
816           {
817             "id": "ATL1",
818             "name": "ATLNGAMA-ATL1"
819           },
820           {
821             "id": "ATL2",
822             "name": "ATLNGANW-ATL2"
823           },
824           {
825             "id": "HPO1",
826             "name": "ATLNGAUP-HPO1"
827           },
828           {
829             "id": "ANI1",
830             "name": "ATLNGTRE-ANI1"
831           },
832           {
833             "id": "ATL44",
834             "name": "ATLSANAB-ATL44"
835           },
836           {
837             "id": "ATL56",
838             "name": "ATLSANAC-ATL56"
839           },
840           {
841             "id": "ABC11",
842             "name": "ATLSANAI-ABC11"
843           },
844           {
845             "id": "ATL34",
846             "name": "ATLSANAI-ATL34"
847           },
848           {
849             "id": "ATL63",
850             "name": "ATLSANEW-ATL63"
851           },
852           {
853             "id": "ABC12",
854             "name": "ATLSECIA-ABC12"
855           },
856           {
857             "id": "AMD18",
858             "name": "AUDIMA01-AMD18"
859           },
860           {
861             "id": "AVT1",
862             "name": "AVTRFLHD-AVT1"
863           },
864           {
865             "id": "KIT1",
866             "name": "BHYJFGLN-KIT1"
867           },
868           {
869             "id": "BHY17",
870             "name": "BHYTFRF3-BHY17"
871           },
872           {
873             "id": "RTW5",
874             "name": "BHYTFRY4-RTW5"
875           },
876           {
877             "id": "RTZ4",
878             "name": "BHYTFRZ6-RTZ4"
879           },
880           {
881             "id": "RTD2",
882             "name": "BHYTFRk4-RTD2"
883           },
884           {
885             "id": "BNA1",
886             "name": "BNARAGBK-BNA1"
887           },
888           {
889             "id": "VEL1",
890             "name": "BNMLKUIK-VEL1"
891           },
892           {
893             "id": "BOT1",
894             "name": "BOTHWAKY-BOT1"
895           },
896           {
897             "id": "CAL33",
898             "name": "CALIFORN-CAL33"
899           },
900           {
901             "id": "ATL84",
902             "name": "CANTTCOC-ATL84"
903           },
904           {
905             "id": "HSD1",
906             "name": "CHASKCDS-HSD1"
907           },
908           {
909             "id": "CHI1",
910             "name": "CHILLIWE-CHI1"
911           },
912           {
913             "id": "XCP12",
914             "name": "CHKGH123-XCP12"
915           },
916           {
917             "id": "JNL1",
918             "name": "CJALSDAC-JNL1"
919           },
920           {
921             "id": "KJN1",
922             "name": "CKALDKSA-KJN1"
923           },
924           {
925             "id": "CLG1",
926             "name": "CLGRABAD-CLG1"
927           },
928           {
929             "id": "CKL1",
930             "name": "CLKSKCKK-CKL1"
931           },
932           {
933             "id": "ATL66",
934             "name": "CLLIAAII-ATL66"
935           },
936           {
937             "id": "CQK1",
938             "name": "CQKSCAKK-CQK1"
939           },
940           {
941             "id": "CWY1",
942             "name": "CWYMOWBS-CWY1"
943           },
944           {
945             "id": "DKJ1",
946             "name": "DKJSJDKA-DKJ1"
947           },
948           {
949             "id": "DSF45",
950             "name": "DSFBG123-DSF45"
951           },
952           {
953             "id": "DSL12",
954             "name": "DSLFK242-DSL12"
955           },
956           {
957             "id": "FDE55",
958             "name": "FDERT555-FDE55"
959           },
960           {
961             "id": "VEN2",
962             "name": "FGHJUHIL-VEN2"
963           },
964           {
965             "id": "ATL64",
966             "name": "FORLOAAJ-ATL64"
967           },
968           {
969             "id": "GNV1",
970             "name": "GNVLSCTL-GNV1"
971           },
972           {
973             "id": "SAN22",
974             "name": "GNVLSCTL-SAN22"
975           },
976           {
977             "id": "KAP1",
978             "name": "HIOUYTRQ-KAP1"
979           },
980           {
981             "id": "LIS1",
982             "name": "HOSTPROF-LIS1"
983           },
984           {
985             "id": "HRG1",
986             "name": "HRGHRGGS-HRG1"
987           },
988           {
989             "id": "HST25",
990             "name": "HSTNTX01-HST25"
991           },
992           {
993             "id": "STN27",
994             "name": "HSTNTX01-STN27"
995           },
996           {
997             "id": "HST70",
998             "name": "HSTNTX70-HST70"
999           },
1000           {
1001             "id": "KOR1",
1002             "name": "HYFLNBVT-KOR1"
1003           },
1004           {
1005             "id": "RAD10",
1006             "name": "INDIPUNE-RAD10"
1007           },
1008           {
1009             "id": "REL1",
1010             "name": "INGERFGT-REL1"
1011           },
1012           {
1013             "id": "JAD1",
1014             "name": "JADECLLI-JAD1"
1015           },
1016           {
1017             "id": "HKA1",
1018             "name": "JAKHLASS-HKA1"
1019           },
1020           {
1021             "id": "JCS1",
1022             "name": "JCSJSCJS-JCS1"
1023           },
1024           {
1025             "id": "JCV1",
1026             "name": "JCVLFLBW-JCV1"
1027           },
1028           {
1029             "id": "KGM2",
1030             "name": "KGMTNC20-KGM2"
1031           },
1032           {
1033             "id": "KJF12",
1034             "name": "KJFDH123-KJF12"
1035           },
1036           {
1037             "id": "JGS1",
1038             "name": "KSJKKKKK-JGS1"
1039           },
1040           {
1041             "id": "LAG1",
1042             "name": "LARGIZON-LAG1"
1043           },
1044           {
1045             "id": "LAG1a",
1046             "name": "LARGIZON-LAG1a"
1047           },
1048           {
1049             "id": "LAG45",
1050             "name": "LARGIZON-LAG1a"
1051           },
1052           {
1053             "id": "LAG1b",
1054             "name": "LARGIZON-LAG1b"
1055           },
1056           {
1057             "id": "WAN1",
1058             "name": "LEIWANGW-WAN1"
1059           },
1060           {
1061             "id": "DSA1",
1062             "name": "LKJHGFDS-DSA1"
1063           },
1064           {
1065             "id": "LON1",
1066             "name": "LONEENCO-LON1"
1067           },
1068           {
1069             "id": "SITE",
1070             "name": "LONEENCO-SITE"
1071           },
1072           {
1073             "id": "ZXL1",
1074             "name": "LWLWCANN-ZXL1"
1075           },
1076           {
1077             "id": "hvf20",
1078             "name": "MDTWNJ21-hvf20"
1079           },
1080           {
1081             "id": "hvf32",
1082             "name": "MDTWNJ21-hvf32"
1083           },
1084           {
1085             "id": "AMD13",
1086             "name": "MEMATLAN-AMD13"
1087           },
1088           {
1089             "id": "MIC54",
1090             "name": "MICHIGAN-MIC54"
1091           },
1092           {
1093             "id": "MAR1",
1094             "name": "MNBVCXZM-MAR1"
1095           },
1096           {
1097             "id": "NCA1",
1098             "name": "NCANCANN-NCA1"
1099           },
1100           {
1101             "id": "NFT1",
1102             "name": "NFTJSSSS-NFT1"
1103           },
1104           {
1105             "id": "GAR1",
1106             "name": "NGFVSJKO-GAR1"
1107           },
1108           {
1109             "id": "NYC1",
1110             "name": "NYCMNY54-NYC1"
1111           },
1112           {
1113             "id": "OKC1",
1114             "name": "OKCBOK55-OKC1"
1115           },
1116           {
1117             "id": "OLG1",
1118             "name": "OLHOLHOL-OLG1"
1119           },
1120           {
1121             "id": "OLK1",
1122             "name": "OLKOLKLS-OLK1"
1123           },
1124           {
1125             "id": "NIR1",
1126             "name": "ORFLMANA-NIR1"
1127           },
1128           {
1129             "id": "JAN1",
1130             "name": "ORFLMATT-JAN1"
1131           },
1132           {
1133             "id": "ORL1",
1134             "name": "ORLDFLMA-ORL1"
1135           },
1136           {
1137             "id": "PAR1",
1138             "name": "PARSFRCG-PAR1"
1139           },
1140           {
1141             "id": "PBL1",
1142             "name": "PBLAPBAI-PBL1"
1143           },
1144           {
1145             "id": "mac10",
1146             "name": "PKGTESTF-mac10"
1147           },
1148           {
1149             "id": "mac20",
1150             "name": "PKGTESTF-mac20"
1151           },
1152           {
1153             "id": "TIR2",
1154             "name": "PLKINHYI-TIR2"
1155           },
1156           {
1157             "id": "IBB1",
1158             "name": "PLMKOIJU-IBB1"
1159           },
1160           {
1161             "id": "COM1",
1162             "name": "PLMKOPIU-COM1"
1163           },
1164           {
1165             "id": "POI1",
1166             "name": "PLMNJKIU-POI1"
1167           },
1168           {
1169             "id": "PLT1",
1170             "name": "PLTNCA60-PLT1"
1171           },
1172           {
1173             "id": "POI22",
1174             "name": "POIUY123-POI22"
1175           },
1176           {
1177             "id": "DCC1",
1178             "name": "POIUYTGH-DCC1"
1179           },
1180           {
1181             "id": "DCC1a",
1182             "name": "POIUYTGH-DCC1a"
1183           },
1184           {
1185             "id": "DCC1b",
1186             "name": "POIUYTGH-DCC1b"
1187           },
1188           {
1189             "id": "DCC2",
1190             "name": "POIUYTGH-DCC2"
1191           },
1192           {
1193             "id": "DCC3",
1194             "name": "POIUYTGH-DCC3"
1195           },
1196           {
1197             "id": "IAA1",
1198             "name": "QAZXSWED-IAA1"
1199           },
1200           {
1201             "id": "QWE1",
1202             "name": "QWECLLI1-QWE1"
1203           },
1204           {
1205             "id": "NUM1",
1206             "name": "QWERTYUI-NUM1"
1207           },
1208           {
1209             "id": "RAD1",
1210             "name": "RADICAL1-RAD1"
1211           },
1212           {
1213             "id": "RJN1",
1214             "name": "RJNRBZAW-RJN1"
1215           },
1216           {
1217             "id": "SAA13",
1218             "name": "SAIT1AA9-SAA13"
1219           },
1220           {
1221             "id": "SAA14",
1222             "name": "SAIT1AA9-SAA14"
1223           },
1224           {
1225             "id": "SDD81",
1226             "name": "SAIT1DD6-SDD81"
1227           },
1228           {
1229             "id": "SDD82",
1230             "name": "SAIT1DD9-SDD82"
1231           },
1232           {
1233             "id": "SAA11",
1234             "name": "SAIT9AA2-SAA11"
1235           },
1236           {
1237             "id": "SAA80",
1238             "name": "SAIT9AA3-SAA80"
1239           },
1240           {
1241             "id": "SAA12",
1242             "name": "SAIT9AF8-SAA12"
1243           },
1244           {
1245             "id": "SCC80",
1246             "name": "SAIT9CC3-SCC80"
1247           },
1248           {
1249             "id": "ATL75",
1250             "name": "SANAAIRE-ATL75"
1251           },
1252           {
1253             "id": "ICC1",
1254             "name": "SANJITAT-ICC1"
1255           },
1256           {
1257             "id": "SCK1",
1258             "name": "SCKSCKSK-SCK1"
1259           },
1260           {
1261             "id": "EHH78",
1262             "name": "SDCSHHH5-EHH78"
1263           },
1264           {
1265             "id": "SAA78",
1266             "name": "SDCTAAA1-SAA78"
1267           },
1268           {
1269             "id": "SAX78",
1270             "name": "SDCTAXG1-SAX78"
1271           },
1272           {
1273             "id": "SBX78",
1274             "name": "SDCTBXG1-SBX78"
1275           },
1276           {
1277             "id": "SEE78",
1278             "name": "SDCTEEE4-SEE78"
1279           },
1280           {
1281             "id": "SGG78",
1282             "name": "SDCTGGG1-SGG78"
1283           },
1284           {
1285             "id": "SXB78",
1286             "name": "SDCTGXB1-SXB78"
1287           },
1288           {
1289             "id": "SJJ78",
1290             "name": "SDCTJJJ1-SJJ78"
1291           },
1292           {
1293             "id": "SKK78",
1294             "name": "SDCTKKK1-SKK78"
1295           },
1296           {
1297             "id": "SLF78",
1298             "name": "SDCTLFN1-SLF78"
1299           },
1300           {
1301             "id": "SLL78",
1302             "name": "SDCTLLL1-SLL78"
1303           },
1304           {
1305             "id": "MAD11",
1306             "name": "SDFQWGKL-MAD11"
1307           },
1308           {
1309             "id": "HGD1",
1310             "name": "SDFQWHGD-HGD1"
1311           },
1312           {
1313             "id": "SBB78",
1314             "name": "SDIT1BBB-SBB78"
1315           },
1316           {
1317             "id": "SDG78",
1318             "name": "SDIT1BDG-SDG78"
1319           },
1320           {
1321             "id": "SBU78",
1322             "name": "SDIT1BUB-SBU78"
1323           },
1324           {
1325             "id": "SHH78",
1326             "name": "SDIT1HHH-SHH78"
1327           },
1328           {
1329             "id": "SJU78",
1330             "name": "SDIT1JUB-SJU78"
1331           },
1332           {
1333             "id": "SNA1",
1334             "name": "SNANTXCA-SNA1"
1335           },
1336           {
1337             "id": "SAM1",
1338             "name": "SNDGCA64-SAN1"
1339           },
1340           {
1341             "id": "SNG1",
1342             "name": "SNGPSIAU-SNG1"
1343           },
1344           {
1345             "id": "SSA56",
1346             "name": "SSIT2AA7-SSA56"
1347           },
1348           {
1349             "id": "STG1",
1350             "name": "STTGGE62-STG1"
1351           },
1352           {
1353             "id": "STT1",
1354             "name": "STTLWA02-STT1"
1355           },
1356           {
1357             "id": "SYD1",
1358             "name": "SYDNAUBV-SYD1"
1359           },
1360           {
1361             "id": "ATL99",
1362             "name": "TEESTAAI-ATL43"
1363           },
1364           {
1365             "id": "ATL98",
1366             "name": "TEESTAAI-ATL43"
1367           },
1368           {
1369             "id": "ATL76",
1370             "name": "TELEPAAI-ATL76"
1371           },
1372           {
1373             "id": "ABC14",
1374             "name": "TESAAISA-ABC14"
1375           },
1376           {
1377             "id": "TAT33",
1378             "name": "TESAAISA-TAT33"
1379           },
1380           {
1381             "id": "TAT34",
1382             "name": "TESAAISB-TAT34"
1383           },
1384           {
1385             "id": "TAT37",
1386             "name": "TESAAISD-TAT37"
1387           },
1388           {
1389             "id": "ATL62",
1390             "name": "TESSASCH-ATL62"
1391           },
1392           {
1393             "id": "TLP1",
1394             "name": "TLPNXM18-TLP1"
1395           },
1396           {
1397             "id": "SAN13",
1398             "name": "TOKYJPFA-SAN13"
1399           },
1400           {
1401             "id": "TOK1",
1402             "name": "TOKYJPFA-TOK1"
1403           },
1404           {
1405             "id": "TOL1",
1406             "name": "TOLDOH21-TOL1"
1407           },
1408           {
1409             "id": "TOR1",
1410             "name": "TOROONXN-TOR1"
1411           },
1412           {
1413             "id": "TOY1",
1414             "name": "TORYONNZ-TOY1"
1415           },
1416           {
1417             "id": "ATL35",
1418             "name": "TTESSAAI-ATL35"
1419           },
1420           {
1421             "id": "TUF1",
1422             "name": "TUFCLLI1-TUF1"
1423           },
1424           {
1425             "id": "SAI1",
1426             "name": "UBEKQLPD-SAI1"
1427           },
1428           {
1429             "id": "UUU4",
1430             "name": "UUUAAAUU-UUU4"
1431           },
1432           {
1433             "id": "YYY1",
1434             "name": "UUUAIAAI-YYY1"
1435           },
1436           {
1437             "id": "BAN1",
1438             "name": "VSDKYUTP-BAN1"
1439           },
1440           {
1441             "id": "WAS1",
1442             "name": "WASHDCSW-WAS1"
1443           },
1444           {
1445             "id": "APP1",
1446             "name": "WBHGTYUI-APP1"
1447           },
1448           {
1449             "id": "SUL2",
1450             "name": "WERTYUJK-SUL2"
1451           },
1452           {
1453             "id": "DEF2",
1454             "name": "WSBHGTYL-DEF2"
1455           },
1456           {
1457             "id": "DHA12",
1458             "name": "WSXEDECF-DHA12"
1459           },
1460           {
1461             "id": "MNT11",
1462             "name": "WSXEFBTH-MNT11"
1463           },
1464           {
1465             "id": "RAJ1",
1466             "name": "YGBIJNLQ-RAJ1"
1467           },
1468           {
1469             "id": "JAG1",
1470             "name": "YUDFJULP-JAG1"
1471           },
1472           {
1473             "id": "ZEN1",
1474             "name": "ZENCLLI1-ZEN1"
1475           },
1476           {
1477             "id": "ZOG1",
1478             "name": "ZOGASTRO-ZOG1"
1479           },
1480           {
1481             "id": "SDE1",
1482             "name": "ZXCVBNMA-SDE1"
1483           },
1484           {
1485             "id": "SIP1",
1486             "name": "ZXCVBNMK-SIP1"
1487           },
1488           {
1489             "id": "JUL1",
1490             "name": "ZXCVBNMM-JUL1"
1491           },
1492           {
1493             "id": "ERT1",
1494             "name": "ertclli1-ERT1"
1495           },
1496           {
1497             "id": "IOP1",
1498             "name": "iopclli1-IOP1"
1499           },
1500           {
1501             "id": "OPA1",
1502             "name": "opaclli1-OPA1"
1503           },
1504           {
1505             "id": "RAI1",
1506             "name": "poiuytre-RAI1"
1507           },
1508           {
1509             "id": "PUR1",
1510             "name": "purelyde-PUR1"
1511           },
1512           {
1513             "id": "RTY1",
1514             "name": "rtyclli1-RTY1"
1515           },
1516           {
1517             "id": "SDF1",
1518             "name": "sdfclli1-SDF1"
1519           },
1520           {
1521             "id": "SSW56",
1522             "name": "ss8126GT-SSW56"
1523           },
1524           {
1525             "id": "UIO1",
1526             "name": "uioclli1-UIO1"
1527           }
1528         ],
1529         "categoryParameters": {
1530           "owningEntityList": [
1531             {
1532               "id": "aaa1",
1533               "name": "aaa1"
1534             },
1535             {
1536               "id": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc",
1537               "name": "WayneHolland"
1538             },
1539             {
1540               "id": "Melissa",
1541               "name": "Melissa"
1542             }
1543           ],
1544           "projectList": [
1545             {
1546               "id": "WATKINS",
1547               "name": "WATKINS"
1548             },
1549             {
1550               "id": "x1",
1551               "name": "x1"
1552             },
1553             {
1554               "id": "yyy1",
1555               "name": "yyy1"
1556             }
1557           ],
1558           "lineOfBusinessList": [
1559             {
1560               "id": "ONAP",
1561               "name": "ONAP"
1562             },
1563             {
1564               "id": "zzz1",
1565               "name": "zzz1"
1566             }
1567           ],
1568           "platformList": [
1569             {
1570               "id": "platform",
1571               "name": "platform"
1572             },
1573             {
1574               "id": "xxx1",
1575               "name": "xxx1"
1576             }
1577           ]
1578         },
1579         "type": "UPDATE_LCP_REGIONS_AND_TENANTS"
1580       },
1581       "global": {
1582         "name": null,
1583         "flags": {
1584           "FLAG_1810_IDENTIFY_SERVICE_FOR_NEW_UI": false,
1585           "FLAG_1902_VNF_GROUPING": true,
1586           "FLAG_1906_COMPONENT_INFO": true,
1587           "FLAG_SHOW_ASSIGNMENTS": true,
1588           "FLAG_A_LA_CARTE_AUDIT_INFO": true,
1589           "FLAG_1810_CR_ADD_CLOUD_OWNER_TO_MSO_REQUEST": true,
1590           "FLAG_SHOW_VERIFY_SERVICE": true,
1591           "FLAG_1902_NEW_VIEW_EDIT": true,
1592           "EMPTY_DRAWING_BOARD_TEST": false,
1593           "FLAG_ADD_MSO_TESTAPI_FIELD": true,
1594           "FLAG_1906_INSTANTIATION_API_USER_VALIDATION": true,
1595           "FLAG_EXP_CREATE_RESOURCES_IN_PARALLEL": false,
1596           "FLAG_PRESENT_PROVIDER_NETWORKS_ASSOCIATIONS": true,
1597           "FLAG_NETWORK_TO_ASYNC_INSTANTIATION": false,
1598           "FLAG_DEFAULT_VNF": true,
1599           "FLAG_1810_CR_SOFT_DELETE_ALACARTE_VF_MODULE": true,
1600           "FLAG_ASYNC_ALACARTE_VFMODULE": true,
1601           "FLAG_FABRIC_CONFIGURATION_ASSIGNMENTS": true,
1602           "FLAG_ASYNC_ALACARTE_VNF": true,
1603           "FLAG_1810_AAI_LOCAL_CACHE": true,
1604           "FLAG_EXP_USE_DEFAULT_HOST_NAME_VERIFIER": false,
1605           "FLAG_SERVICE_MODEL_CACHE": true,
1606           "FLAG_1902_RETRY_JOB": true,
1607           "FLAG_EXP_ANY_ALACARTE_NEW_INSTANTIATION_UI": true,
1608           "CREATE_INSTANCE_TEST": false,
1609           "FLAG_SETTING_DEFAULTS_IN_DRAWING_BOARD": true,
1610           "FLAG_1906_AAI_SUB_DETAILS_REDUCE_DEPTH": true,
1611           "FLAG_VF_MODULE_RESUME_STATUS_CREATE": true,
1612           "FLAG_SUPPLEMENTARY_FILE": true,
1613           "FLAG_5G_IN_NEW_INSTANTIATION_UI": true,
1614           "FLAG_RESTRICTED_SELECT": false,
1615           "FLAG_1810_CR_LET_SELECTING_COLLECTOR_TYPE_UNCONDITIONALLY": true
1616         },
1617         "drawingBoardStatus": "CREATE",
1618         "type": "UPDATE_DRAWING_BOARD_STATUS"
1619       }
1620     }
1621   }
1622 });