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