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