Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 1 | ///<reference path="../../../node_modules/cypress/types/index.d.ts"/> |
| 2 | |
| 3 | |
| 4 | describe('Drawing board: PNF ', function() { |
| 5 | beforeEach(() => { |
Ittay Stern | 32dbf80 | 2019-10-29 12:58:49 +0200 | [diff] [blame] | 6 | cy.clearSessionStorage(); |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 7 | cy.setReduxState(); |
| 8 | cy.preventErrorsOnLoading(); |
| 9 | cy.initAAIMock(); |
| 10 | cy.initVidMock(); |
| 11 | cy.login(); |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 12 | }); |
| 13 | |
| 14 | afterEach(() => { |
| 15 | cy.screenshot(); |
| 16 | }); |
| 17 | |
| 18 | describe('Should show PNF correctly', () => { |
| 19 | it('on left side', () => { |
| 20 | const serviceModelId: string = "6e59c5de-f052-46fa-aa7e-2fca9d674c44"; |
| 21 | const pnfName: string = "PNF1"; |
| 22 | initDrawingBoardWithPnf(serviceModelId, pnfName); |
| 23 | cy.get('.vf-type').contains('PNF'); |
| 24 | }); |
| 25 | |
| 26 | it ('on Component Info section', ()=>{ |
| 27 | const serviceModelId: string = "6e59c5de-f052-46fa-aa7e-2fca9d674c44"; |
| 28 | const pnfName: string = "PNF1"; |
| 29 | const redux = initDrawingBoardWithPnf(serviceModelId, pnfName); |
| 30 | cy.get('.vf-type').contains('PNF').click().then(() =>{ |
| 31 | cy.getElementByDataTestsId('component-info-section-title').contains('PNF INFO'); |
| 32 | const customizationUuid = redux["service"]["serviceHierarchy"][serviceModelId]['pnfs'][pnfName].customizationUuid; |
| 33 | cy.getElementByDataTestsId('model-item-value-Model customization ID').contains(customizationUuid); |
| 34 | }) |
| 35 | }); |
| 36 | }); |
| 37 | |
| 38 | //todo to check with Yoav to delete reduxWithPnfs |
| 39 | it('edit service popup should appear without error on tenant', ()=>{ |
| 40 | const serviceModelId: string = "12550cd7-7708-4f53-a09e-41d3d6327ebc"; |
| 41 | const pnfName: string = "PNF4"; |
| 42 | const redux = initDrawingBoardWithFourPnf(serviceModelId, pnfName); |
| 43 | cy.get('.vf-type').contains('PNF').click().then(() =>{ |
| 44 | const customizationUuid = redux["service"]["serviceHierarchy"][serviceModelId]['pnfs'][pnfName].customizationUuid; |
| 45 | cy.getElementByDataTestsId('model-item-value-Model customization ID').contains(customizationUuid); |
| 46 | cy.getElementByDataTestsId('openMenuBtn').click().then(()=>{ |
| 47 | cy.getElementByDataTestsId('context-menu-header-edit-item').click().then(()=>{ |
| 48 | cy.getElementByDataTestsId('no-results-error').should('not.exist') |
| 49 | }) |
| 50 | }) |
| 51 | }) |
| 52 | }); |
| 53 | }); |
| 54 | |
| 55 | function initDrawingBoardWithPnf(serviceModelId: string, pnfName: string) { |
| 56 | const redux = reduxWithPnfs(serviceModelId, pnfName); |
| 57 | cy.setReduxState(<any>redux); |
| 58 | cy.openIframe(`app/ui/#/servicePlanning?serviceModelId=${serviceModelId}`); |
| 59 | return redux; |
| 60 | } |
| 61 | |
| 62 | function initDrawingBoardWithFourPnf(serviceModelId: string, pnfName: string) { |
| 63 | const redux = reduxWithFourPnfs(serviceModelId, pnfName); |
| 64 | cy.setReduxState(<any>redux); |
| 65 | cy.openIframe(`app/ui/#/servicePlanning?serviceModelId=${serviceModelId}`); |
| 66 | return redux; |
| 67 | } |
| 68 | |
| 69 | function reduxWithPnfs(serviceModelId: string, pnfName: string) { |
| 70 | return { |
| 71 | "service": { |
| 72 | "serviceHierarchy": { |
| 73 | [serviceModelId]: { |
| 74 | "service": { |
| 75 | "uuid": serviceModelId, |
| 76 | "invariantUuid": "cfef8302-d90f-475f-87cc-3f49a62ef14c", |
| 77 | "name": "ComplexService", |
| 78 | "version": "1.0", |
| 79 | "toscaModelURL": null, |
| 80 | "category": "Emanuel", |
| 81 | "serviceType": "Transport", |
| 82 | "serviceRole": "ATM", |
| 83 | "description": "ComplexService", |
| 84 | "serviceEcompNaming": "true", |
| 85 | "instantiationType": "Macro", |
| 86 | "inputs": {}, |
| 87 | "vidNotions": { |
| 88 | "instantiationUI": "legacy", |
| 89 | "modelCategory": "other", |
| 90 | "viewEditUI": "legacy" |
| 91 | } |
| 92 | }, |
| 93 | "vnfs": {}, |
| 94 | "networks": {}, |
| 95 | "collectionResources": {}, |
| 96 | "configurations": {}, |
| 97 | "fabricConfigurations": {}, |
| 98 | "serviceProxies": {}, |
| 99 | "vfModules": {}, |
| 100 | "volumeGroups": {}, |
| 101 | "pnfs": { |
| 102 | [pnfName]:{ |
| 103 | "uuid": "1c831fa9-28a6-4778-8c1d-80b9e769f2ed", |
| 104 | "invariantUuid": "74e13a12-dac9-4fba-b102-cd242d9e7f02", |
| 105 | "description": "AIM Transport service", |
| 106 | "name": "AIM PNF Model", |
| 107 | "version": "1.0", |
| 108 | "customizationUuid": "ce2453ef-4e8e-4108-944c-57bef89cfab0", |
| 109 | "inputs": {}, |
| 110 | "commands": {}, |
| 111 | "properties": { |
| 112 | "nf_function": "AIM CE", |
| 113 | "nf_role": "pCE", |
| 114 | "ecomp_generated_naming": "false", |
| 115 | "nf_type": "ROUTER" |
| 116 | }, |
| 117 | "type": "PNF" |
| 118 | } |
| 119 | }, |
| 120 | "vnfGroups": {} |
| 121 | } |
| 122 | }, |
| 123 | "serviceInstance": { |
| 124 | "6e59c5de-f052-46fa-aa7e-2fca9d674c44": { |
| 125 | "action": "Create", |
| 126 | "isDirty": true, |
| 127 | "vnfs": {}, |
| 128 | "instanceParams": [ |
| 129 | {} |
| 130 | ], |
| 131 | "validationCounter": 0, |
| 132 | "existingNames": { |
| 133 | "11": "", |
| 134 | "yoav": "" |
| 135 | }, |
| 136 | "existingVNFCounterMap": { |
| 137 | "91415b44-753d-494c-926a-456a9172bbb9": 1 |
| 138 | }, |
| 139 | "existingVnfGroupCounterMap": {}, |
| 140 | "existingNetworksCounterMap": {}, |
| 141 | "optionalGroupMembersMap": {}, |
| 142 | "networks": {}, |
| 143 | "vnfGroups": {}, |
| 144 | "bulkSize": 1, |
| 145 | "instanceName": "serviceInstanceName", |
| 146 | "globalSubscriberId": "e433710f-9217-458d-a79d-1c7aff376d89", |
| 147 | "subscriptionServiceType": "TYLER SILVIA", |
| 148 | "owningEntityId": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc", |
| 149 | "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c", |
| 150 | "lcpCloudRegionId": "AAIAIC25", |
| 151 | "tenantId": "092eb9e8e4b7412e8787dd091bc58e86", |
| 152 | "aicZoneId": "ATL53", |
| 153 | "projectName": "WATKINS", |
| 154 | "rollbackOnFailure": "true", |
| 155 | "aicZoneName": "AAIATLTE-ATL53", |
| 156 | "owningEntityName": "WayneHolland", |
| 157 | "testApi": "VNF_API", |
| 158 | "tenantName": "USP-SIP-IC-24335-T-01", |
| 159 | "modelInfo": { |
| 160 | "modelInvariantId": "cfef8302-d90f-475f-87cc-3f49a62ef14c", |
| 161 | "modelVersionId": "6e59c5de-f052-46fa-aa7e-2fca9d674c44", |
| 162 | "modelName": "ComplexService", |
| 163 | "modelVersion": "1.0", |
| 164 | "uuid": "6e59c5de-f052-46fa-aa7e-2fca9d674c44", |
| 165 | "modelUniqueId": "6e59c5de-f052-46fa-aa7e-2fca9d674c44" |
| 166 | }, |
| 167 | "isALaCarte": false, |
| 168 | "name": "ComplexService", |
| 169 | "version": "1.0", |
| 170 | "description": "ComplexService", |
| 171 | "category": "Emanuel", |
| 172 | "uuid": "6e59c5de-f052-46fa-aa7e-2fca9d674c44", |
| 173 | "invariantUuid": "cfef8302-d90f-475f-87cc-3f49a62ef14c", |
| 174 | "serviceType": "", |
| 175 | "serviceRole": "", |
| 176 | "vidNotions": { |
| 177 | "instantiationUI": "legacy", |
| 178 | "modelCategory": "other", |
| 179 | "viewEditUI": "legacy" |
| 180 | }, |
| 181 | "isEcompGeneratedNaming": true, |
| 182 | "isMultiStepDesign": false |
| 183 | } |
| 184 | }, |
| 185 | "lcpRegionsAndTenants": { |
| 186 | "lcpRegionList": [ |
| 187 | { |
| 188 | "id": "AAIAIC25", |
| 189 | "name": "AAIAIC25 (AIC)", |
| 190 | "isPermitted": true, |
| 191 | "cloudOwner": "irma-aic" |
| 192 | }, |
| 193 | { |
| 194 | "id": "hvf6", |
| 195 | "name": "hvf6 (AIC)", |
| 196 | "isPermitted": true, |
| 197 | "cloudOwner": "irma-aic" |
| 198 | } |
| 199 | ], |
| 200 | "lcpRegionsTenantsMap": { |
| 201 | "AAIAIC25": [ |
| 202 | { |
| 203 | "id": "092eb9e8e4b7412e8787dd091bc58e86", |
| 204 | "name": "USP-SIP-IC-24335-T-01", |
| 205 | "isPermitted": true, |
| 206 | "cloudOwner": "irma-aic" |
| 207 | } |
| 208 | ], |
| 209 | "hvf6": [ |
| 210 | { |
| 211 | "id": "bae71557c5bb4d5aac6743a4e5f1d054", |
| 212 | "name": "AIN Web Tool-15-D-testalexandria", |
| 213 | "isPermitted": true, |
| 214 | "cloudOwner": "irma-aic" |
| 215 | }, |
| 216 | { |
| 217 | "id": "229bcdc6eaeb4ca59d55221141d01f8e", |
| 218 | "name": "AIN Web Tool-15-D-STTest2", |
| 219 | "isPermitted": true, |
| 220 | "cloudOwner": "irma-aic" |
| 221 | }, |
| 222 | { |
| 223 | "id": "1178612d2b394be4834ad77f567c0af2", |
| 224 | "name": "AIN Web Tool-15-D-SSPtestcustome", |
| 225 | "isPermitted": true, |
| 226 | "cloudOwner": "irma-aic" |
| 227 | }, |
| 228 | { |
| 229 | "id": "19c5ade915eb461e8af52fb2fd8cd1f2", |
| 230 | "name": "AIN Web Tool-15-D-UncheckedEcopm", |
| 231 | "isPermitted": true, |
| 232 | "cloudOwner": "irma-aic" |
| 233 | }, |
| 234 | { |
| 235 | "id": "de007636e25249238447264a988a927b", |
| 236 | "name": "AIN Web Tool-15-D-dfsdf", |
| 237 | "isPermitted": true, |
| 238 | "cloudOwner": "irma-aic" |
| 239 | }, |
| 240 | { |
| 241 | "id": "62f29b3613634ca6a3065cbe0e020c44", |
| 242 | "name": "AIN/SMS-16-D-Multiservices1", |
| 243 | "isPermitted": true, |
| 244 | "cloudOwner": "irma-aic" |
| 245 | }, |
| 246 | { |
| 247 | "id": "649289e30d3244e0b48098114d63c2aa", |
| 248 | "name": "AIN Web Tool-15-D-SSPST66", |
| 249 | "isPermitted": true, |
| 250 | "cloudOwner": "irma-aic" |
| 251 | }, |
| 252 | { |
| 253 | "id": "3f21eeea6c2c486bba31dab816c05a32", |
| 254 | "name": "AIN Web Tool-15-D-ASSPST47", |
| 255 | "isPermitted": true, |
| 256 | "cloudOwner": "irma-aic" |
| 257 | }, |
| 258 | { |
| 259 | "id": "f60ce21d3ee6427586cff0d22b03b773", |
| 260 | "name": "CESAR-100-D-sspjg67246", |
| 261 | "isPermitted": true, |
| 262 | "cloudOwner": "irma-aic" |
| 263 | }, |
| 264 | { |
| 265 | "id": "8774659e425f479895ae091bb5d46560", |
| 266 | "name": "CESAR-100-D-sspjg68359", |
| 267 | "isPermitted": true, |
| 268 | "cloudOwner": "irma-aic" |
| 269 | }, |
| 270 | { |
| 271 | "id": "624eb554b0d147c19ff8885341760481", |
| 272 | "name": "AINWebTool-15-D-iftach", |
| 273 | "isPermitted": true, |
| 274 | "cloudOwner": "irma-aic" |
| 275 | }, |
| 276 | { |
| 277 | "id": "214f55f5fc414c678059c383b03e4962", |
| 278 | "name": "CESAR-100-D-sspjg612401", |
| 279 | "isPermitted": true, |
| 280 | "cloudOwner": "irma-aic" |
| 281 | }, |
| 282 | { |
| 283 | "id": "c90666c291664841bb98e4d981ff1db5", |
| 284 | "name": "CESAR-100-D-sspjg621340", |
| 285 | "isPermitted": true, |
| 286 | "cloudOwner": "irma-aic" |
| 287 | }, |
| 288 | { |
| 289 | "id": "ce5b6bc5c7b348e1bf4b91ac9a174278", |
| 290 | "name": "sspjg621351cloned", |
| 291 | "isPermitted": true, |
| 292 | "cloudOwner": "irma-aic" |
| 293 | }, |
| 294 | { |
| 295 | "id": "b386b768a3f24c8e953abbe0b3488c02", |
| 296 | "name": "AINWebTool-15-D-eteancomp", |
| 297 | "isPermitted": true, |
| 298 | "cloudOwner": "irma-aic" |
| 299 | }, |
| 300 | { |
| 301 | "id": "dc6c4dbfd225474e9deaadd34968646c", |
| 302 | "name": "AINWebTool-15-T-SPFET", |
| 303 | "isPermitted": true, |
| 304 | "cloudOwner": "irma-aic" |
| 305 | }, |
| 306 | { |
| 307 | "id": "02cb5030e9914aa4be120bd9ed1e19eb", |
| 308 | "name": "AINWebTool-15-X-eeweww", |
| 309 | "isPermitted": true, |
| 310 | "cloudOwner": "irma-aic" |
| 311 | }, |
| 312 | { |
| 313 | "id": "f2f3830e4c984d45bcd00e1a04158a79", |
| 314 | "name": "CESAR-100-D-spjg61909", |
| 315 | "isPermitted": true, |
| 316 | "cloudOwner": "irma-aic" |
| 317 | }, |
| 318 | { |
| 319 | "id": "05b91bd5137f4929878edd965755c06d", |
| 320 | "name": "CESAR-100-D-sspjg621512cloned", |
| 321 | "isPermitted": true, |
| 322 | "cloudOwner": "irma-aic" |
| 323 | }, |
| 324 | { |
| 325 | "id": "7002fbe8482d4a989ddf445b1ce336e0", |
| 326 | "name": "AINWebTool-15-X-vdr", |
| 327 | "isPermitted": true, |
| 328 | "cloudOwner": "irma-aic" |
| 329 | }, |
| 330 | { |
| 331 | "id": "4008522be43741dcb1f5422022a2aa0b", |
| 332 | "name": "AINWebTool-15-D-ssasa", |
| 333 | "isPermitted": true, |
| 334 | "cloudOwner": "irma-aic" |
| 335 | }, |
| 336 | { |
| 337 | "id": "f44e2e96a1b6476abfda2fa407b00169", |
| 338 | "name": "AINWebTool-15-D-PFNPT", |
| 339 | "isPermitted": true, |
| 340 | "cloudOwner": "irma-aic" |
| 341 | }, |
| 342 | { |
| 343 | "id": "b69a52bec8a84669a37a1e8b72708be7", |
| 344 | "name": "AINWebTool-15-X-vdre", |
| 345 | "isPermitted": true, |
| 346 | "cloudOwner": "irma-aic" |
| 347 | }, |
| 348 | { |
| 349 | "id": "fac7d9fd56154caeb9332202dcf2969f", |
| 350 | "name": "AINWebTool-15-X-NONPODECOMP", |
| 351 | "isPermitted": true, |
| 352 | "cloudOwner": "irma-aic" |
| 353 | }, |
| 354 | { |
| 355 | "id": "2d34d8396e194eb49969fd61ffbff961", |
| 356 | "name": "DN5242-Nov16-T5", |
| 357 | "isPermitted": true, |
| 358 | "cloudOwner": "irma-aic" |
| 359 | }, |
| 360 | { |
| 361 | "id": "cb42a77ff45b48a8b8deb83bb64acc74", |
| 362 | "name": "ro-T11", |
| 363 | "isPermitted": true, |
| 364 | "cloudOwner": "irma-aic" |
| 365 | }, |
| 366 | { |
| 367 | "id": "fa45ca53c80b492fa8be5477cd84fc2b", |
| 368 | "name": "ro-T112", |
| 369 | "isPermitted": true, |
| 370 | "cloudOwner": "irma-aic" |
| 371 | }, |
| 372 | { |
| 373 | "id": "4914ab0ab3a743e58f0eefdacc1dde77", |
| 374 | "name": "DN5242-Nov21-T1", |
| 375 | "isPermitted": true, |
| 376 | "cloudOwner": "irma-aic" |
| 377 | }, |
| 378 | { |
| 379 | "id": "d0a3e3f2964542259d155a81c41aadc3", |
| 380 | "name": "test-hvf6-09", |
| 381 | "isPermitted": true, |
| 382 | "cloudOwner": "irma-aic" |
| 383 | }, |
| 384 | { |
| 385 | "id": "cbb99fe4ada84631b7baf046b6fd2044", |
| 386 | "name": "DN5242-Nov16-T3", |
| 387 | "isPermitted": true, |
| 388 | "cloudOwner": "irma-aic" |
| 389 | } |
| 390 | ] |
| 391 | } |
| 392 | }, |
| 393 | "subscribers": [ |
| 394 | { |
| 395 | "id": "ERICA5779-Subscriber-2", |
| 396 | "name": "ERICA5779-Subscriber-2", |
| 397 | "isPermitted": false |
| 398 | }, |
| 399 | { |
| 400 | "id": "ERICA5779-Subscriber-3", |
| 401 | "name": "ERICA5779-Subscriber-3", |
| 402 | "isPermitted": false |
| 403 | }, |
| 404 | { |
| 405 | "id": "ERICA5779-Subscriber-4", |
| 406 | "name": "ERICA5779-Subscriber-5", |
| 407 | "isPermitted": false |
| 408 | }, |
| 409 | { |
| 410 | "id": "ERICA5779-TestSub-PWT-101", |
| 411 | "name": "ERICA5779-TestSub-PWT-101", |
| 412 | "isPermitted": false |
| 413 | }, |
| 414 | { |
| 415 | "id": "ERICA5779-TestSub-PWT-102", |
| 416 | "name": "ERICA5779-TestSub-PWT-102", |
| 417 | "isPermitted": false |
| 418 | }, |
| 419 | { |
| 420 | "id": "ERICA5779-TestSub-PWT-103", |
| 421 | "name": "ERICA5779-TestSub-PWT-103", |
| 422 | "isPermitted": false |
| 423 | }, |
| 424 | { |
| 425 | "id": "31739f3e-526b-11e6-beb8-9e71128cae77", |
| 426 | "name": "CRAIG/ROBERTS", |
| 427 | "isPermitted": false |
| 428 | }, |
| 429 | { |
| 430 | "id": "DHV1707-TestSubscriber-2", |
| 431 | "name": "DALE BRIDGES", |
| 432 | "isPermitted": false |
| 433 | }, |
| 434 | { |
| 435 | "id": "jimmy-example", |
| 436 | "name": "JimmyExampleCust-20161102", |
| 437 | "isPermitted": false |
| 438 | }, |
| 439 | { |
| 440 | "id": "jimmy-example2", |
| 441 | "name": "JimmyExampleCust-20161103", |
| 442 | "isPermitted": false |
| 443 | }, |
| 444 | { |
| 445 | "id": "CAR_2020_ER", |
| 446 | "name": "CAR_2020_ER", |
| 447 | "isPermitted": true |
| 448 | }, |
| 449 | { |
| 450 | "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb", |
| 451 | "name": "Emanuel", |
| 452 | "isPermitted": true |
| 453 | }, |
| 454 | { |
| 455 | "id": "21014aa2-526b-11e6-beb8-9e71128cae77", |
| 456 | "name": "JULIO ERICKSON", |
| 457 | "isPermitted": false |
| 458 | }, |
| 459 | { |
| 460 | "id": "DHV1707-TestSubscriber-1", |
| 461 | "name": "LLOYD BRIDGES", |
| 462 | "isPermitted": false |
| 463 | }, |
| 464 | { |
| 465 | "id": "e433710f-9217-458d-a79d-1c7aff376d89", |
| 466 | "name": "SILVIA ROBBINS", |
| 467 | "isPermitted": true |
| 468 | }, |
| 469 | { |
| 470 | "id": "global-customer-id", |
| 471 | "name": "global-customer-id", |
| 472 | "isPermitted": true |
| 473 | } |
| 474 | ], |
| 475 | "productFamilies": null, |
| 476 | "serviceTypes": { |
| 477 | "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb": [ |
| 478 | { |
| 479 | "id": "3", |
| 480 | "name": "Emanuel", |
| 481 | "isPermitted": false |
| 482 | }, |
| 483 | { |
| 484 | "id": "7", |
| 485 | "name": "Kennedy", |
| 486 | "isPermitted": false |
| 487 | }, |
| 488 | { |
| 489 | "id": "6", |
| 490 | "name": "vJamie", |
| 491 | "isPermitted": false |
| 492 | }, |
| 493 | { |
| 494 | "id": "0", |
| 495 | "name": "vWINIFRED", |
| 496 | "isPermitted": false |
| 497 | }, |
| 498 | { |
| 499 | "id": "1", |
| 500 | "name": "vMNS", |
| 501 | "isPermitted": false |
| 502 | }, |
| 503 | { |
| 504 | "id": "4", |
| 505 | "name": "vMOG", |
| 506 | "isPermitted": false |
| 507 | }, |
| 508 | { |
| 509 | "id": "5", |
| 510 | "name": "vEsmeralda", |
| 511 | "isPermitted": false |
| 512 | }, |
| 513 | { |
| 514 | "id": "2", |
| 515 | "name": "vVoiceMail", |
| 516 | "isPermitted": false |
| 517 | } |
| 518 | ], |
| 519 | "e433710f-9217-458d-a79d-1c7aff376d89": [ |
| 520 | { |
| 521 | "id": "17", |
| 522 | "name": "JOHANNA_SANTOS", |
| 523 | "isPermitted": false |
| 524 | }, |
| 525 | { |
| 526 | "id": "16", |
| 527 | "name": "LINDSEY", |
| 528 | "isPermitted": false |
| 529 | }, |
| 530 | { |
| 531 | "id": "2", |
| 532 | "name": "Emanuel", |
| 533 | "isPermitted": false |
| 534 | }, |
| 535 | { |
| 536 | "id": "5", |
| 537 | "name": "Kennedy", |
| 538 | "isPermitted": false |
| 539 | }, |
| 540 | { |
| 541 | "id": "14", |
| 542 | "name": "SSD", |
| 543 | "isPermitted": false |
| 544 | }, |
| 545 | { |
| 546 | "id": "1", |
| 547 | "name": "TYLER SILVIA", |
| 548 | "isPermitted": true |
| 549 | }, |
| 550 | { |
| 551 | "id": "12", |
| 552 | "name": "VPMS", |
| 553 | "isPermitted": false |
| 554 | }, |
| 555 | { |
| 556 | "id": "3", |
| 557 | "name": "vJamie", |
| 558 | "isPermitted": false |
| 559 | }, |
| 560 | { |
| 561 | "id": "0", |
| 562 | "name": "vRichardson", |
| 563 | "isPermitted": false |
| 564 | }, |
| 565 | { |
| 566 | "id": "18", |
| 567 | "name": "vCarroll", |
| 568 | "isPermitted": false |
| 569 | }, |
| 570 | { |
| 571 | "id": "9", |
| 572 | "name": "vFLORENCE", |
| 573 | "isPermitted": false |
| 574 | }, |
| 575 | { |
| 576 | "id": "13", |
| 577 | "name": "vWINIFRED", |
| 578 | "isPermitted": false |
| 579 | }, |
| 580 | { |
| 581 | "id": "10", |
| 582 | "name": "vMNS", |
| 583 | "isPermitted": false |
| 584 | }, |
| 585 | { |
| 586 | "id": "15", |
| 587 | "name": "vMOG", |
| 588 | "isPermitted": false |
| 589 | }, |
| 590 | { |
| 591 | "id": "8", |
| 592 | "name": "vOTA", |
| 593 | "isPermitted": false |
| 594 | }, |
| 595 | { |
| 596 | "id": "11", |
| 597 | "name": "vEsmeralda", |
| 598 | "isPermitted": false |
| 599 | }, |
| 600 | { |
| 601 | "id": "6", |
| 602 | "name": "vPorfirio", |
| 603 | "isPermitted": false |
| 604 | }, |
| 605 | { |
| 606 | "id": "7", |
| 607 | "name": "vVM", |
| 608 | "isPermitted": false |
| 609 | }, |
| 610 | { |
| 611 | "id": "4", |
| 612 | "name": "vVoiceMail", |
| 613 | "isPermitted": false |
| 614 | } |
| 615 | ] |
| 616 | }, |
| 617 | "aicZones": [ |
| 618 | { |
| 619 | "id": "ATL53", |
| 620 | "name": "AAIATLTE-ATL53" |
| 621 | }, |
| 622 | { |
| 623 | "id": "ABC15", |
| 624 | "name": "AAITESAN-ABC15" |
| 625 | }, |
| 626 | { |
| 627 | "id": "TES36", |
| 628 | "name": "ABCEETES-TES36" |
| 629 | }, |
| 630 | { |
| 631 | "id": "ATL54", |
| 632 | "name": "AICFTAAI-ATL54" |
| 633 | }, |
| 634 | { |
| 635 | "id": "ATL43", |
| 636 | "name": "AICLOCID-ATL43" |
| 637 | }, |
| 638 | { |
| 639 | "id": "AMD15", |
| 640 | "name": "AMDFAA01-AMD15" |
| 641 | }, |
| 642 | { |
| 643 | "id": "AMF11", |
| 644 | "name": "AMDOCS01-AMF11" |
| 645 | }, |
| 646 | { |
| 647 | "id": "RCT1", |
| 648 | "name": "AMSTERNL-RCT1" |
| 649 | }, |
| 650 | { |
| 651 | "id": "AMS1", |
| 652 | "name": "AMSTNLBW-AMS1" |
| 653 | }, |
| 654 | { |
| 655 | "id": "HJH1", |
| 656 | "name": "AOEEQQQD-HJH1" |
| 657 | }, |
| 658 | { |
| 659 | "id": "HJE1", |
| 660 | "name": "AOEEWWWD-HJE1" |
| 661 | }, |
| 662 | { |
| 663 | "id": "MCS1", |
| 664 | "name": "ASACMAMS-MCS1" |
| 665 | }, |
| 666 | { |
| 667 | "id": "AUG1", |
| 668 | "name": "ASDFGHJK-AUG1" |
| 669 | }, |
| 670 | { |
| 671 | "id": "LUC1", |
| 672 | "name": "ATLDFGYC-LUC1" |
| 673 | }, |
| 674 | { |
| 675 | "id": "ATL1", |
| 676 | "name": "ATLNGAMA-ATL1" |
| 677 | }, |
| 678 | { |
| 679 | "id": "ATL2", |
| 680 | "name": "ATLNGANW-ATL2" |
| 681 | }, |
| 682 | { |
| 683 | "id": "HPO1", |
| 684 | "name": "ATLNGAUP-HPO1" |
| 685 | }, |
| 686 | { |
| 687 | "id": "ANI1", |
| 688 | "name": "ATLNGTRE-ANI1" |
| 689 | }, |
| 690 | { |
| 691 | "id": "ATL44", |
| 692 | "name": "ATLSANAB-ATL44" |
| 693 | }, |
| 694 | { |
| 695 | "id": "ATL56", |
| 696 | "name": "ATLSANAC-ATL56" |
| 697 | }, |
| 698 | { |
| 699 | "id": "ABC11", |
| 700 | "name": "ATLSANAI-ABC11" |
| 701 | }, |
| 702 | { |
| 703 | "id": "ATL34", |
| 704 | "name": "ATLSANAI-ATL34" |
| 705 | }, |
| 706 | { |
| 707 | "id": "ATL63", |
| 708 | "name": "ATLSANEW-ATL63" |
| 709 | }, |
| 710 | { |
| 711 | "id": "ABC12", |
| 712 | "name": "ATLSECIA-ABC12" |
| 713 | }, |
| 714 | { |
| 715 | "id": "AMD18", |
| 716 | "name": "AUDIMA01-AMD18" |
| 717 | }, |
| 718 | { |
| 719 | "id": "AVT1", |
| 720 | "name": "AVTRFLHD-AVT1" |
| 721 | }, |
| 722 | { |
| 723 | "id": "KIT1", |
| 724 | "name": "BHYJFGLN-KIT1" |
| 725 | }, |
| 726 | { |
| 727 | "id": "BHY17", |
| 728 | "name": "BHYTFRF3-BHY17" |
| 729 | }, |
| 730 | { |
| 731 | "id": "RTW5", |
| 732 | "name": "BHYTFRY4-RTW5" |
| 733 | }, |
| 734 | { |
| 735 | "id": "RTZ4", |
| 736 | "name": "BHYTFRZ6-RTZ4" |
| 737 | }, |
| 738 | { |
| 739 | "id": "RTD2", |
| 740 | "name": "BHYTFRk4-RTD2" |
| 741 | }, |
| 742 | { |
| 743 | "id": "BNA1", |
| 744 | "name": "BNARAGBK-BNA1" |
| 745 | }, |
| 746 | { |
| 747 | "id": "VEL1", |
| 748 | "name": "BNMLKUIK-VEL1" |
| 749 | }, |
| 750 | { |
| 751 | "id": "BOT1", |
| 752 | "name": "BOTHWAKY-BOT1" |
| 753 | }, |
| 754 | { |
| 755 | "id": "CAL33", |
| 756 | "name": "CALIFORN-CAL33" |
| 757 | }, |
| 758 | { |
| 759 | "id": "ATL84", |
| 760 | "name": "CANTTCOC-ATL84" |
| 761 | }, |
| 762 | { |
| 763 | "id": "HSD1", |
| 764 | "name": "CHASKCDS-HSD1" |
| 765 | }, |
| 766 | { |
| 767 | "id": "CHI1", |
| 768 | "name": "CHILLIWE-CHI1" |
| 769 | }, |
| 770 | { |
| 771 | "id": "XCP12", |
| 772 | "name": "CHKGH123-XCP12" |
| 773 | }, |
| 774 | { |
| 775 | "id": "JNL1", |
| 776 | "name": "CJALSDAC-JNL1" |
| 777 | }, |
| 778 | { |
| 779 | "id": "KJN1", |
| 780 | "name": "CKALDKSA-KJN1" |
| 781 | }, |
| 782 | { |
| 783 | "id": "CLG1", |
| 784 | "name": "CLGRABAD-CLG1" |
| 785 | }, |
| 786 | { |
| 787 | "id": "CKL1", |
| 788 | "name": "CLKSKCKK-CKL1" |
| 789 | }, |
| 790 | { |
| 791 | "id": "ATL66", |
| 792 | "name": "CLLIAAII-ATL66" |
| 793 | }, |
| 794 | { |
| 795 | "id": "CQK1", |
| 796 | "name": "CQKSCAKK-CQK1" |
| 797 | }, |
| 798 | { |
| 799 | "id": "CWY1", |
| 800 | "name": "CWYMOWBS-CWY1" |
| 801 | }, |
| 802 | { |
| 803 | "id": "DKJ1", |
| 804 | "name": "DKJSJDKA-DKJ1" |
| 805 | }, |
| 806 | { |
| 807 | "id": "DSF45", |
| 808 | "name": "DSFBG123-DSF45" |
| 809 | }, |
| 810 | { |
| 811 | "id": "DSL12", |
| 812 | "name": "DSLFK242-DSL12" |
| 813 | }, |
| 814 | { |
| 815 | "id": "FDE55", |
| 816 | "name": "FDERT555-FDE55" |
| 817 | }, |
| 818 | { |
| 819 | "id": "VEN2", |
| 820 | "name": "FGHJUHIL-VEN2" |
| 821 | }, |
| 822 | { |
| 823 | "id": "ATL64", |
| 824 | "name": "FORLOAAJ-ATL64" |
| 825 | }, |
| 826 | { |
| 827 | "id": "GNV1", |
| 828 | "name": "GNVLSCTL-GNV1" |
| 829 | }, |
| 830 | { |
| 831 | "id": "SAN22", |
| 832 | "name": "GNVLSCTL-SAN22" |
| 833 | }, |
| 834 | { |
| 835 | "id": "KAP1", |
| 836 | "name": "HIOUYTRQ-KAP1" |
| 837 | }, |
| 838 | { |
| 839 | "id": "LIS1", |
| 840 | "name": "HOSTPROF-LIS1" |
| 841 | }, |
| 842 | { |
| 843 | "id": "HRG1", |
| 844 | "name": "HRGHRGGS-HRG1" |
| 845 | }, |
| 846 | { |
| 847 | "id": "HST25", |
| 848 | "name": "HSTNTX01-HST25" |
| 849 | }, |
| 850 | { |
| 851 | "id": "STN27", |
| 852 | "name": "HSTNTX01-STN27" |
| 853 | }, |
| 854 | { |
| 855 | "id": "HST70", |
| 856 | "name": "HSTNTX70-HST70" |
| 857 | }, |
| 858 | { |
| 859 | "id": "KOR1", |
| 860 | "name": "HYFLNBVT-KOR1" |
| 861 | }, |
| 862 | { |
| 863 | "id": "RAD10", |
| 864 | "name": "INDIPUNE-RAD10" |
| 865 | }, |
| 866 | { |
| 867 | "id": "REL1", |
| 868 | "name": "INGERFGT-REL1" |
| 869 | }, |
| 870 | { |
| 871 | "id": "JAD1", |
| 872 | "name": "JADECLLI-JAD1" |
| 873 | }, |
| 874 | { |
| 875 | "id": "HKA1", |
| 876 | "name": "JAKHLASS-HKA1" |
| 877 | }, |
| 878 | { |
| 879 | "id": "JCS1", |
| 880 | "name": "JCSJSCJS-JCS1" |
| 881 | }, |
| 882 | { |
| 883 | "id": "JCV1", |
| 884 | "name": "JCVLFLBW-JCV1" |
| 885 | }, |
| 886 | { |
| 887 | "id": "KGM2", |
| 888 | "name": "KGMTNC20-KGM2" |
| 889 | }, |
| 890 | { |
| 891 | "id": "KJF12", |
| 892 | "name": "KJFDH123-KJF12" |
| 893 | }, |
| 894 | { |
| 895 | "id": "JGS1", |
| 896 | "name": "KSJKKKKK-JGS1" |
| 897 | }, |
| 898 | { |
| 899 | "id": "LAG1", |
| 900 | "name": "LARGIZON-LAG1" |
| 901 | }, |
| 902 | { |
| 903 | "id": "LAG1a", |
| 904 | "name": "LARGIZON-LAG1a" |
| 905 | }, |
| 906 | { |
| 907 | "id": "LAG45", |
| 908 | "name": "LARGIZON-LAG1a" |
| 909 | }, |
| 910 | { |
| 911 | "id": "LAG1b", |
| 912 | "name": "LARGIZON-LAG1b" |
| 913 | }, |
| 914 | { |
| 915 | "id": "WAN1", |
| 916 | "name": "LEIWANGW-WAN1" |
| 917 | }, |
| 918 | { |
| 919 | "id": "DSA1", |
| 920 | "name": "LKJHGFDS-DSA1" |
| 921 | }, |
| 922 | { |
| 923 | "id": "LON1", |
| 924 | "name": "LONEENCO-LON1" |
| 925 | }, |
| 926 | { |
| 927 | "id": "SITE", |
| 928 | "name": "LONEENCO-SITE" |
| 929 | }, |
| 930 | { |
| 931 | "id": "ZXL1", |
| 932 | "name": "LWLWCANN-ZXL1" |
| 933 | }, |
| 934 | { |
| 935 | "id": "hvf20", |
| 936 | "name": "MDTWNJ21-hvf20" |
| 937 | }, |
| 938 | { |
| 939 | "id": "hvf32", |
| 940 | "name": "MDTWNJ21-hvf32" |
| 941 | }, |
| 942 | { |
| 943 | "id": "AMD13", |
| 944 | "name": "MEMATLAN-AMD13" |
| 945 | }, |
| 946 | { |
| 947 | "id": "MIC54", |
| 948 | "name": "MICHIGAN-MIC54" |
| 949 | }, |
| 950 | { |
| 951 | "id": "MAR1", |
| 952 | "name": "MNBVCXZM-MAR1" |
| 953 | }, |
| 954 | { |
| 955 | "id": "NCA1", |
| 956 | "name": "NCANCANN-NCA1" |
| 957 | }, |
| 958 | { |
| 959 | "id": "NFT1", |
| 960 | "name": "NFTJSSSS-NFT1" |
| 961 | }, |
| 962 | { |
| 963 | "id": "GAR1", |
| 964 | "name": "NGFVSJKO-GAR1" |
| 965 | }, |
| 966 | { |
| 967 | "id": "NYC1", |
| 968 | "name": "NYCMNY54-NYC1" |
| 969 | }, |
| 970 | { |
| 971 | "id": "OKC1", |
| 972 | "name": "OKCBOK55-OKC1" |
| 973 | }, |
| 974 | { |
| 975 | "id": "OLG1", |
| 976 | "name": "OLHOLHOL-OLG1" |
| 977 | }, |
| 978 | { |
| 979 | "id": "OLK1", |
| 980 | "name": "OLKOLKLS-OLK1" |
| 981 | }, |
| 982 | { |
| 983 | "id": "NIR1", |
| 984 | "name": "ORFLMANA-NIR1" |
| 985 | }, |
| 986 | { |
| 987 | "id": "JAN1", |
| 988 | "name": "ORFLMATT-JAN1" |
| 989 | }, |
| 990 | { |
| 991 | "id": "ORL1", |
| 992 | "name": "ORLDFLMA-ORL1" |
| 993 | }, |
| 994 | { |
| 995 | "id": "PAR1", |
| 996 | "name": "PARSFRCG-PAR1" |
| 997 | }, |
| 998 | { |
| 999 | "id": "PBL1", |
| 1000 | "name": "PBLAPBAI-PBL1" |
| 1001 | }, |
| 1002 | { |
| 1003 | "id": "mac10", |
| 1004 | "name": "PKGTESTF-mac10" |
| 1005 | }, |
| 1006 | { |
| 1007 | "id": "mac20", |
| 1008 | "name": "PKGTESTF-mac20" |
| 1009 | }, |
| 1010 | { |
| 1011 | "id": "TIR2", |
| 1012 | "name": "PLKINHYI-TIR2" |
| 1013 | }, |
| 1014 | { |
| 1015 | "id": "IBB1", |
| 1016 | "name": "PLMKOIJU-IBB1" |
| 1017 | }, |
| 1018 | { |
| 1019 | "id": "COM1", |
| 1020 | "name": "PLMKOPIU-COM1" |
| 1021 | }, |
| 1022 | { |
| 1023 | "id": "POI1", |
| 1024 | "name": "PLMNJKIU-POI1" |
| 1025 | }, |
| 1026 | { |
| 1027 | "id": "PLT1", |
| 1028 | "name": "PLTNCA60-PLT1" |
| 1029 | }, |
| 1030 | { |
| 1031 | "id": "POI22", |
| 1032 | "name": "POIUY123-POI22" |
| 1033 | }, |
| 1034 | { |
| 1035 | "id": "DCC1", |
| 1036 | "name": "POIUYTGH-DCC1" |
| 1037 | }, |
| 1038 | { |
| 1039 | "id": "DCC1a", |
| 1040 | "name": "POIUYTGH-DCC1a" |
| 1041 | }, |
| 1042 | { |
| 1043 | "id": "DCC1b", |
| 1044 | "name": "POIUYTGH-DCC1b" |
| 1045 | }, |
| 1046 | { |
| 1047 | "id": "DCC2", |
| 1048 | "name": "POIUYTGH-DCC2" |
| 1049 | }, |
| 1050 | { |
| 1051 | "id": "DCC3", |
| 1052 | "name": "POIUYTGH-DCC3" |
| 1053 | }, |
| 1054 | { |
| 1055 | "id": "IAA1", |
| 1056 | "name": "QAZXSWED-IAA1" |
| 1057 | }, |
| 1058 | { |
| 1059 | "id": "QWE1", |
| 1060 | "name": "QWECLLI1-QWE1" |
| 1061 | }, |
| 1062 | { |
| 1063 | "id": "NUM1", |
| 1064 | "name": "QWERTYUI-NUM1" |
| 1065 | }, |
| 1066 | { |
| 1067 | "id": "RAD1", |
| 1068 | "name": "RADICAL1-RAD1" |
| 1069 | }, |
| 1070 | { |
| 1071 | "id": "RJN1", |
| 1072 | "name": "RJNRBZAW-RJN1" |
| 1073 | }, |
| 1074 | { |
| 1075 | "id": "SAA13", |
| 1076 | "name": "SAIT1AA9-SAA13" |
| 1077 | }, |
| 1078 | { |
| 1079 | "id": "SAA14", |
| 1080 | "name": "SAIT1AA9-SAA14" |
| 1081 | }, |
| 1082 | { |
| 1083 | "id": "SDD81", |
| 1084 | "name": "SAIT1DD6-SDD81" |
| 1085 | }, |
| 1086 | { |
| 1087 | "id": "SDD82", |
| 1088 | "name": "SAIT1DD9-SDD82" |
| 1089 | }, |
| 1090 | { |
| 1091 | "id": "SAA11", |
| 1092 | "name": "SAIT9AA2-SAA11" |
| 1093 | }, |
| 1094 | { |
| 1095 | "id": "SAA80", |
| 1096 | "name": "SAIT9AA3-SAA80" |
| 1097 | }, |
| 1098 | { |
| 1099 | "id": "SAA12", |
| 1100 | "name": "SAIT9AF8-SAA12" |
| 1101 | }, |
| 1102 | { |
| 1103 | "id": "SCC80", |
| 1104 | "name": "SAIT9CC3-SCC80" |
| 1105 | }, |
| 1106 | { |
| 1107 | "id": "ATL75", |
| 1108 | "name": "SANAAIRE-ATL75" |
| 1109 | }, |
| 1110 | { |
| 1111 | "id": "ICC1", |
| 1112 | "name": "SANJITAT-ICC1" |
| 1113 | }, |
| 1114 | { |
| 1115 | "id": "SCK1", |
| 1116 | "name": "SCKSCKSK-SCK1" |
| 1117 | }, |
| 1118 | { |
| 1119 | "id": "EHH78", |
| 1120 | "name": "SDCSHHH5-EHH78" |
| 1121 | }, |
| 1122 | { |
| 1123 | "id": "SAA78", |
| 1124 | "name": "SDCTAAA1-SAA78" |
| 1125 | }, |
| 1126 | { |
| 1127 | "id": "SAX78", |
| 1128 | "name": "SDCTAXG1-SAX78" |
| 1129 | }, |
| 1130 | { |
| 1131 | "id": "SBX78", |
| 1132 | "name": "SDCTBXG1-SBX78" |
| 1133 | }, |
| 1134 | { |
| 1135 | "id": "SEE78", |
| 1136 | "name": "SDCTEEE4-SEE78" |
| 1137 | }, |
| 1138 | { |
| 1139 | "id": "SGG78", |
| 1140 | "name": "SDCTGGG1-SGG78" |
| 1141 | }, |
| 1142 | { |
| 1143 | "id": "SXB78", |
| 1144 | "name": "SDCTGXB1-SXB78" |
| 1145 | }, |
| 1146 | { |
| 1147 | "id": "SJJ78", |
| 1148 | "name": "SDCTJJJ1-SJJ78" |
| 1149 | }, |
| 1150 | { |
| 1151 | "id": "SKK78", |
| 1152 | "name": "SDCTKKK1-SKK78" |
| 1153 | }, |
| 1154 | { |
| 1155 | "id": "SLF78", |
| 1156 | "name": "SDCTLFN1-SLF78" |
| 1157 | }, |
| 1158 | { |
| 1159 | "id": "SLL78", |
| 1160 | "name": "SDCTLLL1-SLL78" |
| 1161 | }, |
| 1162 | { |
| 1163 | "id": "MAD11", |
| 1164 | "name": "SDFQWGKL-MAD11" |
| 1165 | }, |
| 1166 | { |
| 1167 | "id": "HGD1", |
| 1168 | "name": "SDFQWHGD-HGD1" |
| 1169 | }, |
| 1170 | { |
| 1171 | "id": "SBB78", |
| 1172 | "name": "SDIT1BBB-SBB78" |
| 1173 | }, |
| 1174 | { |
| 1175 | "id": "SDG78", |
| 1176 | "name": "SDIT1BDG-SDG78" |
| 1177 | }, |
| 1178 | { |
| 1179 | "id": "SBU78", |
| 1180 | "name": "SDIT1BUB-SBU78" |
| 1181 | }, |
| 1182 | { |
| 1183 | "id": "SHH78", |
| 1184 | "name": "SDIT1HHH-SHH78" |
| 1185 | }, |
| 1186 | { |
| 1187 | "id": "SJU78", |
| 1188 | "name": "SDIT1JUB-SJU78" |
| 1189 | }, |
| 1190 | { |
| 1191 | "id": "SNA1", |
| 1192 | "name": "SNANTXCA-SNA1" |
| 1193 | }, |
| 1194 | { |
| 1195 | "id": "SAM1", |
| 1196 | "name": "SNDGCA64-SAN1" |
| 1197 | }, |
| 1198 | { |
| 1199 | "id": "SNG1", |
| 1200 | "name": "SNGPSIAU-SNG1" |
| 1201 | }, |
| 1202 | { |
| 1203 | "id": "SSA56", |
| 1204 | "name": "SSIT2AA7-SSA56" |
| 1205 | }, |
| 1206 | { |
| 1207 | "id": "STG1", |
| 1208 | "name": "STTGGE62-STG1" |
| 1209 | }, |
| 1210 | { |
| 1211 | "id": "STT1", |
| 1212 | "name": "STTLWA02-STT1" |
| 1213 | }, |
| 1214 | { |
| 1215 | "id": "SYD1", |
| 1216 | "name": "SYDNAUBV-SYD1" |
| 1217 | }, |
| 1218 | { |
| 1219 | "id": "ATL99", |
| 1220 | "name": "TEESTAAI-ATL43" |
| 1221 | }, |
| 1222 | { |
| 1223 | "id": "ATL98", |
| 1224 | "name": "TEESTAAI-ATL43" |
| 1225 | }, |
| 1226 | { |
| 1227 | "id": "ATL76", |
| 1228 | "name": "TELEPAAI-ATL76" |
| 1229 | }, |
| 1230 | { |
| 1231 | "id": "ABC14", |
| 1232 | "name": "TESAAISA-ABC14" |
| 1233 | }, |
| 1234 | { |
| 1235 | "id": "TAT33", |
| 1236 | "name": "TESAAISA-TAT33" |
| 1237 | }, |
| 1238 | { |
| 1239 | "id": "TAT34", |
| 1240 | "name": "TESAAISB-TAT34" |
| 1241 | }, |
| 1242 | { |
| 1243 | "id": "TAT37", |
| 1244 | "name": "TESAAISD-TAT37" |
| 1245 | }, |
| 1246 | { |
| 1247 | "id": "ATL62", |
| 1248 | "name": "TESSASCH-ATL62" |
| 1249 | }, |
| 1250 | { |
| 1251 | "id": "TLP1", |
| 1252 | "name": "TLPNXM18-TLP1" |
| 1253 | }, |
| 1254 | { |
| 1255 | "id": "SAN13", |
| 1256 | "name": "TOKYJPFA-SAN13" |
| 1257 | }, |
| 1258 | { |
| 1259 | "id": "TOK1", |
| 1260 | "name": "TOKYJPFA-TOK1" |
| 1261 | }, |
| 1262 | { |
| 1263 | "id": "TOL1", |
| 1264 | "name": "TOLDOH21-TOL1" |
| 1265 | }, |
| 1266 | { |
| 1267 | "id": "TOR1", |
| 1268 | "name": "TOROONXN-TOR1" |
| 1269 | }, |
| 1270 | { |
| 1271 | "id": "TOY1", |
| 1272 | "name": "TORYONNZ-TOY1" |
| 1273 | }, |
| 1274 | { |
| 1275 | "id": "ATL35", |
| 1276 | "name": "TTESSAAI-ATL35" |
| 1277 | }, |
| 1278 | { |
| 1279 | "id": "TUF1", |
| 1280 | "name": "TUFCLLI1-TUF1" |
| 1281 | }, |
| 1282 | { |
| 1283 | "id": "SAI1", |
| 1284 | "name": "UBEKQLPD-SAI1" |
| 1285 | }, |
| 1286 | { |
| 1287 | "id": "UUU4", |
| 1288 | "name": "UUUAAAUU-UUU4" |
| 1289 | }, |
| 1290 | { |
| 1291 | "id": "YYY1", |
| 1292 | "name": "UUUAIAAI-YYY1" |
| 1293 | }, |
| 1294 | { |
| 1295 | "id": "BAN1", |
| 1296 | "name": "VSDKYUTP-BAN1" |
| 1297 | }, |
| 1298 | { |
| 1299 | "id": "WAS1", |
| 1300 | "name": "WASHDCSW-WAS1" |
| 1301 | }, |
| 1302 | { |
| 1303 | "id": "APP1", |
| 1304 | "name": "WBHGTYUI-APP1" |
| 1305 | }, |
| 1306 | { |
| 1307 | "id": "SUL2", |
| 1308 | "name": "WERTYUJK-SUL2" |
| 1309 | }, |
| 1310 | { |
| 1311 | "id": "DEF2", |
| 1312 | "name": "WSBHGTYL-DEF2" |
| 1313 | }, |
| 1314 | { |
| 1315 | "id": "DHA12", |
| 1316 | "name": "WSXEDECF-DHA12" |
| 1317 | }, |
| 1318 | { |
| 1319 | "id": "MNT11", |
| 1320 | "name": "WSXEFBTH-MNT11" |
| 1321 | }, |
| 1322 | { |
| 1323 | "id": "RAJ1", |
| 1324 | "name": "YGBIJNLQ-RAJ1" |
| 1325 | }, |
| 1326 | { |
| 1327 | "id": "JAG1", |
| 1328 | "name": "YUDFJULP-JAG1" |
| 1329 | }, |
| 1330 | { |
| 1331 | "id": "ZEN1", |
| 1332 | "name": "ZENCLLI1-ZEN1" |
| 1333 | }, |
| 1334 | { |
| 1335 | "id": "ZOG1", |
| 1336 | "name": "ZOGASTRO-ZOG1" |
| 1337 | }, |
| 1338 | { |
| 1339 | "id": "SDE1", |
| 1340 | "name": "ZXCVBNMA-SDE1" |
| 1341 | }, |
| 1342 | { |
| 1343 | "id": "SIP1", |
| 1344 | "name": "ZXCVBNMK-SIP1" |
| 1345 | }, |
| 1346 | { |
| 1347 | "id": "JUL1", |
| 1348 | "name": "ZXCVBNMM-JUL1" |
| 1349 | }, |
| 1350 | { |
| 1351 | "id": "ERT1", |
| 1352 | "name": "ertclli1-ERT1" |
| 1353 | }, |
| 1354 | { |
| 1355 | "id": "IOP1", |
| 1356 | "name": "iopclli1-IOP1" |
| 1357 | }, |
| 1358 | { |
| 1359 | "id": "OPA1", |
| 1360 | "name": "opaclli1-OPA1" |
| 1361 | }, |
| 1362 | { |
| 1363 | "id": "RAI1", |
| 1364 | "name": "poiuytre-RAI1" |
| 1365 | }, |
| 1366 | { |
| 1367 | "id": "PUR1", |
| 1368 | "name": "purelyde-PUR1" |
| 1369 | }, |
| 1370 | { |
| 1371 | "id": "RTY1", |
| 1372 | "name": "rtyclli1-RTY1" |
| 1373 | }, |
| 1374 | { |
| 1375 | "id": "SDF1", |
| 1376 | "name": "sdfclli1-SDF1" |
| 1377 | }, |
| 1378 | { |
| 1379 | "id": "SSW56", |
| 1380 | "name": "ss8126GT-SSW56" |
| 1381 | }, |
| 1382 | { |
| 1383 | "id": "UIO1", |
| 1384 | "name": "uioclli1-UIO1" |
| 1385 | } |
| 1386 | ], |
| 1387 | "categoryParameters": { |
| 1388 | "owningEntityList": [ |
| 1389 | { |
| 1390 | "id": "aaa1", |
| 1391 | "name": "aaa1" |
| 1392 | }, |
| 1393 | { |
| 1394 | "id": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc", |
| 1395 | "name": "WayneHolland" |
| 1396 | }, |
| 1397 | { |
| 1398 | "id": "Melissa", |
| 1399 | "name": "Melissa" |
| 1400 | } |
| 1401 | ], |
| 1402 | "projectList": [ |
| 1403 | { |
| 1404 | "id": "WATKINS", |
| 1405 | "name": "WATKINS" |
| 1406 | }, |
| 1407 | { |
| 1408 | "id": "x1", |
| 1409 | "name": "x1" |
| 1410 | }, |
| 1411 | { |
| 1412 | "id": "yyy1", |
| 1413 | "name": "yyy1" |
| 1414 | } |
| 1415 | ], |
| 1416 | "lineOfBusinessList": [ |
| 1417 | { |
| 1418 | "id": "ONAP", |
| 1419 | "name": "ONAP" |
| 1420 | }, |
| 1421 | { |
| 1422 | "id": "zzz1", |
| 1423 | "name": "zzz1" |
| 1424 | } |
| 1425 | ], |
| 1426 | "platformList": [ |
| 1427 | { |
| 1428 | "id": "platform", |
| 1429 | "name": "platform" |
| 1430 | }, |
| 1431 | { |
| 1432 | "id": "xxx1", |
| 1433 | "name": "xxx1" |
| 1434 | } |
| 1435 | ] |
| 1436 | }, |
| 1437 | "type": "UPDATE_LCP_REGIONS_AND_TENANTS" |
| 1438 | }, |
| 1439 | "global": { |
| 1440 | "name": null, |
| 1441 | "flags": { |
| 1442 | "FLAG_1810_IDENTIFY_SERVICE_FOR_NEW_UI": false, |
| 1443 | "FLAG_1902_VNF_GROUPING": true, |
| 1444 | "FLAG_1906_COMPONENT_INFO": true, |
| 1445 | "FLAG_SHOW_ASSIGNMENTS": true, |
| 1446 | "FLAG_A_LA_CARTE_AUDIT_INFO": true, |
| 1447 | "FLAG_1810_CR_ADD_CLOUD_OWNER_TO_MSO_REQUEST": true, |
| 1448 | "FLAG_SHOW_VERIFY_SERVICE": true, |
| 1449 | "FLAG_1902_NEW_VIEW_EDIT": true, |
| 1450 | "EMPTY_DRAWING_BOARD_TEST": false, |
| 1451 | "FLAG_ADD_MSO_TESTAPI_FIELD": true, |
| 1452 | "FLAG_1906_INSTANTIATION_API_USER_VALIDATION": true, |
| 1453 | "FLAG_EXP_CREATE_RESOURCES_IN_PARALLEL": false, |
| 1454 | "FLAG_PRESENT_PROVIDER_NETWORKS_ASSOCIATIONS": true, |
| 1455 | "FLAG_NETWORK_TO_ASYNC_INSTANTIATION": false, |
| 1456 | "FLAG_DEFAULT_VNF": true, |
| 1457 | "FLAG_1810_CR_SOFT_DELETE_ALACARTE_VF_MODULE": true, |
| 1458 | "FLAG_ASYNC_ALACARTE_VFMODULE": true, |
| 1459 | "FLAG_FABRIC_CONFIGURATION_ASSIGNMENTS": true, |
| 1460 | "FLAG_ASYNC_ALACARTE_VNF": true, |
| 1461 | "FLAG_1810_AAI_LOCAL_CACHE": true, |
| 1462 | "FLAG_EXP_USE_DEFAULT_HOST_NAME_VERIFIER": false, |
| 1463 | "FLAG_SERVICE_MODEL_CACHE": true, |
| 1464 | "FLAG_1902_RETRY_JOB": true, |
| 1465 | "FLAG_EXP_ANY_ALACARTE_NEW_INSTANTIATION_UI": true, |
| 1466 | "CREATE_INSTANCE_TEST": false, |
| 1467 | "FLAG_SETTING_DEFAULTS_IN_DRAWING_BOARD": true, |
| 1468 | "FLAG_1906_AAI_SUB_DETAILS_REDUCE_DEPTH": true, |
| 1469 | "FLAG_VF_MODULE_RESUME_STATUS_CREATE": true, |
| 1470 | "FLAG_SUPPLEMENTARY_FILE": true, |
| 1471 | "FLAG_5G_IN_NEW_INSTANTIATION_UI": true, |
| 1472 | "FLAG_RESTRICTED_SELECT": false, |
| 1473 | "FLAG_1810_CR_LET_SELECTING_COLLECTOR_TYPE_UNCONDITIONALLY": true |
| 1474 | }, |
| 1475 | "drawingBoardStatus": "CREATE", |
| 1476 | "type": "UPDATE_DRAWING_BOARD_STATUS" |
| 1477 | } |
| 1478 | } |
| 1479 | } |
| 1480 | |
| 1481 | |
| 1482 | function reduxWithFourPnfs(serviceModelId: string, pnfName: string) { |
| 1483 | return { |
| 1484 | "service": { |
| 1485 | "serviceHierarchy": { |
| 1486 | [serviceModelId]: { |
| 1487 | // "12550cd7-7708-4f53-a09e-41d3d6327ebc": { |
| 1488 | "service": { |
| 1489 | "uuid": "12550cd7-7708-4f53-a09e-41d3d6327ebc", |
| 1490 | "invariantUuid": "561faa57-7bbb-40ec-a81c-c0d4133e98d4", |
| 1491 | "name": "AIM Transport SVC_ym161f", |
| 1492 | "version": "1.0", |
| 1493 | "toscaModelURL": null, |
| 1494 | "category": "Network L1-3", |
| 1495 | "serviceType": "TRANSPORT", |
| 1496 | "serviceRole": "AIM", |
| 1497 | "description": "AIM Transport service", |
| 1498 | "serviceEcompNaming": "true", |
| 1499 | "instantiationType": "Macro", |
| 1500 | "inputs": {}, |
| 1501 | "vidNotions": { |
| 1502 | "instantiationUI": "transportService", |
| 1503 | "modelCategory": "Transport", |
| 1504 | "viewEditUI": "legacy", |
| 1505 | "instantiationType": "Macro" |
| 1506 | } |
| 1507 | }, |
| 1508 | "vnfs": {}, |
| 1509 | "networks": {}, |
| 1510 | "collectionResources": {}, |
| 1511 | "configurations": {}, |
| 1512 | "fabricConfigurations": {}, |
| 1513 | "serviceProxies": {}, |
| 1514 | "vfModules": {}, |
| 1515 | "volumeGroups": {}, |
| 1516 | "pnfs": { |
| 1517 | [pnfName]: { |
| 1518 | "uuid": "1c831fa9-28a6-4778-8c1d-80b9e769f2ed", |
| 1519 | "invariantUuid": "74e13a12-dac9-4fba-b102-cd242d9e7f02", |
| 1520 | "description": "AIM Transport service", |
| 1521 | "name": "AIM PNF Model", |
| 1522 | "version": "1.0", |
| 1523 | "customizationUuid": "ce2453ef-4e8e-4108-944c-57bef89cfab0", |
| 1524 | "inputs": {}, |
| 1525 | "commands": {}, |
| 1526 | "properties": { |
| 1527 | "nf_function": "AIM CE", |
| 1528 | "nf_role": "pCE", |
| 1529 | "ecomp_generated_naming": "false", |
| 1530 | "nf_type": "ROUTER" |
| 1531 | }, |
| 1532 | "type": "PNF" |
| 1533 | }, |
| 1534 | }, |
| 1535 | "vnfGroups": {}, |
| 1536 | "vrfs": {} |
| 1537 | } |
| 1538 | }, |
| 1539 | "serviceInstance": { |
| 1540 | "12550cd7-7708-4f53-a09e-41d3d6327ebc": { |
| 1541 | "action": "Create", |
| 1542 | "isDirty": false, |
| 1543 | "vnfs": {}, |
| 1544 | "vrfs": {}, |
| 1545 | "instanceParams": [ |
| 1546 | {} |
| 1547 | ], |
| 1548 | "validationCounter": 0, |
| 1549 | "existingNames": {}, |
| 1550 | "existingVNFCounterMap": {}, |
| 1551 | "existingVRFCounterMap": {}, |
| 1552 | "existingVnfGroupCounterMap": {}, |
| 1553 | "existingNetworksCounterMap": {}, |
| 1554 | "optionalGroupMembersMap": {}, |
| 1555 | "networks": {}, |
| 1556 | "vnfGroups": {}, |
| 1557 | "bulkSize": 1, |
| 1558 | "instanceName": null, |
| 1559 | "globalSubscriberId": "e433710f-9217-458d-a79d-1c7aff376d89", |
| 1560 | "subscriptionServiceType": "TYLER SILVIA", |
| 1561 | "owningEntityId": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc", |
| 1562 | "productFamilyId": "e433710f-9217-458d-a79d-1c7aff376d89", |
| 1563 | "lcpCloudRegionId": null, |
| 1564 | "aicZoneId": null, |
| 1565 | "projectName": "WATKINS", |
| 1566 | "rollbackOnFailure": "true", |
| 1567 | "aicZoneName": null, |
| 1568 | "owningEntityName": "WayneHolland", |
| 1569 | "testApi": "VNF_API", |
| 1570 | "tenantName": null, |
| 1571 | "modelInfo": { |
| 1572 | "modelInvariantId": "561faa57-7bbb-40ec-a81c-c0d4133e98d4", |
| 1573 | "modelVersionId": "12550cd7-7708-4f53-a09e-41d3d6327ebc", |
| 1574 | "modelName": "AIM Transport SVC_ym161f", |
| 1575 | "modelVersion": "1.0", |
| 1576 | "uuid": "12550cd7-7708-4f53-a09e-41d3d6327ebc", |
| 1577 | "modelUniqueId": "12550cd7-7708-4f53-a09e-41d3d6327ebc" |
| 1578 | }, |
| 1579 | "isALaCarte": false, |
| 1580 | "name": "AIM Transport SVC_ym161f", |
| 1581 | "version": "1.0", |
| 1582 | "description": "AIM Transport service", |
| 1583 | "category": "Network L1-3", |
| 1584 | "uuid": "12550cd7-7708-4f53-a09e-41d3d6327ebc", |
| 1585 | "invariantUuid": "561faa57-7bbb-40ec-a81c-c0d4133e98d4", |
| 1586 | "serviceType": "TRANSPORT", |
| 1587 | "serviceRole": "AIM", |
| 1588 | "vidNotions": { |
| 1589 | "instantiationUI": "transportService", |
| 1590 | "modelCategory": "Transport", |
| 1591 | "viewEditUI": "legacy", |
| 1592 | "instantiationType": "Macro" |
| 1593 | }, |
| 1594 | "isEcompGeneratedNaming": true, |
| 1595 | "isMultiStepDesign": false |
| 1596 | } |
| 1597 | }, |
| 1598 | "lcpRegionsAndTenants": { |
| 1599 | "lcpRegionList": [ |
| 1600 | { |
| 1601 | "id": "AAIAIC25", |
| 1602 | "name": "AAIAIC25 (AIC)", |
| 1603 | "isPermitted": true, |
| 1604 | "cloudOwner": "irma-aic" |
| 1605 | }, |
| 1606 | { |
| 1607 | "id": "hvf6", |
| 1608 | "name": "hvf6 (AIC)", |
| 1609 | "isPermitted": true, |
| 1610 | "cloudOwner": "irma-aic" |
| 1611 | } |
| 1612 | ], |
| 1613 | "lcpRegionsTenantsMap": { |
| 1614 | "AAIAIC25": [ |
| 1615 | { |
| 1616 | "id": "092eb9e8e4b7412e8787dd091bc58e86", |
| 1617 | "name": "USP-SIP-IC-24335-T-01", |
| 1618 | "isPermitted": true, |
| 1619 | "cloudOwner": "irma-aic" |
| 1620 | } |
| 1621 | ], |
| 1622 | "hvf6": [ |
| 1623 | { |
| 1624 | "id": "bae71557c5bb4d5aac6743a4e5f1d054", |
| 1625 | "name": "AIN Web Tool-15-D-testalexandria", |
| 1626 | "isPermitted": true, |
| 1627 | "cloudOwner": "irma-aic" |
| 1628 | }, |
| 1629 | { |
| 1630 | "id": "229bcdc6eaeb4ca59d55221141d01f8e", |
| 1631 | "name": "AIN Web Tool-15-D-STTest2", |
| 1632 | "isPermitted": true, |
| 1633 | "cloudOwner": "irma-aic" |
| 1634 | }, |
| 1635 | { |
| 1636 | "id": "1178612d2b394be4834ad77f567c0af2", |
| 1637 | "name": "AIN Web Tool-15-D-SSPtestcustome", |
| 1638 | "isPermitted": true, |
| 1639 | "cloudOwner": "irma-aic" |
| 1640 | }, |
| 1641 | { |
| 1642 | "id": "19c5ade915eb461e8af52fb2fd8cd1f2", |
| 1643 | "name": "AIN Web Tool-15-D-UncheckedEcopm", |
| 1644 | "isPermitted": true, |
| 1645 | "cloudOwner": "irma-aic" |
| 1646 | }, |
| 1647 | { |
| 1648 | "id": "de007636e25249238447264a988a927b", |
| 1649 | "name": "AIN Web Tool-15-D-dfsdf", |
| 1650 | "isPermitted": true, |
| 1651 | "cloudOwner": "irma-aic" |
| 1652 | }, |
| 1653 | { |
| 1654 | "id": "62f29b3613634ca6a3065cbe0e020c44", |
| 1655 | "name": "AIN/SMS-16-D-Multiservices1", |
| 1656 | "isPermitted": true, |
| 1657 | "cloudOwner": "irma-aic" |
| 1658 | }, |
| 1659 | { |
| 1660 | "id": "649289e30d3244e0b48098114d63c2aa", |
| 1661 | "name": "AIN Web Tool-15-D-SSPST66", |
| 1662 | "isPermitted": true, |
| 1663 | "cloudOwner": "irma-aic" |
| 1664 | }, |
| 1665 | { |
| 1666 | "id": "3f21eeea6c2c486bba31dab816c05a32", |
| 1667 | "name": "AIN Web Tool-15-D-ASSPST47", |
| 1668 | "isPermitted": true, |
| 1669 | "cloudOwner": "irma-aic" |
| 1670 | }, |
| 1671 | { |
| 1672 | "id": "f60ce21d3ee6427586cff0d22b03b773", |
| 1673 | "name": "CESAR-100-D-sspjg67246", |
| 1674 | "isPermitted": true, |
| 1675 | "cloudOwner": "irma-aic" |
| 1676 | }, |
| 1677 | { |
| 1678 | "id": "8774659e425f479895ae091bb5d46560", |
| 1679 | "name": "CESAR-100-D-sspjg68359", |
| 1680 | "isPermitted": true, |
| 1681 | "cloudOwner": "irma-aic" |
| 1682 | }, |
| 1683 | { |
| 1684 | "id": "624eb554b0d147c19ff8885341760481", |
| 1685 | "name": "AINWebTool-15-D-iftach", |
| 1686 | "isPermitted": true, |
| 1687 | "cloudOwner": "irma-aic" |
| 1688 | }, |
| 1689 | { |
| 1690 | "id": "214f55f5fc414c678059c383b03e4962", |
| 1691 | "name": "CESAR-100-D-sspjg612401", |
| 1692 | "isPermitted": true, |
| 1693 | "cloudOwner": "irma-aic" |
| 1694 | }, |
| 1695 | { |
| 1696 | "id": "c90666c291664841bb98e4d981ff1db5", |
| 1697 | "name": "CESAR-100-D-sspjg621340", |
| 1698 | "isPermitted": true, |
| 1699 | "cloudOwner": "irma-aic" |
| 1700 | }, |
| 1701 | { |
| 1702 | "id": "ce5b6bc5c7b348e1bf4b91ac9a174278", |
| 1703 | "name": "sspjg621351cloned", |
| 1704 | "isPermitted": true, |
| 1705 | "cloudOwner": "irma-aic" |
| 1706 | }, |
| 1707 | { |
| 1708 | "id": "b386b768a3f24c8e953abbe0b3488c02", |
| 1709 | "name": "AINWebTool-15-D-eteancomp", |
| 1710 | "isPermitted": true, |
| 1711 | "cloudOwner": "irma-aic" |
| 1712 | }, |
| 1713 | { |
| 1714 | "id": "dc6c4dbfd225474e9deaadd34968646c", |
| 1715 | "name": "AINWebTool-15-T-SPFET", |
| 1716 | "isPermitted": true, |
| 1717 | "cloudOwner": "irma-aic" |
| 1718 | }, |
| 1719 | { |
| 1720 | "id": "02cb5030e9914aa4be120bd9ed1e19eb", |
| 1721 | "name": "AINWebTool-15-X-eeweww", |
| 1722 | "isPermitted": true, |
| 1723 | "cloudOwner": "irma-aic" |
| 1724 | }, |
| 1725 | { |
| 1726 | "id": "f2f3830e4c984d45bcd00e1a04158a79", |
| 1727 | "name": "CESAR-100-D-spjg61909", |
| 1728 | "isPermitted": true, |
| 1729 | "cloudOwner": "irma-aic" |
| 1730 | }, |
| 1731 | { |
| 1732 | "id": "05b91bd5137f4929878edd965755c06d", |
| 1733 | "name": "CESAR-100-D-sspjg621512cloned", |
| 1734 | "isPermitted": true, |
| 1735 | "cloudOwner": "irma-aic" |
| 1736 | }, |
| 1737 | { |
| 1738 | "id": "7002fbe8482d4a989ddf445b1ce336e0", |
| 1739 | "name": "AINWebTool-15-X-vdr", |
| 1740 | "isPermitted": true, |
| 1741 | "cloudOwner": "irma-aic" |
| 1742 | }, |
| 1743 | { |
| 1744 | "id": "4008522be43741dcb1f5422022a2aa0b", |
| 1745 | "name": "AINWebTool-15-D-ssasa", |
| 1746 | "isPermitted": true, |
| 1747 | "cloudOwner": "irma-aic" |
| 1748 | }, |
| 1749 | { |
| 1750 | "id": "f44e2e96a1b6476abfda2fa407b00169", |
| 1751 | "name": "AINWebTool-15-D-PFNPT", |
| 1752 | "isPermitted": true, |
| 1753 | "cloudOwner": "irma-aic" |
| 1754 | }, |
| 1755 | { |
| 1756 | "id": "b69a52bec8a84669a37a1e8b72708be7", |
| 1757 | "name": "AINWebTool-15-X-vdre", |
| 1758 | "isPermitted": true, |
| 1759 | "cloudOwner": "irma-aic" |
| 1760 | }, |
| 1761 | { |
| 1762 | "id": "fac7d9fd56154caeb9332202dcf2969f", |
| 1763 | "name": "AINWebTool-15-X-NONPODECOMP", |
| 1764 | "isPermitted": true, |
| 1765 | "cloudOwner": "irma-aic" |
| 1766 | }, |
| 1767 | { |
| 1768 | "id": "2d34d8396e194eb49969fd61ffbff961", |
| 1769 | "name": "DN5242-Nov16-T5", |
| 1770 | "isPermitted": true, |
| 1771 | "cloudOwner": "irma-aic" |
| 1772 | }, |
| 1773 | { |
| 1774 | "id": "cb42a77ff45b48a8b8deb83bb64acc74", |
| 1775 | "name": "ro-T11", |
| 1776 | "isPermitted": true, |
| 1777 | "cloudOwner": "irma-aic" |
| 1778 | }, |
| 1779 | { |
| 1780 | "id": "fa45ca53c80b492fa8be5477cd84fc2b", |
| 1781 | "name": "ro-T112", |
| 1782 | "isPermitted": true, |
| 1783 | "cloudOwner": "irma-aic" |
| 1784 | }, |
| 1785 | { |
| 1786 | "id": "4914ab0ab3a743e58f0eefdacc1dde77", |
| 1787 | "name": "DN5242-Nov21-T1", |
| 1788 | "isPermitted": true, |
| 1789 | "cloudOwner": "irma-aic" |
| 1790 | }, |
| 1791 | { |
| 1792 | "id": "d0a3e3f2964542259d155a81c41aadc3", |
| 1793 | "name": "test-hvf6-09", |
| 1794 | "isPermitted": true, |
| 1795 | "cloudOwner": "irma-aic" |
| 1796 | }, |
| 1797 | { |
| 1798 | "id": "cbb99fe4ada84631b7baf046b6fd2044", |
| 1799 | "name": "DN5242-Nov16-T3", |
| 1800 | "isPermitted": true, |
| 1801 | "cloudOwner": "irma-aic" |
| 1802 | } |
| 1803 | ] |
| 1804 | } |
| 1805 | }, |
| 1806 | "subscribers": [ |
| 1807 | { |
| 1808 | "id": "ERICA5779-Subscriber-2", |
| 1809 | "name": "ERICA5779-Subscriber-2", |
| 1810 | "isPermitted": false |
| 1811 | }, |
| 1812 | { |
| 1813 | "id": "ERICA5779-Subscriber-3", |
| 1814 | "name": "ERICA5779-Subscriber-3", |
| 1815 | "isPermitted": false |
| 1816 | }, |
| 1817 | { |
| 1818 | "id": "ERICA5779-Subscriber-4", |
| 1819 | "name": "ERICA5779-Subscriber-5", |
| 1820 | "isPermitted": false |
| 1821 | }, |
| 1822 | { |
| 1823 | "id": "ERICA5779-TestSub-PWT-101", |
| 1824 | "name": "ERICA5779-TestSub-PWT-101", |
| 1825 | "isPermitted": false |
| 1826 | }, |
| 1827 | { |
| 1828 | "id": "ERICA5779-TestSub-PWT-102", |
| 1829 | "name": "ERICA5779-TestSub-PWT-102", |
| 1830 | "isPermitted": false |
| 1831 | }, |
| 1832 | { |
| 1833 | "id": "ERICA5779-TestSub-PWT-103", |
| 1834 | "name": "ERICA5779-TestSub-PWT-103", |
| 1835 | "isPermitted": false |
| 1836 | }, |
| 1837 | { |
| 1838 | "id": "31739f3e-526b-11e6-beb8-9e71128cae77", |
| 1839 | "name": "CRAIG/ROBERTS", |
| 1840 | "isPermitted": false |
| 1841 | }, |
| 1842 | { |
| 1843 | "id": "DHV1707-TestSubscriber-2", |
| 1844 | "name": "DALE BRIDGES", |
| 1845 | "isPermitted": false |
| 1846 | }, |
| 1847 | { |
| 1848 | "id": "jimmy-example", |
| 1849 | "name": "JimmyExampleCust-20161102", |
| 1850 | "isPermitted": false |
| 1851 | }, |
| 1852 | { |
| 1853 | "id": "jimmy-example2", |
| 1854 | "name": "JimmyExampleCust-20161103", |
| 1855 | "isPermitted": false |
| 1856 | }, |
| 1857 | { |
| 1858 | "id": "CAR_2020_ER", |
| 1859 | "name": "CAR_2020_ER", |
| 1860 | "isPermitted": true |
| 1861 | }, |
| 1862 | { |
| 1863 | "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb", |
| 1864 | "name": "Emanuel", |
| 1865 | "isPermitted": true |
| 1866 | }, |
| 1867 | { |
| 1868 | "id": "21014aa2-526b-11e6-beb8-9e71128cae77", |
| 1869 | "name": "JULIO ERICKSON", |
| 1870 | "isPermitted": false |
| 1871 | }, |
| 1872 | { |
| 1873 | "id": "DHV1707-TestSubscriber-1", |
| 1874 | "name": "LLOYD BRIDGES", |
| 1875 | "isPermitted": false |
| 1876 | }, |
| 1877 | { |
| 1878 | "id": "e433710f-9217-458d-a79d-1c7aff376d89", |
| 1879 | "name": "SILVIA ROBBINS", |
| 1880 | "isPermitted": true |
| 1881 | }, |
| 1882 | { |
| 1883 | "id": "global-customer-id", |
| 1884 | "name": "global-customer-id", |
| 1885 | "isPermitted": true |
| 1886 | } |
| 1887 | ], |
| 1888 | "productFamilies": null, |
| 1889 | "serviceTypes": { |
| 1890 | "e433710f-9217-458d-a79d-1c7aff376d89": [ |
| 1891 | { |
| 1892 | "id": "17", |
| 1893 | "name": "JOHANNA_SANTOS", |
| 1894 | "isPermitted": false |
| 1895 | }, |
| 1896 | { |
| 1897 | "id": "16", |
| 1898 | "name": "LINDSEY", |
| 1899 | "isPermitted": false |
| 1900 | }, |
| 1901 | { |
| 1902 | "id": "2", |
| 1903 | "name": "Emanuel", |
| 1904 | "isPermitted": false |
| 1905 | }, |
| 1906 | { |
| 1907 | "id": "5", |
| 1908 | "name": "Kennedy", |
| 1909 | "isPermitted": false |
| 1910 | }, |
| 1911 | { |
| 1912 | "id": "14", |
| 1913 | "name": "SSD", |
| 1914 | "isPermitted": false |
| 1915 | }, |
| 1916 | { |
| 1917 | "id": "1", |
| 1918 | "name": "TYLER SILVIA", |
| 1919 | "isPermitted": true |
| 1920 | }, |
| 1921 | { |
| 1922 | "id": "12", |
| 1923 | "name": "VPMS", |
| 1924 | "isPermitted": false |
| 1925 | }, |
| 1926 | { |
| 1927 | "id": "3", |
| 1928 | "name": "vJamie", |
| 1929 | "isPermitted": false |
| 1930 | }, |
| 1931 | { |
| 1932 | "id": "0", |
| 1933 | "name": "vRichardson", |
| 1934 | "isPermitted": false |
| 1935 | }, |
| 1936 | { |
| 1937 | "id": "18", |
| 1938 | "name": "vCarroll", |
| 1939 | "isPermitted": false |
| 1940 | }, |
| 1941 | { |
| 1942 | "id": "9", |
| 1943 | "name": "vFLORENCE", |
| 1944 | "isPermitted": false |
| 1945 | }, |
| 1946 | { |
| 1947 | "id": "13", |
| 1948 | "name": "vWINIFRED", |
| 1949 | "isPermitted": false |
| 1950 | }, |
| 1951 | { |
| 1952 | "id": "10", |
| 1953 | "name": "vMNS", |
| 1954 | "isPermitted": false |
| 1955 | }, |
| 1956 | { |
| 1957 | "id": "15", |
| 1958 | "name": "vMOG", |
| 1959 | "isPermitted": false |
| 1960 | }, |
| 1961 | { |
| 1962 | "id": "8", |
| 1963 | "name": "vOTA", |
| 1964 | "isPermitted": false |
| 1965 | }, |
| 1966 | { |
| 1967 | "id": "11", |
| 1968 | "name": "vEsmeralda", |
| 1969 | "isPermitted": false |
| 1970 | }, |
| 1971 | { |
| 1972 | "id": "6", |
| 1973 | "name": "vPorfirio", |
| 1974 | "isPermitted": false |
| 1975 | }, |
| 1976 | { |
| 1977 | "id": "7", |
| 1978 | "name": "vVM", |
| 1979 | "isPermitted": false |
| 1980 | }, |
| 1981 | { |
| 1982 | "id": "4", |
| 1983 | "name": "vVoiceMail", |
| 1984 | "isPermitted": false |
| 1985 | } |
| 1986 | ] |
| 1987 | }, |
| 1988 | "aicZones": [ |
| 1989 | { |
| 1990 | "id": "ATL53", |
| 1991 | "name": "AAIATLTE-ATL53" |
| 1992 | }, |
| 1993 | { |
| 1994 | "id": "ABC15", |
| 1995 | "name": "AAITESAN-ABC15" |
| 1996 | }, |
| 1997 | { |
| 1998 | "id": "TES36", |
| 1999 | "name": "ABCEETES-TES36" |
| 2000 | }, |
| 2001 | { |
| 2002 | "id": "ATL54", |
| 2003 | "name": "AICFTAAI-ATL54" |
| 2004 | }, |
| 2005 | { |
| 2006 | "id": "ATL43", |
| 2007 | "name": "AICLOCID-ATL43" |
| 2008 | }, |
| 2009 | { |
| 2010 | "id": "AMD15", |
| 2011 | "name": "AMDFAA01-AMD15" |
| 2012 | }, |
| 2013 | { |
| 2014 | "id": "AMF11", |
| 2015 | "name": "AMDOCS01-AMF11" |
| 2016 | }, |
| 2017 | { |
| 2018 | "id": "RCT1", |
| 2019 | "name": "AMSTERNL-RCT1" |
| 2020 | }, |
| 2021 | { |
| 2022 | "id": "AMS1", |
| 2023 | "name": "AMSTNLBW-AMS1" |
| 2024 | }, |
| 2025 | { |
| 2026 | "id": "HJH1", |
| 2027 | "name": "AOEEQQQD-HJH1" |
| 2028 | }, |
| 2029 | { |
| 2030 | "id": "HJE1", |
| 2031 | "name": "AOEEWWWD-HJE1" |
| 2032 | }, |
| 2033 | { |
| 2034 | "id": "MCS1", |
| 2035 | "name": "ASACMAMS-MCS1" |
| 2036 | }, |
| 2037 | { |
| 2038 | "id": "AUG1", |
| 2039 | "name": "ASDFGHJK-AUG1" |
| 2040 | }, |
| 2041 | { |
| 2042 | "id": "LUC1", |
| 2043 | "name": "ATLDFGYC-LUC1" |
| 2044 | }, |
| 2045 | { |
| 2046 | "id": "ATL1", |
| 2047 | "name": "ATLNGAMA-ATL1" |
| 2048 | }, |
| 2049 | { |
| 2050 | "id": "ATL2", |
| 2051 | "name": "ATLNGANW-ATL2" |
| 2052 | }, |
| 2053 | { |
| 2054 | "id": "HPO1", |
| 2055 | "name": "ATLNGAUP-HPO1" |
| 2056 | }, |
| 2057 | { |
| 2058 | "id": "ANI1", |
| 2059 | "name": "ATLNGTRE-ANI1" |
| 2060 | }, |
| 2061 | { |
| 2062 | "id": "ATL44", |
| 2063 | "name": "ATLSANAB-ATL44" |
| 2064 | }, |
| 2065 | { |
| 2066 | "id": "ATL56", |
| 2067 | "name": "ATLSANAC-ATL56" |
| 2068 | }, |
| 2069 | { |
| 2070 | "id": "ABC11", |
| 2071 | "name": "ATLSANAI-ABC11" |
| 2072 | }, |
| 2073 | { |
| 2074 | "id": "ATL34", |
| 2075 | "name": "ATLSANAI-ATL34" |
| 2076 | }, |
| 2077 | { |
| 2078 | "id": "ATL63", |
| 2079 | "name": "ATLSANEW-ATL63" |
| 2080 | }, |
| 2081 | { |
| 2082 | "id": "ABC12", |
| 2083 | "name": "ATLSECIA-ABC12" |
| 2084 | }, |
| 2085 | { |
| 2086 | "id": "AMD18", |
| 2087 | "name": "AUDIMA01-AMD18" |
| 2088 | }, |
| 2089 | { |
| 2090 | "id": "AVT1", |
| 2091 | "name": "AVTRFLHD-AVT1" |
| 2092 | }, |
| 2093 | { |
| 2094 | "id": "KIT1", |
| 2095 | "name": "BHYJFGLN-KIT1" |
| 2096 | }, |
| 2097 | { |
| 2098 | "id": "BHY17", |
| 2099 | "name": "BHYTFRF3-BHY17" |
| 2100 | }, |
| 2101 | { |
| 2102 | "id": "RTW5", |
| 2103 | "name": "BHYTFRY4-RTW5" |
| 2104 | }, |
| 2105 | { |
| 2106 | "id": "RTZ4", |
| 2107 | "name": "BHYTFRZ6-RTZ4" |
| 2108 | }, |
| 2109 | { |
| 2110 | "id": "RTD2", |
| 2111 | "name": "BHYTFRk4-RTD2" |
| 2112 | }, |
| 2113 | { |
| 2114 | "id": "BNA1", |
| 2115 | "name": "BNARAGBK-BNA1" |
| 2116 | }, |
| 2117 | { |
| 2118 | "id": "VEL1", |
| 2119 | "name": "BNMLKUIK-VEL1" |
| 2120 | }, |
| 2121 | { |
| 2122 | "id": "BOT1", |
| 2123 | "name": "BOTHWAKY-BOT1" |
| 2124 | }, |
| 2125 | { |
| 2126 | "id": "CAL33", |
| 2127 | "name": "CALIFORN-CAL33" |
| 2128 | }, |
| 2129 | { |
| 2130 | "id": "ATL84", |
| 2131 | "name": "CANTTCOC-ATL84" |
| 2132 | }, |
| 2133 | { |
| 2134 | "id": "HSD1", |
| 2135 | "name": "CHASKCDS-HSD1" |
| 2136 | }, |
| 2137 | { |
| 2138 | "id": "CHI1", |
| 2139 | "name": "CHILLIWE-CHI1" |
| 2140 | }, |
| 2141 | { |
| 2142 | "id": "XCP12", |
| 2143 | "name": "CHKGH123-XCP12" |
| 2144 | }, |
| 2145 | { |
| 2146 | "id": "JNL1", |
| 2147 | "name": "CJALSDAC-JNL1" |
| 2148 | }, |
| 2149 | { |
| 2150 | "id": "KJN1", |
| 2151 | "name": "CKALDKSA-KJN1" |
| 2152 | }, |
| 2153 | { |
| 2154 | "id": "CLG1", |
| 2155 | "name": "CLGRABAD-CLG1" |
| 2156 | }, |
| 2157 | { |
| 2158 | "id": "CKL1", |
| 2159 | "name": "CLKSKCKK-CKL1" |
| 2160 | }, |
| 2161 | { |
| 2162 | "id": "ATL66", |
| 2163 | "name": "CLLIAAII-ATL66" |
| 2164 | }, |
| 2165 | { |
| 2166 | "id": "CQK1", |
| 2167 | "name": "CQKSCAKK-CQK1" |
| 2168 | }, |
| 2169 | { |
| 2170 | "id": "CWY1", |
| 2171 | "name": "CWYMOWBS-CWY1" |
| 2172 | }, |
| 2173 | { |
| 2174 | "id": "DKJ1", |
| 2175 | "name": "DKJSJDKA-DKJ1" |
| 2176 | }, |
| 2177 | { |
| 2178 | "id": "DSF45", |
| 2179 | "name": "DSFBG123-DSF45" |
| 2180 | }, |
| 2181 | { |
| 2182 | "id": "DSL12", |
| 2183 | "name": "DSLFK242-DSL12" |
| 2184 | }, |
| 2185 | { |
| 2186 | "id": "FDE55", |
| 2187 | "name": "FDERT555-FDE55" |
| 2188 | }, |
| 2189 | { |
| 2190 | "id": "VEN2", |
| 2191 | "name": "FGHJUHIL-VEN2" |
| 2192 | }, |
| 2193 | { |
| 2194 | "id": "ATL64", |
| 2195 | "name": "FORLOAAJ-ATL64" |
| 2196 | }, |
| 2197 | { |
| 2198 | "id": "GNV1", |
| 2199 | "name": "GNVLSCTL-GNV1" |
| 2200 | }, |
| 2201 | { |
| 2202 | "id": "SAN22", |
| 2203 | "name": "GNVLSCTL-SAN22" |
| 2204 | }, |
| 2205 | { |
| 2206 | "id": "KAP1", |
| 2207 | "name": "HIOUYTRQ-KAP1" |
| 2208 | }, |
| 2209 | { |
| 2210 | "id": "LIS1", |
| 2211 | "name": "HOSTPROF-LIS1" |
| 2212 | }, |
| 2213 | { |
| 2214 | "id": "HRG1", |
| 2215 | "name": "HRGHRGGS-HRG1" |
| 2216 | }, |
| 2217 | { |
| 2218 | "id": "HST25", |
| 2219 | "name": "HSTNTX01-HST25" |
| 2220 | }, |
| 2221 | { |
| 2222 | "id": "STN27", |
| 2223 | "name": "HSTNTX01-STN27" |
| 2224 | }, |
| 2225 | { |
| 2226 | "id": "HST70", |
| 2227 | "name": "HSTNTX70-HST70" |
| 2228 | }, |
| 2229 | { |
| 2230 | "id": "KOR1", |
| 2231 | "name": "HYFLNBVT-KOR1" |
| 2232 | }, |
| 2233 | { |
| 2234 | "id": "RAD10", |
| 2235 | "name": "INDIPUNE-RAD10" |
| 2236 | }, |
| 2237 | { |
| 2238 | "id": "REL1", |
| 2239 | "name": "INGERFGT-REL1" |
| 2240 | }, |
| 2241 | { |
| 2242 | "id": "JAD1", |
| 2243 | "name": "JADECLLI-JAD1" |
| 2244 | }, |
| 2245 | { |
| 2246 | "id": "HKA1", |
| 2247 | "name": "JAKHLASS-HKA1" |
| 2248 | }, |
| 2249 | { |
| 2250 | "id": "JCS1", |
| 2251 | "name": "JCSJSCJS-JCS1" |
| 2252 | }, |
| 2253 | { |
| 2254 | "id": "JCV1", |
| 2255 | "name": "JCVLFLBW-JCV1" |
| 2256 | }, |
| 2257 | { |
| 2258 | "id": "KGM2", |
| 2259 | "name": "KGMTNC20-KGM2" |
| 2260 | }, |
| 2261 | { |
| 2262 | "id": "KJF12", |
| 2263 | "name": "KJFDH123-KJF12" |
| 2264 | }, |
| 2265 | { |
| 2266 | "id": "JGS1", |
| 2267 | "name": "KSJKKKKK-JGS1" |
| 2268 | }, |
| 2269 | { |
| 2270 | "id": "LAG1", |
| 2271 | "name": "LARGIZON-LAG1" |
| 2272 | }, |
| 2273 | { |
| 2274 | "id": "LAG1a", |
| 2275 | "name": "LARGIZON-LAG1a" |
| 2276 | }, |
| 2277 | { |
| 2278 | "id": "LAG45", |
| 2279 | "name": "LARGIZON-LAG1a" |
| 2280 | }, |
| 2281 | { |
| 2282 | "id": "LAG1b", |
| 2283 | "name": "LARGIZON-LAG1b" |
| 2284 | }, |
| 2285 | { |
| 2286 | "id": "WAN1", |
| 2287 | "name": "LEIWANGW-WAN1" |
| 2288 | }, |
| 2289 | { |
| 2290 | "id": "DSA1", |
| 2291 | "name": "LKJHGFDS-DSA1" |
| 2292 | }, |
| 2293 | { |
| 2294 | "id": "LON1", |
| 2295 | "name": "LONEENCO-LON1" |
| 2296 | }, |
| 2297 | { |
| 2298 | "id": "SITE", |
| 2299 | "name": "LONEENCO-SITE" |
| 2300 | }, |
| 2301 | { |
| 2302 | "id": "ZXL1", |
| 2303 | "name": "LWLWCANN-ZXL1" |
| 2304 | }, |
| 2305 | { |
| 2306 | "id": "hvf20", |
| 2307 | "name": "MDTWNJ21-hvf20" |
| 2308 | }, |
| 2309 | { |
| 2310 | "id": "hvf32", |
| 2311 | "name": "MDTWNJ21-hvf32" |
| 2312 | }, |
| 2313 | { |
| 2314 | "id": "AMD13", |
| 2315 | "name": "MEMATLAN-AMD13" |
| 2316 | }, |
| 2317 | { |
| 2318 | "id": "MIC54", |
| 2319 | "name": "MICHIGAN-MIC54" |
| 2320 | }, |
| 2321 | { |
| 2322 | "id": "MAR1", |
| 2323 | "name": "MNBVCXZM-MAR1" |
| 2324 | }, |
| 2325 | { |
| 2326 | "id": "NCA1", |
| 2327 | "name": "NCANCANN-NCA1" |
| 2328 | }, |
| 2329 | { |
| 2330 | "id": "NFT1", |
| 2331 | "name": "NFTJSSSS-NFT1" |
| 2332 | }, |
| 2333 | { |
| 2334 | "id": "GAR1", |
| 2335 | "name": "NGFVSJKO-GAR1" |
| 2336 | }, |
| 2337 | { |
| 2338 | "id": "NYC1", |
| 2339 | "name": "NYCMNY54-NYC1" |
| 2340 | }, |
| 2341 | { |
| 2342 | "id": "OKC1", |
| 2343 | "name": "OKCBOK55-OKC1" |
| 2344 | }, |
| 2345 | { |
| 2346 | "id": "OLG1", |
| 2347 | "name": "OLHOLHOL-OLG1" |
| 2348 | }, |
| 2349 | { |
| 2350 | "id": "OLK1", |
| 2351 | "name": "OLKOLKLS-OLK1" |
| 2352 | }, |
| 2353 | { |
| 2354 | "id": "NIR1", |
| 2355 | "name": "ORFLMANA-NIR1" |
| 2356 | }, |
| 2357 | { |
| 2358 | "id": "JAN1", |
| 2359 | "name": "ORFLMATT-JAN1" |
| 2360 | }, |
| 2361 | { |
| 2362 | "id": "ORL1", |
| 2363 | "name": "ORLDFLMA-ORL1" |
| 2364 | }, |
| 2365 | { |
| 2366 | "id": "PAR1", |
| 2367 | "name": "PARSFRCG-PAR1" |
| 2368 | }, |
| 2369 | { |
| 2370 | "id": "PBL1", |
| 2371 | "name": "PBLAPBAI-PBL1" |
| 2372 | }, |
| 2373 | { |
| 2374 | "id": "mac10", |
| 2375 | "name": "PKGTESTF-mac10" |
| 2376 | }, |
| 2377 | { |
| 2378 | "id": "mac20", |
| 2379 | "name": "PKGTESTF-mac20" |
| 2380 | }, |
| 2381 | { |
| 2382 | "id": "TIR2", |
| 2383 | "name": "PLKINHYI-TIR2" |
| 2384 | }, |
| 2385 | { |
| 2386 | "id": "IBB1", |
| 2387 | "name": "PLMKOIJU-IBB1" |
| 2388 | }, |
| 2389 | { |
| 2390 | "id": "COM1", |
| 2391 | "name": "PLMKOPIU-COM1" |
| 2392 | }, |
| 2393 | { |
| 2394 | "id": "POI1", |
| 2395 | "name": "PLMNJKIU-POI1" |
| 2396 | }, |
| 2397 | { |
| 2398 | "id": "PLT1", |
| 2399 | "name": "PLTNCA60-PLT1" |
| 2400 | }, |
| 2401 | { |
| 2402 | "id": "POI22", |
| 2403 | "name": "POIUY123-POI22" |
| 2404 | }, |
| 2405 | { |
| 2406 | "id": "DCC1", |
| 2407 | "name": "POIUYTGH-DCC1" |
| 2408 | }, |
| 2409 | { |
| 2410 | "id": "DCC1a", |
| 2411 | "name": "POIUYTGH-DCC1a" |
| 2412 | }, |
| 2413 | { |
| 2414 | "id": "DCC1b", |
| 2415 | "name": "POIUYTGH-DCC1b" |
| 2416 | }, |
| 2417 | { |
| 2418 | "id": "DCC2", |
| 2419 | "name": "POIUYTGH-DCC2" |
| 2420 | }, |
| 2421 | { |
| 2422 | "id": "DCC3", |
| 2423 | "name": "POIUYTGH-DCC3" |
| 2424 | }, |
| 2425 | { |
| 2426 | "id": "IAA1", |
| 2427 | "name": "QAZXSWED-IAA1" |
| 2428 | }, |
| 2429 | { |
| 2430 | "id": "QWE1", |
| 2431 | "name": "QWECLLI1-QWE1" |
| 2432 | }, |
| 2433 | { |
| 2434 | "id": "NUM1", |
| 2435 | "name": "QWERTYUI-NUM1" |
| 2436 | }, |
| 2437 | { |
| 2438 | "id": "RAD1", |
| 2439 | "name": "RADICAL1-RAD1" |
| 2440 | }, |
| 2441 | { |
| 2442 | "id": "RJN1", |
| 2443 | "name": "RJNRBZAW-RJN1" |
| 2444 | }, |
| 2445 | { |
| 2446 | "id": "SAA13", |
| 2447 | "name": "SAIT1AA9-SAA13" |
| 2448 | }, |
| 2449 | { |
| 2450 | "id": "SAA14", |
| 2451 | "name": "SAIT1AA9-SAA14" |
| 2452 | }, |
| 2453 | { |
| 2454 | "id": "SDD81", |
| 2455 | "name": "SAIT1DD6-SDD81" |
| 2456 | }, |
| 2457 | { |
| 2458 | "id": "SDD82", |
| 2459 | "name": "SAIT1DD9-SDD82" |
| 2460 | }, |
| 2461 | { |
| 2462 | "id": "SAA11", |
| 2463 | "name": "SAIT9AA2-SAA11" |
| 2464 | }, |
| 2465 | { |
| 2466 | "id": "SAA80", |
| 2467 | "name": "SAIT9AA3-SAA80" |
| 2468 | }, |
| 2469 | { |
| 2470 | "id": "SAA12", |
| 2471 | "name": "SAIT9AF8-SAA12" |
| 2472 | }, |
| 2473 | { |
| 2474 | "id": "SCC80", |
| 2475 | "name": "SAIT9CC3-SCC80" |
| 2476 | }, |
| 2477 | { |
| 2478 | "id": "ATL75", |
| 2479 | "name": "SANAAIRE-ATL75" |
| 2480 | }, |
| 2481 | { |
| 2482 | "id": "ICC1", |
| 2483 | "name": "SANJITAT-ICC1" |
| 2484 | }, |
| 2485 | { |
| 2486 | "id": "SCK1", |
| 2487 | "name": "SCKSCKSK-SCK1" |
| 2488 | }, |
| 2489 | { |
| 2490 | "id": "EHH78", |
| 2491 | "name": "SDCSHHH5-EHH78" |
| 2492 | }, |
| 2493 | { |
| 2494 | "id": "SAA78", |
| 2495 | "name": "SDCTAAA1-SAA78" |
| 2496 | }, |
| 2497 | { |
| 2498 | "id": "SAX78", |
| 2499 | "name": "SDCTAXG1-SAX78" |
| 2500 | }, |
| 2501 | { |
| 2502 | "id": "SBX78", |
| 2503 | "name": "SDCTBXG1-SBX78" |
| 2504 | }, |
| 2505 | { |
| 2506 | "id": "SEE78", |
| 2507 | "name": "SDCTEEE4-SEE78" |
| 2508 | }, |
| 2509 | { |
| 2510 | "id": "SGG78", |
| 2511 | "name": "SDCTGGG1-SGG78" |
| 2512 | }, |
| 2513 | { |
| 2514 | "id": "SXB78", |
| 2515 | "name": "SDCTGXB1-SXB78" |
| 2516 | }, |
| 2517 | { |
| 2518 | "id": "SJJ78", |
| 2519 | "name": "SDCTJJJ1-SJJ78" |
| 2520 | }, |
| 2521 | { |
| 2522 | "id": "SKK78", |
| 2523 | "name": "SDCTKKK1-SKK78" |
| 2524 | }, |
| 2525 | { |
| 2526 | "id": "SLF78", |
| 2527 | "name": "SDCTLFN1-SLF78" |
| 2528 | }, |
| 2529 | { |
| 2530 | "id": "SLL78", |
| 2531 | "name": "SDCTLLL1-SLL78" |
| 2532 | }, |
| 2533 | { |
| 2534 | "id": "MAD11", |
| 2535 | "name": "SDFQWGKL-MAD11" |
| 2536 | }, |
| 2537 | { |
| 2538 | "id": "HGD1", |
| 2539 | "name": "SDFQWHGD-HGD1" |
| 2540 | }, |
| 2541 | { |
| 2542 | "id": "SBB78", |
| 2543 | "name": "SDIT1BBB-SBB78" |
| 2544 | }, |
| 2545 | { |
| 2546 | "id": "SDG78", |
| 2547 | "name": "SDIT1BDG-SDG78" |
| 2548 | }, |
| 2549 | { |
| 2550 | "id": "SBU78", |
| 2551 | "name": "SDIT1BUB-SBU78" |
| 2552 | }, |
| 2553 | { |
| 2554 | "id": "SHH78", |
| 2555 | "name": "SDIT1HHH-SHH78" |
| 2556 | }, |
| 2557 | { |
| 2558 | "id": "SJU78", |
| 2559 | "name": "SDIT1JUB-SJU78" |
| 2560 | }, |
| 2561 | { |
| 2562 | "id": "SNA1", |
| 2563 | "name": "SNANTXCA-SNA1" |
| 2564 | }, |
| 2565 | { |
| 2566 | "id": "SAM1", |
| 2567 | "name": "SNDGCA64-SAN1" |
| 2568 | }, |
| 2569 | { |
| 2570 | "id": "SNG1", |
| 2571 | "name": "SNGPSIAU-SNG1" |
| 2572 | }, |
| 2573 | { |
| 2574 | "id": "SSA56", |
| 2575 | "name": "SSIT2AA7-SSA56" |
| 2576 | }, |
| 2577 | { |
| 2578 | "id": "STG1", |
| 2579 | "name": "STTGGE62-STG1" |
| 2580 | }, |
| 2581 | { |
| 2582 | "id": "STT1", |
| 2583 | "name": "STTLWA02-STT1" |
| 2584 | }, |
| 2585 | { |
| 2586 | "id": "SYD1", |
| 2587 | "name": "SYDNAUBV-SYD1" |
| 2588 | }, |
| 2589 | { |
| 2590 | "id": "ATL99", |
| 2591 | "name": "TEESTAAI-ATL43" |
| 2592 | }, |
| 2593 | { |
| 2594 | "id": "ATL98", |
| 2595 | "name": "TEESTAAI-ATL43" |
| 2596 | }, |
| 2597 | { |
| 2598 | "id": "ATL76", |
| 2599 | "name": "TELEPAAI-ATL76" |
| 2600 | }, |
| 2601 | { |
| 2602 | "id": "ABC14", |
| 2603 | "name": "TESAAISA-ABC14" |
| 2604 | }, |
| 2605 | { |
| 2606 | "id": "TAT33", |
| 2607 | "name": "TESAAISA-TAT33" |
| 2608 | }, |
| 2609 | { |
| 2610 | "id": "TAT34", |
| 2611 | "name": "TESAAISB-TAT34" |
| 2612 | }, |
| 2613 | { |
| 2614 | "id": "TAT37", |
| 2615 | "name": "TESAAISD-TAT37" |
| 2616 | }, |
| 2617 | { |
| 2618 | "id": "ATL62", |
| 2619 | "name": "TESSASCH-ATL62" |
| 2620 | }, |
| 2621 | { |
| 2622 | "id": "TLP1", |
| 2623 | "name": "TLPNXM18-TLP1" |
| 2624 | }, |
| 2625 | { |
| 2626 | "id": "SAN13", |
| 2627 | "name": "TOKYJPFA-SAN13" |
| 2628 | }, |
| 2629 | { |
| 2630 | "id": "TOK1", |
| 2631 | "name": "TOKYJPFA-TOK1" |
| 2632 | }, |
| 2633 | { |
| 2634 | "id": "TOL1", |
| 2635 | "name": "TOLDOH21-TOL1" |
| 2636 | }, |
| 2637 | { |
| 2638 | "id": "TOR1", |
| 2639 | "name": "TOROONXN-TOR1" |
| 2640 | }, |
| 2641 | { |
| 2642 | "id": "TOY1", |
| 2643 | "name": "TORYONNZ-TOY1" |
| 2644 | }, |
| 2645 | { |
| 2646 | "id": "ATL35", |
| 2647 | "name": "TTESSAAI-ATL35" |
| 2648 | }, |
| 2649 | { |
| 2650 | "id": "TUF1", |
| 2651 | "name": "TUFCLLI1-TUF1" |
| 2652 | }, |
| 2653 | { |
| 2654 | "id": "SAI1", |
| 2655 | "name": "UBEKQLPD-SAI1" |
| 2656 | }, |
| 2657 | { |
| 2658 | "id": "UUU4", |
| 2659 | "name": "UUUAAAUU-UUU4" |
| 2660 | }, |
| 2661 | { |
| 2662 | "id": "YYY1", |
| 2663 | "name": "UUUAIAAI-YYY1" |
| 2664 | }, |
| 2665 | { |
| 2666 | "id": "BAN1", |
| 2667 | "name": "VSDKYUTP-BAN1" |
| 2668 | }, |
| 2669 | { |
| 2670 | "id": "WAS1", |
| 2671 | "name": "WASHDCSW-WAS1" |
| 2672 | }, |
| 2673 | { |
| 2674 | "id": "APP1", |
| 2675 | "name": "WBHGTYUI-APP1" |
| 2676 | }, |
| 2677 | { |
| 2678 | "id": "SUL2", |
| 2679 | "name": "WERTYUJK-SUL2" |
| 2680 | }, |
| 2681 | { |
| 2682 | "id": "DEF2", |
| 2683 | "name": "WSBHGTYL-DEF2" |
| 2684 | }, |
| 2685 | { |
| 2686 | "id": "DHA12", |
| 2687 | "name": "WSXEDECF-DHA12" |
| 2688 | }, |
| 2689 | { |
| 2690 | "id": "MNT11", |
| 2691 | "name": "WSXEFBTH-MNT11" |
| 2692 | }, |
| 2693 | { |
| 2694 | "id": "RAJ1", |
| 2695 | "name": "YGBIJNLQ-RAJ1" |
| 2696 | }, |
| 2697 | { |
| 2698 | "id": "JAG1", |
| 2699 | "name": "YUDFJULP-JAG1" |
| 2700 | }, |
| 2701 | { |
| 2702 | "id": "ZEN1", |
| 2703 | "name": "ZENCLLI1-ZEN1" |
| 2704 | }, |
| 2705 | { |
| 2706 | "id": "ZOG1", |
| 2707 | "name": "ZOGASTRO-ZOG1" |
| 2708 | }, |
| 2709 | { |
| 2710 | "id": "SDE1", |
| 2711 | "name": "ZXCVBNMA-SDE1" |
| 2712 | }, |
| 2713 | { |
| 2714 | "id": "SIP1", |
| 2715 | "name": "ZXCVBNMK-SIP1" |
| 2716 | }, |
| 2717 | { |
| 2718 | "id": "JUL1", |
| 2719 | "name": "ZXCVBNMM-JUL1" |
| 2720 | }, |
| 2721 | { |
| 2722 | "id": "ERT1", |
| 2723 | "name": "ertclli1-ERT1" |
| 2724 | }, |
| 2725 | { |
| 2726 | "id": "IOP1", |
| 2727 | "name": "iopclli1-IOP1" |
| 2728 | }, |
| 2729 | { |
| 2730 | "id": "OPA1", |
| 2731 | "name": "opaclli1-OPA1" |
| 2732 | }, |
| 2733 | { |
| 2734 | "id": "RAI1", |
| 2735 | "name": "poiuytre-RAI1" |
| 2736 | }, |
| 2737 | { |
| 2738 | "id": "PUR1", |
| 2739 | "name": "purelyde-PUR1" |
| 2740 | }, |
| 2741 | { |
| 2742 | "id": "RTY1", |
| 2743 | "name": "rtyclli1-RTY1" |
| 2744 | }, |
| 2745 | { |
| 2746 | "id": "SDF1", |
| 2747 | "name": "sdfclli1-SDF1" |
| 2748 | }, |
| 2749 | { |
| 2750 | "id": "SSW56", |
| 2751 | "name": "ss8126GT-SSW56" |
| 2752 | }, |
| 2753 | { |
| 2754 | "id": "UIO1", |
| 2755 | "name": "uioclli1-UIO1" |
| 2756 | } |
| 2757 | ], |
| 2758 | "categoryParameters": { |
| 2759 | "owningEntityList": [ |
| 2760 | { |
| 2761 | "id": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc", |
| 2762 | "name": "WayneHolland" |
| 2763 | }, |
| 2764 | { |
| 2765 | "id": "Melissa", |
| 2766 | "name": "Melissa" |
| 2767 | }, |
| 2768 | { |
| 2769 | "id": "aaa1", |
| 2770 | "name": "aaa1" |
| 2771 | } |
| 2772 | ], |
| 2773 | "projectList": [ |
| 2774 | { |
| 2775 | "id": "WATKINS", |
| 2776 | "name": "WATKINS" |
| 2777 | }, |
| 2778 | { |
| 2779 | "id": "x1", |
| 2780 | "name": "x1" |
| 2781 | }, |
| 2782 | { |
| 2783 | "id": "yyy1", |
| 2784 | "name": "yyy1" |
| 2785 | } |
| 2786 | ], |
| 2787 | "lineOfBusinessList": [ |
| 2788 | { |
| 2789 | "id": "ONAP", |
| 2790 | "name": "ONAP" |
| 2791 | }, |
| 2792 | { |
| 2793 | "id": "zzz1", |
| 2794 | "name": "zzz1" |
| 2795 | } |
| 2796 | ], |
| 2797 | "platformList": [ |
| 2798 | { |
| 2799 | "id": "platform", |
| 2800 | "name": "platform" |
| 2801 | }, |
| 2802 | { |
| 2803 | "id": "xxx1", |
| 2804 | "name": "xxx1" |
| 2805 | } |
| 2806 | ] |
| 2807 | }, |
| 2808 | "type": "UPDATE_LCP_REGIONS_AND_TENANTS" |
| 2809 | } |
| 2810 | |
| 2811 | } |
| 2812 | } |