Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame^] | 1 | import {HttpClientTestingModule} from "@angular/common/http/testing"; |
| 2 | import {getTestBed, TestBed} from "@angular/core/testing"; |
| 3 | import {MockNgRedux, NgReduxTestingModule} from "@angular-redux/store/testing"; |
| 4 | import {SharedTreeService} from "./shared.tree.service"; |
| 5 | import {ObjectToInstanceTreeService} from "./objectToInstanceTree/objectToInstanceTree.service"; |
| 6 | import {ObjectToTreeService} from "./objectToTree.service"; |
| 7 | import {DefaultDataGeneratorService} from "../../../shared/services/defaultDataServiceGenerator/default.data.generator.service"; |
| 8 | import {DynamicInputsService} from "./dynamicInputs.service"; |
| 9 | import {DialogService} from "ng2-bootstrap-modal"; |
| 10 | import {VnfPopupService} from "../../../shared/components/genericFormPopup/genericFormServices/vnf/vnf.popup.service"; |
| 11 | import {BasicControlGenerator} from "../../../shared/components/genericForm/formControlsServices/basic.control.generator"; |
| 12 | import {AaiService} from "../../../shared/services/aaiService/aai.service"; |
| 13 | import {NetworkPopupService} from "../../../shared/components/genericFormPopup/genericFormServices/network/network.popup.service"; |
| 14 | import {NetworkControlGenerator} from "../../../shared/components/genericForm/formControlsServices/networkGenerator/network.control.generator"; |
| 15 | import {VfModulePopuopService} from "../../../shared/components/genericFormPopup/genericFormServices/vfModule/vfModule.popuop.service"; |
| 16 | import {VfModuleControlGenerator} from "../../../shared/components/genericForm/formControlsServices/vfModuleGenerator/vfModule.control.generator"; |
| 17 | import {VnfGroupControlGenerator} from "../../../shared/components/genericForm/formControlsServices/vnfGroupGenerator/vnfGroup.control.generator"; |
| 18 | import {FeatureFlagsService} from "../../../shared/services/featureFlag/feature-flags.service"; |
| 19 | import {VnfControlGenerator} from "../../../shared/components/genericForm/formControlsServices/vnfGenerator/vnf.control.generator"; |
| 20 | import {NgRedux} from "@angular-redux/store"; |
| 21 | import {GenericFormService} from "../../../shared/components/genericForm/generic-form.service"; |
| 22 | import {FormBuilder} from "@angular/forms"; |
| 23 | import {SdcUiComponentsModule} from "onap-ui-angular"; |
| 24 | import {LogService} from "../../../shared/utils/log/log.service"; |
| 25 | import {IframeService} from "../../../shared/utils/iframe.service"; |
| 26 | import {BasicPopupService} from "../../../shared/components/genericFormPopup/genericFormServices/basic.popup.service"; |
| 27 | import {VnfGroupPopupService} from "../../../shared/components/genericFormPopup/genericFormServices/vnfGroup/vnfGroup.popup.service"; |
| 28 | import {DuplicateService} from "../duplicate/duplicate.service"; |
| 29 | import {AppState} from "../../../shared/store/reducers"; |
| 30 | import {MessageBoxService} from "../../../shared/components/messageBox/messageBox.service"; |
| 31 | import {ErrorMsgService} from "../../../shared/components/error-msg/error-msg.service"; |
| 32 | import {AuditInfoModalComponent} from "../../../shared/components/auditInfoModal/auditInfoModal.component"; |
| 33 | import {ILevelNodeInfo} from "./models/basic.model.info"; |
| 34 | import {VnfModelInfo} from "./models/vnf/vnf.model.info"; |
| 35 | import {ServiceInstanceActions} from "../../../shared/models/serviceInstanceActions"; |
| 36 | import each from "jest-each"; |
| 37 | import {DrawingBoardModes} from "../drawing-board.modes"; |
| 38 | import {ComponentInfoService} from "../component-info/component-info.service"; |
| 39 | |
| 40 | class MockAppStore<T> { |
| 41 | getState() { |
| 42 | return getStore() |
| 43 | } |
| 44 | |
| 45 | dispatch() { |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | class MockVnfModelInfo<T> { |
| 50 | getModel() { |
| 51 | return {} |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | |
| 56 | describe('Shared Tree Service', () => { |
| 57 | let injector; |
| 58 | let service: SharedTreeService; |
| 59 | let _objectToInstanceTreeService: ObjectToInstanceTreeService; |
| 60 | let store: NgRedux<AppState>; |
| 61 | beforeAll(done => (async () => { |
| 62 | TestBed.configureTestingModule({ |
| 63 | imports: [HttpClientTestingModule, NgReduxTestingModule, SdcUiComponentsModule], |
| 64 | providers: [ |
| 65 | SharedTreeService, |
| 66 | ObjectToTreeService, |
| 67 | DefaultDataGeneratorService, |
| 68 | DialogService, |
| 69 | VnfPopupService, |
| 70 | BasicControlGenerator, |
| 71 | AaiService, |
| 72 | LogService, |
| 73 | BasicPopupService, |
| 74 | VnfGroupPopupService, |
| 75 | DuplicateService, |
| 76 | IframeService, |
| 77 | DynamicInputsService, |
| 78 | NetworkPopupService, |
| 79 | NetworkControlGenerator, |
| 80 | VfModulePopuopService, |
| 81 | VfModuleControlGenerator, |
| 82 | VnfGroupControlGenerator, |
| 83 | DialogService, |
| 84 | FeatureFlagsService, |
| 85 | VnfControlGenerator, |
| 86 | AaiService, |
| 87 | DialogService, |
| 88 | GenericFormService, |
| 89 | FormBuilder, |
| 90 | ErrorMsgService, |
| 91 | ObjectToInstanceTreeService, |
| 92 | ComponentInfoService, |
| 93 | {provide: NgRedux, useClass: MockAppStore} |
| 94 | ] |
| 95 | }); |
| 96 | await TestBed.compileComponents(); |
| 97 | injector = getTestBed(); |
| 98 | service = injector.get(SharedTreeService); |
| 99 | _objectToInstanceTreeService = injector.get(ObjectToInstanceTreeService); |
| 100 | store = injector.get(NgRedux); |
| 101 | })().then(done).catch(done.fail)); |
| 102 | |
| 103 | test('SharedTreeService should be defined', () => { |
| 104 | expect(service).toBeDefined(); |
| 105 | }); |
| 106 | |
| 107 | test('shouldShowDeleteInstanceWithChildrenModal should open modal if child exist with action create', () => { |
| 108 | jest.spyOn(MessageBoxService.openModal, 'next'); |
| 109 | let foo = () => { |
| 110 | |
| 111 | }; |
| 112 | let node = <any>{ |
| 113 | children: [{action: "Create"}, {action: "None"}], |
| 114 | data: { |
| 115 | typeName: 'VNF' |
| 116 | } |
| 117 | }; |
| 118 | service.shouldShowDeleteInstanceWithChildrenModal(node, "serviceModelId", foo); |
| 119 | expect(MessageBoxService.openModal.next).toHaveBeenCalled(); |
| 120 | }); |
| 121 | |
| 122 | test('openAuditInfoModal should open modal for failed instance', () => { |
| 123 | jest.spyOn(AuditInfoModalComponent.openInstanceAuditInfoModal, 'next'); |
| 124 | |
| 125 | let modelInfoServiceMock: ILevelNodeInfo = new VnfModelInfo(null, null, null, null, null, null, null, null, null, null); |
| 126 | const modelMock = {"a": "a"}; |
| 127 | const instanceMock = {"instance": "instance", "trackById": "123456789"}; |
| 128 | const instanceTypeMock = "instanceTypeMock"; |
| 129 | jest.spyOn(modelInfoServiceMock, 'getModel').mockReturnValue(modelMock); |
| 130 | let node = <any>{ |
| 131 | data: { |
| 132 | modelId: '6b528779-44a3-4472-bdff-9cd15ec93450', |
| 133 | trackById: '1245df21', |
| 134 | isFailed: true |
| 135 | } |
| 136 | }; |
| 137 | service.openAuditInfoModal(node, "serviceModelId", instanceMock, instanceTypeMock, <any>modelInfoServiceMock); |
| 138 | expect(AuditInfoModalComponent.openInstanceAuditInfoModal.next).toHaveBeenCalledWith( |
| 139 | { |
| 140 | "instance": instanceMock, |
| 141 | "instanceId": "serviceModelId", |
| 142 | "isInstanceFailed": node.data.isFailed, |
| 143 | "model": modelMock, |
| 144 | "trackById": instanceMock.trackById, |
| 145 | "type": instanceTypeMock |
| 146 | }); |
| 147 | }); |
| 148 | |
| 149 | test('shouldShowDeleteInstanceWithChildrfenModal should not open modal if all childs with action None', () => { |
| 150 | let foo = () => { |
| 151 | }; |
| 152 | spyOn(MessageBoxService.openModal, 'next'); |
| 153 | |
| 154 | let node = <any>{ |
| 155 | children: [{action: "None"}, {action: "None"}], |
| 156 | data: { |
| 157 | typeName: 'VNF' |
| 158 | } |
| 159 | }; |
| 160 | service.shouldShowDeleteInstanceWithChildrenModal(node, "serviceModelId", foo); |
| 161 | expect(MessageBoxService.openModal.next).not.toHaveBeenCalled(); |
| 162 | }); |
| 163 | |
| 164 | test('statusProperties should be prop on node according to node properties', () => { |
| 165 | let node = service.addingStatusProperty({orchStatus: 'completed', provStatus: 'inProgress', inMaint: false}); |
| 166 | expect(node.statusProperties).toBeDefined(); |
| 167 | expect(node.statusProperties).toEqual([Object({ |
| 168 | key: 'Prov Status:', |
| 169 | value: 'inProgress', |
| 170 | testId: 'provStatus' |
| 171 | }), Object({key: 'Orch Status:', value: 'completed', testId: 'orchStatus'})]); |
| 172 | node = service.addingStatusProperty({orchStatus: 'completed', provStatus: 'inProgress', inMaint: true}); |
| 173 | expect(node.statusProperties).toEqual([Object({ |
| 174 | key: 'Prov Status:', |
| 175 | value: 'inProgress', |
| 176 | testId: 'provStatus' |
| 177 | }), Object({key: 'Orch Status:', value: 'completed', testId: 'orchStatus'}), Object({ |
| 178 | key: 'In-maintenance', |
| 179 | value: '', |
| 180 | testId: 'inMaint' |
| 181 | })]); |
| 182 | }); |
| 183 | const enableRemoveAndEditItemsDataProvider = [ |
| 184 | ['Create action CREATE mode', DrawingBoardModes.CREATE ,ServiceInstanceActions.Create, true], |
| 185 | ['Create action VIEW mode',DrawingBoardModes.VIEW , ServiceInstanceActions.Create,false], |
| 186 | ['Create action RETRY_EDIT mode',DrawingBoardModes.RETRY_EDIT, ServiceInstanceActions.Create, true], |
| 187 | ['Create action EDIT mode',DrawingBoardModes.EDIT, ServiceInstanceActions.Create, true], |
| 188 | ['Create action RETRY mode',DrawingBoardModes.RETRY, ServiceInstanceActions.Create, false], |
| 189 | ['None action EDIT mode',DrawingBoardModes.EDIT, ServiceInstanceActions.None, false], |
| 190 | ['None action RETRY_EDIT mode', DrawingBoardModes.RETRY_EDIT, ServiceInstanceActions.None, false]]; |
| 191 | each(enableRemoveAndEditItemsDataProvider).test('shouldShowEditAndDelete if child exist with %s', (description, mode, action, enabled) => { |
| 192 | jest.spyOn(store, 'getState').mockReturnValue({ |
| 193 | global: { |
| 194 | drawingBoardStatus: mode |
| 195 | } |
| 196 | }); |
| 197 | let node = <any>{ |
| 198 | data:{ |
| 199 | action: action |
| 200 | }, |
| 201 | }; |
| 202 | let res = service.shouldShowRemoveAndEdit(node); |
| 203 | expect(res).toBe(enabled); |
| 204 | }); |
| 205 | }); |
| 206 | function generateService() { |
| 207 | return { |
| 208 | "vnfs": { |
| 209 | "2017-488_ADIOD-vPE 0": { |
| 210 | "inMaint": false, |
| 211 | "rollbackOnFailure": "true", |
| 212 | "originalName": "2017-488_ADIOD-vPE 0", |
| 213 | "isMissingData": false, |
| 214 | "trackById": "stigekyxrqi", |
| 215 | "vfModules": { |
| 216 | "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0": { |
| 217 | "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0gytfi": { |
| 218 | "isMissingData": false, |
| 219 | "sdncPreReload": null, |
| 220 | "modelInfo": { |
| 221 | "modelType": "VFmodule", |
| 222 | "modelInvariantId": "b34833bb-6aa9-4ad6-a831-70b06367a091", |
| 223 | "modelVersionId": "f8360508-3f17-4414-a2ed-6bc71161e8db", |
| 224 | "modelName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0", |
| 225 | "modelVersion": "5", |
| 226 | "modelCustomizationId": "a55961b2-2065-4ab0-a5b7-2fcee1c227e3", |
| 227 | "modelCustomizationName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0" |
| 228 | }, |
| 229 | "instanceParams": [{}], |
| 230 | "trackById": "3oj23o7nupo" |
| 231 | } |
| 232 | } |
| 233 | }, |
| 234 | "vnfStoreKey": "2017-488_ADIOD-vPE 0", |
| 235 | "uuid": "69e09f68-8b63-4cc9-b9ff-860960b5db09", |
| 236 | "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c", |
| 237 | "lcpCloudRegionId": "JANET25", |
| 238 | "tenantId": "092eb9e8e4b7412e8787dd091bc58e86", |
| 239 | "lineOfBusiness": "ONAP", |
| 240 | "platformName": "xxx1", |
| 241 | "modelInfo": { |
| 242 | "modelInvariantId": "72e465fe-71b1-4e7b-b5ed-9496118ff7a8", |
| 243 | "modelVersionId": "69e09f68-8b63-4cc9-b9ff-860960b5db09", |
| 244 | "modelName": "2017-488_ADIOD-vPE", |
| 245 | "modelVersion": "5.0", |
| 246 | "modelCustomizationName": "2017-488_ADIOD-vPE 0", |
| 247 | "modelCustomizationId": "1da7b585-5e61-4993-b95e-8e6606c81e45", |
| 248 | "uuid": "69e09f68-8b63-4cc9-b9ff-860960b5db09" |
| 249 | }, |
| 250 | "legacyRegion": "11111111", |
| 251 | "instanceParams": [{}] |
| 252 | }, |
| 253 | "2017-388_ADIOD-vPE 0": { |
| 254 | "inMaint": false, |
| 255 | "rollbackOnFailure": "true", |
| 256 | "originalName": "2017-388_ADIOD-vPE 0", |
| 257 | "isMissingData": false, |
| 258 | "trackById": "nib719t5vca", |
| 259 | "vfModules": {}, |
| 260 | "vnfStoreKey": "2017-388_ADIOD-vPE 0", |
| 261 | "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c", |
| 262 | "lcpCloudRegionId": "JANET25", |
| 263 | "legacyRegion": "11111", |
| 264 | "tenantId": "092eb9e8e4b7412e8787dd091bc58e86", |
| 265 | "platformName": "platform", |
| 266 | "lineOfBusiness": "zzz1", |
| 267 | "instanceParams": [{}], |
| 268 | "modelInfo": { |
| 269 | "modelInvariantId": "72e465fe-71b1-4e7b-b5ed-9496118ff7a8", |
| 270 | "modelVersionId": "afacccf6-397d-45d6-b5ae-94c39734b168", |
| 271 | "modelName": "2017-388_ADIOD-vPE", |
| 272 | "modelVersion": "4.0", |
| 273 | "modelCustomizationId": "b3c76f73-eeb5-4fb6-9d31-72a889f1811c", |
| 274 | "modelCustomizationName": "2017-388_ADIOD-vPE 0", |
| 275 | "uuid": "afacccf6-397d-45d6-b5ae-94c39734b168" |
| 276 | }, |
| 277 | "uuid": "afacccf6-397d-45d6-b5ae-94c39734b168" |
| 278 | }, |
| 279 | "2017-388_ADIOD-vPE 1": { |
| 280 | "inMaint": false, |
| 281 | "rollbackOnFailure": "true", |
| 282 | "originalName": "2017-388_ADIOD-vPE 1", |
| 283 | "isMissingData": false, |
| 284 | "trackById": "cv7l1ak8vpe", |
| 285 | "vfModules": {}, |
| 286 | "vnfStoreKey": "2017-388_ADIOD-vPE 1", |
| 287 | "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c", |
| 288 | "lcpCloudRegionId": "JANET25", |
| 289 | "legacyRegion": "123", |
| 290 | "tenantId": "092eb9e8e4b7412e8787dd091bc58e86", |
| 291 | "platformName": "platform", |
| 292 | "lineOfBusiness": "ONAP", |
| 293 | "instanceParams": [{}], |
| 294 | "modelInfo": { |
| 295 | "modelInvariantId": "00beb8f9-6d39-452f-816d-c709b9cbb87d", |
| 296 | "modelVersionId": "0903e1c0-8e03-4936-b5c2-260653b96413", |
| 297 | "modelName": "2017-388_ADIOD-vPE", |
| 298 | "modelVersion": "1.0", |
| 299 | "modelCustomizationId": "280dec31-f16d-488b-9668-4aae55d6648a", |
| 300 | "modelCustomizationName": "2017-388_ADIOD-vPE 1", |
| 301 | "uuid": "0903e1c0-8e03-4936-b5c2-260653b96413" |
| 302 | }, |
| 303 | "uuid": "0903e1c0-8e03-4936-b5c2-260653b96413" |
| 304 | } |
| 305 | }, |
| 306 | "instanceParams": [{}], |
| 307 | "validationCounter": 0, |
| 308 | "existingNames": {"yoav": ""}, |
| 309 | "existingVNFCounterMap": { |
| 310 | "69e09f68-8b63-4cc9-b9ff-860960b5db09": 1, |
| 311 | "afacccf6-397d-45d6-b5ae-94c39734b168": 1, |
| 312 | "0903e1c0-8e03-4936-b5c2-260653b96413": 1 |
| 313 | }, |
| 314 | "existingVnfGroupCounterMap": { |
| 315 | "daeb6568-cef8-417f-9075-ed259ce59f48": 0, |
| 316 | "c2b300e6-45de-4e5e-abda-3032bee2de56": -1 |
| 317 | }, |
| 318 | "existingNetworksCounterMap": {"ddc3f20c-08b5-40fd-af72-c6d14636b986": 1}, |
| 319 | "networks": { |
| 320 | "ExtVL 0": { |
| 321 | "inMaint": false, |
| 322 | "rollbackOnFailure": "true", |
| 323 | "originalName": "ExtVL 0", |
| 324 | "isMissingData": false, |
| 325 | "trackById": "s6okajvv2n8", |
| 326 | "networkStoreKey": "ExtVL 0", |
| 327 | "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c", |
| 328 | "lcpCloudRegionId": "JANET25", |
| 329 | "legacyRegion": "12355555", |
| 330 | "tenantId": "092eb9e8e4b7412e8787dd091bc58e86", |
| 331 | "platformName": "platform", |
| 332 | "lineOfBusiness": null, |
| 333 | "instanceParams": [{}], |
| 334 | "modelInfo": { |
| 335 | "modelInvariantId": "379f816b-a7aa-422f-be30-17114ff50b7c", |
| 336 | "modelVersionId": "ddc3f20c-08b5-40fd-af72-c6d14636b986", |
| 337 | "modelName": "ExtVL", |
| 338 | "modelVersion": "37.0", |
| 339 | "modelCustomizationId": "94fdd893-4a36-4d70-b16a-ec29c54c184f", |
| 340 | "modelCustomizationName": "ExtVL 0", |
| 341 | "uuid": "ddc3f20c-08b5-40fd-af72-c6d14636b986" |
| 342 | }, |
| 343 | "uuid": "ddc3f20c-08b5-40fd-af72-c6d14636b986" |
| 344 | } |
| 345 | }, |
| 346 | "vnfGroups": { |
| 347 | "groupingservicefortest..ResourceInstanceGroup..0": { |
| 348 | "inMaint": false, |
| 349 | "rollbackOnFailure": "true", |
| 350 | "originalName": "groupingservicefortest..ResourceInstanceGroup..0", |
| 351 | "isMissingData": false, |
| 352 | "trackById": "se0obn93qq", |
| 353 | "vnfGroupStoreKey": "groupingservicefortest..ResourceInstanceGroup..0", |
| 354 | "instanceName": "groupingservicefortestResourceInstanceGroup0", |
| 355 | "instanceParams": [{}], |
| 356 | "modelInfo": { |
| 357 | "modelInvariantId": "4bb2e27e-ddab-4790-9c6d-1f731bc14a45", |
| 358 | "modelVersionId": "daeb6568-cef8-417f-9075-ed259ce59f48", |
| 359 | "modelName": "groupingservicefortest..ResourceInstanceGroup..0", |
| 360 | "modelVersion": "1", |
| 361 | "modelCustomizationName": "groupingservicefortest..ResourceInstanceGroup..0", |
| 362 | "uuid": "daeb6568-cef8-417f-9075-ed259ce59f48" |
| 363 | }, |
| 364 | "uuid": "daeb6568-cef8-417f-9075-ed259ce59f48" |
| 365 | } |
| 366 | }, |
| 367 | "instanceName": "yoav", |
| 368 | "globalSubscriberId": "e433710f-9217-458d-a79d-1c7aff376d89", |
| 369 | "subscriptionServiceType": "TYLER SILVIA", |
| 370 | "owningEntityId": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc", |
| 371 | "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c", |
| 372 | "lcpCloudRegionId": "JANET25", |
| 373 | "tenantId": "092eb9e8e4b7412e8787dd091bc58e86", |
| 374 | "aicZoneId": "ATL53", |
| 375 | "pause": null, |
| 376 | "projectName": "WATKINS", |
| 377 | "rollbackOnFailure": "true", |
| 378 | "bulkSize": 1, |
| 379 | "aicZoneName": "AAIATLTE-ATL53", |
| 380 | "owningEntityName": "WayneHolland", |
| 381 | "testApi": "VNF_API", |
| 382 | "isEcompGeneratedNaming": false, |
| 383 | "tenantName": "USP-SIP-IC-24335-T-01", |
| 384 | "modelInfo": { |
| 385 | "modelInvariantId": "cdb90b57-ed78-4d44-a5b4-7f43a02ec632", |
| 386 | "modelVersionId": "1a80c596-27e5-4ca9-b5bb-e03a7fd4c0fd", |
| 387 | "modelName": "action-data", |
| 388 | "modelVersion": "1.0", |
| 389 | "uuid": "1a80c596-27e5-4ca9-b5bb-e03a7fd4c0fd" |
| 390 | }, |
| 391 | "isALaCarte": false, |
| 392 | "name": "action-data", |
| 393 | "version": "1.0", |
| 394 | "description": "ADIOD vMX vPE based on Juniper 17.2 release. Updated with updated VF for v8.0 of VLM", |
| 395 | "category": "Network L1-3", |
| 396 | "uuid": "1a80c596-27e5-4ca9-b5bb-e03a7fd4c0fd", |
| 397 | "invariantUuid": "cdb90b57-ed78-4d44-a5b4-7f43a02ec632", |
| 398 | "serviceType": "pnf", |
| 399 | "serviceRole": "Testing", |
| 400 | "vidNotions": {"instantiationUI": "legacy", "modelCategory": "other", "viewEditUI": "legacy"}, |
| 401 | "isMultiStepDesign": true |
| 402 | }; |
| 403 | } |
| 404 | |
| 405 | function getStore() { |
| 406 | return { |
| 407 | "global": { |
| 408 | "name": null, |
| 409 | "flags": { |
| 410 | "CREATE_INSTANCE_TEST": false, |
| 411 | "EMPTY_DRAWING_BOARD_TEST": false, |
| 412 | "FLAG_NETWORK_TO_ASYNC_INSTANTIATION": false, |
| 413 | "FLAG_ASYNC_INSTANTIATION": true, |
| 414 | "FLAG_ASYNC_JOBS": true, |
| 415 | "FLAG_ADD_MSO_TESTAPI_FIELD": true, |
| 416 | "FLAG_UNASSIGN_SERVICE": true, |
| 417 | "FLAG_SERVICE_MODEL_CACHE": true, |
| 418 | "FLAG_COLLECTION_RESOURCE_SUPPORT": true, |
| 419 | "FLAG_SHOW_ASSIGNMENTS": true, |
| 420 | "FLAG_FABRIC_CONFIGURATION_ASSIGNMENTS": true, |
| 421 | "FLAG_DUPLICATE_VNF": true, |
| 422 | "FLAG_DEFAULT_VNF": true, |
| 423 | "FLAG_SETTING_DEFAULTS_IN_DRAWING_BOARD": true, |
| 424 | "FLAG_A_LA_CARTE_AUDIT_INFO": true, |
| 425 | "FLAG_1810_CR_ADD_CLOUD_OWNER_TO_MSO_REQUEST": true, |
| 426 | "FLAG_PRESENT_PROVIDER_NETWORKS_ASSOCIATIONS": true, |
| 427 | "FLAG_1810_CR_SOFT_DELETE_ALACARTE_VF_MODULE": true, |
| 428 | "FLAG_1902_NEW_VIEW_EDIT": true, |
| 429 | "FLAG_1810_IDENTIFY_SERVICE_FOR_NEW_UI": false, |
| 430 | "FLAG_1902_VNF_GROUPING": true, |
| 431 | "FLAG_SHOW_VERIFY_SERVICE": true, |
| 432 | "FLAG_ASYNC_ALACARTE_VFMODULE": true, |
| 433 | "FLAG_ASYNC_ALACARTE_VNF": true, |
| 434 | "FLAG_SHIFT_VFMODULE_PARAMS_TO_VNF": true, |
| 435 | "FLAG_1810_AAI_LOCAL_CACHE": true, |
| 436 | "FLAG_EXP_USE_DEFAULT_HOST_NAME_VERIFIER": false, |
| 437 | "FLAG_EXP_ANY_ALACARTE_NEW_INSTANTIATION_UI": false, |
| 438 | "FLAG_SUPPLEMENTARY_FILE": true, |
| 439 | "FLAG_5G_IN_NEW_INSTANTIATION_UI": true, |
| 440 | "FLAG_RESTRICTED_SELECT": false, |
| 441 | "FLAG_1810_CR_LET_SELECTING_COLLECTOR_TYPE_UNCONDITIONALLY": true |
| 442 | }, |
| 443 | "drawingBoardStatus": "VIEW", |
| 444 | "type": "UPDATE_DRAWING_BOARD_STATUS" |
| 445 | }, |
| 446 | "service": { |
| 447 | "serviceHierarchy": { |
| 448 | "1a80c596-27e5-4ca9-b5bb-e03a7fd4c0fd": { |
| 449 | "service": { |
| 450 | "uuid": "1a80c596-27e5-4ca9-b5bb-e03a7fd4c0fd", |
| 451 | "invariantUuid": "cdb90b57-ed78-4d44-a5b4-7f43a02ec632", |
| 452 | "name": "action-data", |
| 453 | "version": "1.0", |
| 454 | "toscaModelURL": null, |
| 455 | "category": "Network L1-3", |
| 456 | "serviceType": "pnf", |
| 457 | "serviceRole": "Testing", |
| 458 | "description": "ADIOD vMX vPE based on Juniper 17.2 release. Updated with updated VF for v8.0 of VLM", |
| 459 | "serviceEcompNaming": "false", |
| 460 | "instantiationType": "Macro", |
| 461 | "inputs": {}, |
| 462 | "vidNotions": {"instantiationUI": "legacy", "modelCategory": "other", "viewEditUI": "legacy"} |
| 463 | }, |
| 464 | "vnfs": { |
| 465 | "2017-388_ADIOD-vPE 1": { |
| 466 | "uuid": "0903e1c0-8e03-4936-b5c2-260653b96413", |
| 467 | "invariantUuid": "00beb8f9-6d39-452f-816d-c709b9cbb87d", |
| 468 | "description": "Name ADIOD vPE Description The provider edge function for the ADIOD service supported by the Junipers VMX product Category Router Vendor Juniper Vendor Release Code 17.2 Owners Mary Fragale. Updated 9-25 to use v8.0 of the Juniper Valid 2 VLM", |
| 469 | "name": "2017-388_ADIOD-vPE", |
| 470 | "version": "1.0", |
| 471 | "customizationUuid": "280dec31-f16d-488b-9668-4aae55d6648a", |
| 472 | "inputs": {}, |
| 473 | "commands": {}, |
| 474 | "properties": { |
| 475 | "vmxvre_retype": "RE-VMX", |
| 476 | "vnf_config_template_version": "get_input:2017488_adiodvpe0_vnf_config_template_version", |
| 477 | "sriov44_net_id": "48d399b3-11ee-48a8-94d2-f0ea94d6be8d", |
| 478 | "int_ctl_net_id": "2f323477-6936-4d01-ac53-d849430281d9", |
| 479 | "vmxvpfe_sriov41_0_port_mac": "00:11:22:EF:AC:DF", |
| 480 | "int_ctl_net_name": "VMX-INTXI", |
| 481 | "vmx_int_ctl_prefix": "10.0.0.10", |
| 482 | "sriov43_net_id": "da349ca1-6de9-4548-be88-2d88e99bfef5", |
| 483 | "sriov42_net_id": "760669ba-013d-4d9b-b0e7-4151fe2e6279", |
| 484 | "sriov41_net_id": "25ad52d5-c165-40f8-b3b0-ddfc2373280a", |
| 485 | "nf_type": "vPE", |
| 486 | "vmxvpfe_int_ctl_ip_1": "10.0.0.10", |
| 487 | "is_AVPN_service": "false", |
| 488 | "vmx_RSG_name": "vREXI-affinity", |
| 489 | "vmx_int_ctl_forwarding": "l2", |
| 490 | "vmxvre_oam_ip_0": "10.0.0.10", |
| 491 | "vmxvpfe_sriov44_0_port_mac": "00:11:22:EF:AC:DF", |
| 492 | "vmxvpfe_sriov41_0_port_vlanstrip": "false", |
| 493 | "vmxvpfe_sriov42_0_port_vlanfilter": "4001", |
| 494 | "vmxvpfe_sriov44_0_port_unknownunicastallow": "true", |
| 495 | "vmxvre_image_name_0": "VRE-ENGINE_17.2-S2.1.qcow2", |
| 496 | "vmxvre_instance": "0", |
| 497 | "vmxvpfe_sriov43_0_port_mac": "00:11:22:EF:AC:DF", |
| 498 | "vmxvre_flavor_name": "ns.c1r16d32.v5", |
| 499 | "vmxvpfe_volume_size_0": "40.0", |
| 500 | "vmxvpfe_sriov43_0_port_vlanfilter": "4001", |
| 501 | "nf_naming": "{ecomp_generated_naming=true}", |
| 502 | "multi_stage_design": "true", |
| 503 | "nf_naming_code": "Navneet", |
| 504 | "vmxvre_name_0": "vREXI", |
| 505 | "vmxvpfe_sriov42_0_port_vlanstrip": "false", |
| 506 | "vmxvpfe_volume_name_0": "vPFEXI_FBVolume", |
| 507 | "vmx_RSG_id": "bd89a33c-13c3-4a04-8fde-1a57eb123141", |
| 508 | "vmxvpfe_image_name_0": "VPE_ROUTING-ENGINE_17.2R1-S2.1.qcow2", |
| 509 | "vmxvpfe_sriov43_0_port_unknownunicastallow": "true", |
| 510 | "vmxvpfe_sriov44_0_port_unknownmulticastallow": "true", |
| 511 | "vmxvre_console": "vidconsole", |
| 512 | "vmxvpfe_sriov44_0_port_vlanfilter": "4001", |
| 513 | "vmxvpfe_sriov42_0_port_mac": "00:11:22:EF:AC:DF", |
| 514 | "vmxvpfe_volume_id_0": "47cede15-da2f-4397-a101-aa683220aff3", |
| 515 | "vmxvpfe_sriov42_0_port_unknownmulticastallow": "true", |
| 516 | "vmxvpfe_sriov44_0_port_vlanstrip": "false", |
| 517 | "vf_module_id": "123", |
| 518 | "nf_function": "JAI", |
| 519 | "vmxvpfe_sriov43_0_port_unknownmulticastallow": "true", |
| 520 | "vmxvre_int_ctl_ip_0": "10.0.0.10", |
| 521 | "ecomp_generated_naming": "true", |
| 522 | "AIC_CLLI": "get_input:2017488_adiodvpe0_AIC_CLLI", |
| 523 | "vnf_name": "mtnj309me6vre", |
| 524 | "vmxvpfe_sriov41_0_port_unknownunicastallow": "true", |
| 525 | "vmxvre_volume_type_1": "HITACHI", |
| 526 | "vmxvpfe_sriov44_0_port_broadcastallow": "true", |
| 527 | "vmxvre_volume_type_0": "HITACHI", |
| 528 | "vmxvpfe_volume_type_0": "HITACHI", |
| 529 | "vmxvpfe_sriov43_0_port_broadcastallow": "true", |
| 530 | "bandwidth_units": "get_input:2017488_adiodvpe0_bandwidth_units", |
| 531 | "vnf_id": "123", |
| 532 | "vmxvre_oam_prefix": "24", |
| 533 | "availability_zone_0": "mtpocfo-kvm-az01", |
| 534 | "ASN": "get_input:2017488_adiodvpe0_ASN", |
| 535 | "vmxvre_chassis_i2cid": "161", |
| 536 | "vmxvpfe_name_0": "vPFEXI", |
| 537 | "bandwidth": "get_input:2017488_adiodvpe0_bandwidth", |
| 538 | "availability_zone_max_count": "1", |
| 539 | "vmxvre_volume_size_0": "45.0", |
| 540 | "vmxvre_volume_size_1": "50.0", |
| 541 | "vmxvpfe_sriov42_0_port_broadcastallow": "true", |
| 542 | "vmxvre_oam_gateway": "10.0.0.10", |
| 543 | "vmxvre_volume_name_1": "vREXI_FAVolume", |
| 544 | "vmxvre_ore_present": "0", |
| 545 | "vmxvre_volume_name_0": "vREXI_FBVolume", |
| 546 | "vmxvre_type": "0", |
| 547 | "vnf_instance_name": "get_input:2017488_adiodvpe0_vnf_instance_name", |
| 548 | "vmxvpfe_sriov41_0_port_unknownmulticastallow": "true", |
| 549 | "oam_net_id": "b95eeb1d-d55d-4827-abb4-8ebb94941429", |
| 550 | "vmx_int_ctl_len": "24", |
| 551 | "vmxvpfe_sriov43_0_port_vlanstrip": "false", |
| 552 | "vmxvpfe_sriov41_0_port_broadcastallow": "true", |
| 553 | "vmxvre_volume_id_1": "6e86797e-03cd-4fdc-ba72-2957119c746d", |
| 554 | "vmxvpfe_sriov41_0_port_vlanfilter": "4001", |
| 555 | "nf_role": "Testing", |
| 556 | "vmxvre_volume_id_0": "f4eacb79-f687-4e9d-b760-21847c8bb15a", |
| 557 | "vmxvpfe_sriov42_0_port_unknownunicastallow": "true", |
| 558 | "vmxvpfe_flavor_name": "ns.c20r16d25.v5" |
| 559 | }, |
| 560 | "type": "VF", |
| 561 | "modelCustomizationName": "2017-388_ADIOD-vPE 1", |
| 562 | "vfModules": {}, |
| 563 | "volumeGroups": {}, |
| 564 | "vfcInstanceGroups": {} |
| 565 | }, |
| 566 | "2017-388_ADIOD-vPE 0": { |
| 567 | "uuid": "afacccf6-397d-45d6-b5ae-94c39734b168", |
| 568 | "invariantUuid": "72e465fe-71b1-4e7b-b5ed-9496118ff7a8", |
| 569 | "description": "Name ADIOD vPE Description The provider edge function for the ADIOD service supported by the Junipers VMX product Category Router Vendor Juniper Vendor Release Code 17.2 Owners Mary Fragale. Updated 9-25 to use v8.0 of the Juniper Valid 2 VLM", |
| 570 | "name": "2017-388_ADIOD-vPE", |
| 571 | "version": "4.0", |
| 572 | "customizationUuid": "b3c76f73-eeb5-4fb6-9d31-72a889f1811c", |
| 573 | "inputs": {}, |
| 574 | "commands": {}, |
| 575 | "properties": { |
| 576 | "vmxvre_retype": "RE-VMX", |
| 577 | "vnf_config_template_version": "get_input:2017488_adiodvpe0_vnf_config_template_version", |
| 578 | "sriov44_net_id": "48d399b3-11ee-48a8-94d2-f0ea94d6be8d", |
| 579 | "int_ctl_net_id": "2f323477-6936-4d01-ac53-d849430281d9", |
| 580 | "vmxvpfe_sriov41_0_port_mac": "00:11:22:EF:AC:DF", |
| 581 | "int_ctl_net_name": "VMX-INTXI", |
| 582 | "vmx_int_ctl_prefix": "10.0.0.10", |
| 583 | "sriov43_net_id": "da349ca1-6de9-4548-be88-2d88e99bfef5", |
| 584 | "sriov42_net_id": "760669ba-013d-4d9b-b0e7-4151fe2e6279", |
| 585 | "sriov41_net_id": "25ad52d5-c165-40f8-b3b0-ddfc2373280a", |
| 586 | "nf_type": "vPE", |
| 587 | "vmxvpfe_int_ctl_ip_1": "10.0.0.10", |
| 588 | "is_AVPN_service": "false", |
| 589 | "vmx_RSG_name": "vREXI-affinity", |
| 590 | "vmx_int_ctl_forwarding": "l2", |
| 591 | "vmxvre_oam_ip_0": "10.0.0.10", |
| 592 | "vmxvpfe_sriov44_0_port_mac": "00:11:22:EF:AC:DF", |
| 593 | "vmxvpfe_sriov41_0_port_vlanstrip": "false", |
| 594 | "vmxvpfe_sriov42_0_port_vlanfilter": "4001", |
| 595 | "vmxvpfe_sriov44_0_port_unknownunicastallow": "true", |
| 596 | "vmxvre_image_name_0": "VRE-ENGINE_17.2-S2.1.qcow2", |
| 597 | "vmxvre_instance": "0", |
| 598 | "vmxvpfe_sriov43_0_port_mac": "00:11:22:EF:AC:DF", |
| 599 | "vmxvre_flavor_name": "ns.c1r16d32.v5", |
| 600 | "vmxvpfe_volume_size_0": "40.0", |
| 601 | "vmxvpfe_sriov43_0_port_vlanfilter": "4001", |
| 602 | "nf_naming": "{ecomp_generated_naming=true}", |
| 603 | "multi_stage_design": "true", |
| 604 | "nf_naming_code": "Navneet", |
| 605 | "vmxvre_name_0": "vREXI", |
| 606 | "vmxvpfe_sriov42_0_port_vlanstrip": "false", |
| 607 | "vmxvpfe_volume_name_0": "vPFEXI_FBVolume", |
| 608 | "vmx_RSG_id": "bd89a33c-13c3-4a04-8fde-1a57eb123141", |
| 609 | "vmxvpfe_image_name_0": "VPE_ROUTING-ENGINE_17.2R1-S2.1.qcow2", |
| 610 | "vmxvpfe_sriov43_0_port_unknownunicastallow": "true", |
| 611 | "vmxvpfe_sriov44_0_port_unknownmulticastallow": "true", |
| 612 | "vmxvre_console": "vidconsole", |
| 613 | "vmxvpfe_sriov44_0_port_vlanfilter": "4001", |
| 614 | "vmxvpfe_sriov42_0_port_mac": "00:11:22:EF:AC:DF", |
| 615 | "vmxvpfe_volume_id_0": "47cede15-da2f-4397-a101-aa683220aff3", |
| 616 | "vmxvpfe_sriov42_0_port_unknownmulticastallow": "true", |
| 617 | "vmxvpfe_sriov44_0_port_vlanstrip": "false", |
| 618 | "vf_module_id": "123", |
| 619 | "nf_function": "JAI", |
| 620 | "vmxvpfe_sriov43_0_port_unknownmulticastallow": "true", |
| 621 | "vmxvre_int_ctl_ip_0": "10.0.0.10", |
| 622 | "ecomp_generated_naming": "true", |
| 623 | "AIC_CLLI": "get_input:2017488_adiodvpe0_AIC_CLLI", |
| 624 | "vnf_name": "mtnj309me6vre", |
| 625 | "vmxvpfe_sriov41_0_port_unknownunicastallow": "true", |
| 626 | "vmxvre_volume_type_1": "HITACHI", |
| 627 | "vmxvpfe_sriov44_0_port_broadcastallow": "true", |
| 628 | "vmxvre_volume_type_0": "HITACHI", |
| 629 | "vmxvpfe_volume_type_0": "HITACHI", |
| 630 | "vmxvpfe_sriov43_0_port_broadcastallow": "true", |
| 631 | "bandwidth_units": "get_input:2017488_adiodvpe0_bandwidth_units", |
| 632 | "vnf_id": "123", |
| 633 | "vmxvre_oam_prefix": "24", |
| 634 | "availability_zone_0": "mtpocfo-kvm-az01", |
| 635 | "ASN": "get_input:2017488_adiodvpe0_ASN", |
| 636 | "vmxvre_chassis_i2cid": "161", |
| 637 | "vmxvpfe_name_0": "vPFEXI", |
| 638 | "bandwidth": "get_input:2017488_adiodvpe0_bandwidth", |
| 639 | "availability_zone_max_count": "1", |
| 640 | "vmxvre_volume_size_0": "45.0", |
| 641 | "vmxvre_volume_size_1": "50.0", |
| 642 | "vmxvpfe_sriov42_0_port_broadcastallow": "true", |
| 643 | "vmxvre_oam_gateway": "10.0.0.10", |
| 644 | "vmxvre_volume_name_1": "vREXI_FAVolume", |
| 645 | "vmxvre_ore_present": "0", |
| 646 | "vmxvre_volume_name_0": "vREXI_FBVolume", |
| 647 | "vmxvre_type": "0", |
| 648 | "vnf_instance_name": "get_input:2017488_adiodvpe0_vnf_instance_name", |
| 649 | "vmxvpfe_sriov41_0_port_unknownmulticastallow": "true", |
| 650 | "oam_net_id": "b95eeb1d-d55d-4827-abb4-8ebb94941429", |
| 651 | "vmx_int_ctl_len": "24", |
| 652 | "vmxvpfe_sriov43_0_port_vlanstrip": "false", |
| 653 | "vmxvpfe_sriov41_0_port_broadcastallow": "true", |
| 654 | "vmxvre_volume_id_1": "6e86797e-03cd-4fdc-ba72-2957119c746d", |
| 655 | "vmxvpfe_sriov41_0_port_vlanfilter": "4001", |
| 656 | "nf_role": "Testing", |
| 657 | "vmxvre_volume_id_0": "f4eacb79-f687-4e9d-b760-21847c8bb15a", |
| 658 | "vmxvpfe_sriov42_0_port_unknownunicastallow": "true", |
| 659 | "vmxvpfe_flavor_name": "ns.c20r16d25.v5" |
| 660 | }, |
| 661 | "type": "VF", |
| 662 | "modelCustomizationName": "2017-388_ADIOD-vPE 0", |
| 663 | "vfModules": {}, |
| 664 | "volumeGroups": {}, |
| 665 | "vfcInstanceGroups": {} |
| 666 | }, |
| 667 | "2017-488_ADIOD-vPE 0": { |
| 668 | "uuid": "69e09f68-8b63-4cc9-b9ff-860960b5db09", |
| 669 | "invariantUuid": "72e465fe-71b1-4e7b-b5ed-9496118ff7a8", |
| 670 | "description": "Name ADIOD vPE Description The provider edge function for the ADIOD service supported by the Junipers VMX product Category Router Vendor Juniper Vendor Release Code 17.2 Owners Mary Fragale. Updated 9-25 to use v8.0 of the Juniper Valid 2 VLM", |
| 671 | "name": "2017-488_ADIOD-vPE", |
| 672 | "version": "5.0", |
| 673 | "customizationUuid": "1da7b585-5e61-4993-b95e-8e6606c81e45", |
| 674 | "inputs": {}, |
| 675 | "commands": {}, |
| 676 | "properties": { |
| 677 | "max_instances": 1, |
| 678 | "vmxvre_retype": "RE-VMX", |
| 679 | "vnf_config_template_version": "get_input:2017488_adiodvpe0_vnf_config_template_version", |
| 680 | "sriov44_net_id": "48d399b3-11ee-48a8-94d2-f0ea94d6be8d", |
| 681 | "int_ctl_net_id": "2f323477-6936-4d01-ac53-d849430281d9", |
| 682 | "vmxvpfe_sriov41_0_port_mac": "00:11:22:EF:AC:DF", |
| 683 | "int_ctl_net_name": "VMX-INTXI", |
| 684 | "vmx_int_ctl_prefix": "10.0.0.10", |
| 685 | "sriov43_net_id": "da349ca1-6de9-4548-be88-2d88e99bfef5", |
| 686 | "sriov42_net_id": "760669ba-013d-4d9b-b0e7-4151fe2e6279", |
| 687 | "sriov41_net_id": "25ad52d5-c165-40f8-b3b0-ddfc2373280a", |
| 688 | "nf_type": "vPE", |
| 689 | "vmxvpfe_int_ctl_ip_1": "10.0.0.10", |
| 690 | "is_AVPN_service": "false", |
| 691 | "vmx_RSG_name": "vREXI-affinity", |
| 692 | "vmx_int_ctl_forwarding": "l2", |
| 693 | "vmxvre_oam_ip_0": "10.0.0.10", |
| 694 | "vmxvpfe_sriov44_0_port_mac": "00:11:22:EF:AC:DF", |
| 695 | "vmxvpfe_sriov41_0_port_vlanstrip": "false", |
| 696 | "vmxvpfe_sriov42_0_port_vlanfilter": "4001", |
| 697 | "vmxvpfe_sriov44_0_port_unknownunicastallow": "true", |
| 698 | "vmxvre_image_name_0": "VRE-ENGINE_17.2-S2.1.qcow2", |
| 699 | "vmxvre_instance": "0", |
| 700 | "vmxvpfe_sriov43_0_port_mac": "00:11:22:EF:AC:DF", |
| 701 | "vmxvre_flavor_name": "ns.c1r16d32.v5", |
| 702 | "vmxvpfe_volume_size_0": "40.0", |
| 703 | "vmxvpfe_sriov43_0_port_vlanfilter": "4001", |
| 704 | "nf_naming": "{ecomp_generated_naming=true}", |
| 705 | "multi_stage_design": "true", |
| 706 | "nf_naming_code": "Navneet", |
| 707 | "vmxvre_name_0": "vREXI", |
| 708 | "vmxvpfe_sriov42_0_port_vlanstrip": "false", |
| 709 | "vmxvpfe_volume_name_0": "vPFEXI_FBVolume", |
| 710 | "vmx_RSG_id": "bd89a33c-13c3-4a04-8fde-1a57eb123141", |
| 711 | "vmxvpfe_image_name_0": "VPE_ROUTING-ENGINE_17.2R1-S2.1.qcow2", |
| 712 | "vmxvpfe_sriov43_0_port_unknownunicastallow": "true", |
| 713 | "vmxvpfe_sriov44_0_port_unknownmulticastallow": "true", |
| 714 | "vmxvre_console": "vidconsole", |
| 715 | "vmxvpfe_sriov44_0_port_vlanfilter": "4001", |
| 716 | "vmxvpfe_sriov42_0_port_mac": "00:11:22:EF:AC:DF", |
| 717 | "vmxvpfe_volume_id_0": "47cede15-da2f-4397-a101-aa683220aff3", |
| 718 | "vmxvpfe_sriov42_0_port_unknownmulticastallow": "true", |
| 719 | "vmxvpfe_sriov44_0_port_vlanstrip": "false", |
| 720 | "vf_module_id": "123", |
| 721 | "nf_function": "JAI", |
| 722 | "vmxvpfe_sriov43_0_port_unknownmulticastallow": "true", |
| 723 | "vmxvre_int_ctl_ip_0": "10.0.0.10", |
| 724 | "ecomp_generated_naming": "true", |
| 725 | "AIC_CLLI": "get_input:2017488_adiodvpe0_AIC_CLLI", |
| 726 | "vnf_name": "mtnj309me6vre", |
| 727 | "vmxvpfe_sriov41_0_port_unknownunicastallow": "true", |
| 728 | "vmxvre_volume_type_1": "HITACHI", |
| 729 | "vmxvpfe_sriov44_0_port_broadcastallow": "true", |
| 730 | "vmxvre_volume_type_0": "HITACHI", |
| 731 | "vmxvpfe_volume_type_0": "HITACHI", |
| 732 | "vmxvpfe_sriov43_0_port_broadcastallow": "true", |
| 733 | "bandwidth_units": "get_input:2017488_adiodvpe0_bandwidth_units", |
| 734 | "vnf_id": "123", |
| 735 | "vmxvre_oam_prefix": "24", |
| 736 | "availability_zone_0": "mtpocfo-kvm-az01", |
| 737 | "ASN": "get_input:2017488_adiodvpe0_ASN", |
| 738 | "vmxvre_chassis_i2cid": "161", |
| 739 | "vmxvpfe_name_0": "vPFEXI", |
| 740 | "bandwidth": "get_input:2017488_adiodvpe0_bandwidth", |
| 741 | "availability_zone_max_count": "1", |
| 742 | "vmxvre_volume_size_0": "45.0", |
| 743 | "vmxvre_volume_size_1": "50.0", |
| 744 | "vmxvpfe_sriov42_0_port_broadcastallow": "true", |
| 745 | "vmxvre_oam_gateway": "10.0.0.10", |
| 746 | "vmxvre_volume_name_1": "vREXI_FAVolume", |
| 747 | "vmxvre_ore_present": "0", |
| 748 | "vmxvre_volume_name_0": "vREXI_FBVolume", |
| 749 | "vmxvre_type": "0", |
| 750 | "vnf_instance_name": "get_input:2017488_adiodvpe0_vnf_instance_name", |
| 751 | "vmxvpfe_sriov41_0_port_unknownmulticastallow": "true", |
| 752 | "oam_net_id": "b95eeb1d-d55d-4827-abb4-8ebb94941429", |
| 753 | "vmx_int_ctl_len": "24", |
| 754 | "vmxvpfe_sriov43_0_port_vlanstrip": "false", |
| 755 | "vmxvpfe_sriov41_0_port_broadcastallow": "true", |
| 756 | "vmxvre_volume_id_1": "6e86797e-03cd-4fdc-ba72-2957119c746d", |
| 757 | "vmxvpfe_sriov41_0_port_vlanfilter": "4001", |
| 758 | "nf_role": "Testing", |
| 759 | "vmxvre_volume_id_0": "f4eacb79-f687-4e9d-b760-21847c8bb15a", |
| 760 | "vmxvpfe_sriov42_0_port_unknownunicastallow": "true", |
| 761 | "vmxvpfe_flavor_name": "ns.c20r16d25.v5" |
| 762 | }, |
| 763 | "type": "VF", |
| 764 | "modelCustomizationName": "2017-488_ADIOD-vPE 0", |
| 765 | "vfModules": { |
| 766 | "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1": { |
| 767 | "uuid": "25284168-24bb-4698-8cb4-3f509146eca5", |
| 768 | "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1", |
| 769 | "customizationUuid": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401", |
| 770 | "description": null, |
| 771 | "name": "2017488AdiodVpe..ADIOD_vRE_BV..module-1", |
| 772 | "version": "6", |
| 773 | "modelCustomizationName": "2017488AdiodVpe..ADIOD_vRE_BV..module-1", |
| 774 | "properties": { |
| 775 | "minCountInstances": 0, |
| 776 | "maxCountInstances": null, |
| 777 | "initialCount": 0, |
| 778 | "vfModuleLabel": "ADIOD_vRE_BV", |
| 779 | "baseModule": false |
| 780 | }, |
| 781 | "inputs": {}, |
| 782 | "volumeGroupAllowed": true |
| 783 | }, |
| 784 | "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0": { |
| 785 | "uuid": "f8360508-3f17-4414-a2ed-6bc71161e8db", |
| 786 | "invariantUuid": "b34833bb-6aa9-4ad6-a831-70b06367a091", |
| 787 | "customizationUuid": "a55961b2-2065-4ab0-a5b7-2fcee1c227e3", |
| 788 | "description": null, |
| 789 | "name": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0", |
| 790 | "version": "5", |
| 791 | "modelCustomizationName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0", |
| 792 | "properties": { |
| 793 | "minCountInstances": 1, |
| 794 | "maxCountInstances": 1, |
| 795 | "initialCount": 1, |
| 796 | "vfModuleLabel": "ADIOD_base_vPE_BV", |
| 797 | "baseModule": true |
| 798 | }, |
| 799 | "inputs": {}, |
| 800 | "volumeGroupAllowed": false |
| 801 | }, |
| 802 | "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vPFE_BV..module-2": { |
| 803 | "uuid": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a", |
| 804 | "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339", |
| 805 | "customizationUuid": "3cd946bb-50e0-40d8-96d3-c9023520b557", |
| 806 | "description": null, |
| 807 | "name": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2", |
| 808 | "version": "6", |
| 809 | "modelCustomizationName": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2", |
| 810 | "properties": { |
| 811 | "minCountInstances": 0, |
| 812 | "maxCountInstances": null, |
| 813 | "initialCount": 0, |
| 814 | "vfModuleLabel": "ADIOD_vPFE_BV", |
| 815 | "baseModule": false |
| 816 | }, |
| 817 | "inputs": {}, |
| 818 | "volumeGroupAllowed": true |
| 819 | } |
| 820 | }, |
| 821 | "volumeGroups": { |
| 822 | "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1": { |
| 823 | "uuid": "25284168-24bb-4698-8cb4-3f509146eca5", |
| 824 | "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1", |
| 825 | "customizationUuid": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401", |
| 826 | "description": null, |
| 827 | "name": "2017488AdiodVpe..ADIOD_vRE_BV..module-1", |
| 828 | "version": "6", |
| 829 | "modelCustomizationName": "2017488AdiodVpe..ADIOD_vRE_BV..module-1", |
| 830 | "properties": { |
| 831 | "minCountInstances": 0, |
| 832 | "maxCountInstances": null, |
| 833 | "initialCount": 0, |
| 834 | "vfModuleLabel": "ADIOD_vRE_BV", |
| 835 | "baseModule": false |
| 836 | }, |
| 837 | "inputs": {} |
| 838 | }, |
| 839 | "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vPFE_BV..module-2": { |
| 840 | "uuid": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a", |
| 841 | "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339", |
| 842 | "customizationUuid": "3cd946bb-50e0-40d8-96d3-c9023520b557", |
| 843 | "description": null, |
| 844 | "name": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2", |
| 845 | "version": "6", |
| 846 | "modelCustomizationName": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2", |
| 847 | "properties": { |
| 848 | "minCountInstances": 0, |
| 849 | "maxCountInstances": null, |
| 850 | "initialCount": 0, |
| 851 | "vfModuleLabel": "ADIOD_vPFE_BV", |
| 852 | "baseModule": false |
| 853 | }, |
| 854 | "inputs": {} |
| 855 | } |
| 856 | }, |
| 857 | "vfcInstanceGroups": {} |
| 858 | } |
| 859 | }, |
| 860 | "networks": { |
| 861 | "ExtVL 0": { |
| 862 | "uuid": "ddc3f20c-08b5-40fd-af72-c6d14636b986", |
| 863 | "invariantUuid": "379f816b-a7aa-422f-be30-17114ff50b7c", |
| 864 | "description": "ECOMP generic virtual link (network) base type for all other service-level and global networks", |
| 865 | "name": "ExtVL", |
| 866 | "version": "37.0", |
| 867 | "customizationUuid": "94fdd893-4a36-4d70-b16a-ec29c54c184f", |
| 868 | "inputs": {}, |
| 869 | "commands": {}, |
| 870 | "properties": { |
| 871 | "network_assignments": "{is_external_network=false, ipv4_subnet_default_assignment={min_subnets_count=1}, ecomp_generated_network_assignment=false, ipv6_subnet_default_assignment={min_subnets_count=1}}", |
| 872 | "exVL_naming": "{ecomp_generated_naming=true}", |
| 873 | "network_flows": "{is_network_policy=false, is_bound_to_vpn=false}", |
| 874 | "network_homing": "{ecomp_selected_instance_node_target=false}" |
| 875 | }, |
| 876 | "type": "VL", |
| 877 | "modelCustomizationName": "ExtVL 0" |
| 878 | } |
| 879 | }, |
| 880 | "collectionResource": {}, |
| 881 | "configurations": {}, |
| 882 | "fabricConfigurations": {}, |
| 883 | "serviceProxies": {}, |
| 884 | "vfModules": { |
| 885 | "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1": { |
| 886 | "uuid": "25284168-24bb-4698-8cb4-3f509146eca5", |
| 887 | "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1", |
| 888 | "customizationUuid": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401", |
| 889 | "description": null, |
| 890 | "name": "2017488AdiodVpe..ADIOD_vRE_BV..module-1", |
| 891 | "version": "6", |
| 892 | "modelCustomizationName": "2017488AdiodVpe..ADIOD_vRE_BV..module-1", |
| 893 | "properties": { |
| 894 | "minCountInstances": 0, |
| 895 | "maxCountInstances": null, |
| 896 | "initialCount": 0, |
| 897 | "vfModuleLabel": "ADIOD_vRE_BV", |
| 898 | "baseModule": false |
| 899 | }, |
| 900 | "inputs": {}, |
| 901 | "volumeGroupAllowed": true |
| 902 | }, |
| 903 | "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0": { |
| 904 | "uuid": "f8360508-3f17-4414-a2ed-6bc71161e8db", |
| 905 | "invariantUuid": "b34833bb-6aa9-4ad6-a831-70b06367a091", |
| 906 | "customizationUuid": "a55961b2-2065-4ab0-a5b7-2fcee1c227e3", |
| 907 | "description": null, |
| 908 | "name": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0", |
| 909 | "version": "5", |
| 910 | "modelCustomizationName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0", |
| 911 | "properties": { |
| 912 | "minCountInstances": 1, |
| 913 | "maxCountInstances": 1, |
| 914 | "initialCount": 1, |
| 915 | "vfModuleLabel": "ADIOD_base_vPE_BV", |
| 916 | "baseModule": true |
| 917 | }, |
| 918 | "inputs": {}, |
| 919 | "volumeGroupAllowed": false |
| 920 | }, |
| 921 | "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vPFE_BV..module-2": { |
| 922 | "uuid": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a", |
| 923 | "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339", |
| 924 | "customizationUuid": "3cd946bb-50e0-40d8-96d3-c9023520b557", |
| 925 | "description": null, |
| 926 | "name": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2", |
| 927 | "version": "6", |
| 928 | "modelCustomizationName": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2", |
| 929 | "properties": { |
| 930 | "minCountInstances": 0, |
| 931 | "maxCountInstances": null, |
| 932 | "initialCount": 0, |
| 933 | "vfModuleLabel": "ADIOD_vPFE_BV", |
| 934 | "baseModule": false |
| 935 | }, |
| 936 | "inputs": {}, |
| 937 | "volumeGroupAllowed": true |
| 938 | } |
| 939 | }, |
| 940 | "volumeGroups": { |
| 941 | "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vRE_BV..module-1": { |
| 942 | "uuid": "25284168-24bb-4698-8cb4-3f509146eca5", |
| 943 | "invariantUuid": "7253ff5c-97f0-4b8b-937c-77aeb4d79aa1", |
| 944 | "customizationUuid": "f7e7c365-60cf-49a9-9ebf-a1aa11b9d401", |
| 945 | "description": null, |
| 946 | "name": "2017488AdiodVpe..ADIOD_vRE_BV..module-1", |
| 947 | "version": "6", |
| 948 | "modelCustomizationName": "2017488AdiodVpe..ADIOD_vRE_BV..module-1", |
| 949 | "properties": { |
| 950 | "minCountInstances": 0, |
| 951 | "maxCountInstances": null, |
| 952 | "initialCount": 0, |
| 953 | "vfModuleLabel": "ADIOD_vRE_BV", |
| 954 | "baseModule": false |
| 955 | }, |
| 956 | "inputs": {} |
| 957 | }, |
| 958 | "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_vPFE_BV..module-2": { |
| 959 | "uuid": "0a0dd9d4-31d3-4c3a-ae89-a02f383e6a9a", |
| 960 | "invariantUuid": "eff8cc59-53a1-4101-aed7-8cf24ecf8339", |
| 961 | "customizationUuid": "3cd946bb-50e0-40d8-96d3-c9023520b557", |
| 962 | "description": null, |
| 963 | "name": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2", |
| 964 | "version": "6", |
| 965 | "modelCustomizationName": "2017488AdiodVpe..ADIOD_vPFE_BV..module-2", |
| 966 | "properties": { |
| 967 | "minCountInstances": 0, |
| 968 | "maxCountInstances": null, |
| 969 | "initialCount": 0, |
| 970 | "vfModuleLabel": "ADIOD_vPFE_BV", |
| 971 | "baseModule": false |
| 972 | }, |
| 973 | "inputs": {} |
| 974 | } |
| 975 | }, |
| 976 | "pnfs": {}, |
| 977 | "vnfGroups": { |
| 978 | "groupingservicefortest..ResourceInstanceGroup..0": { |
| 979 | "type": "VnfGroup", |
| 980 | "invariantUuid": "4bb2e27e-ddab-4790-9c6d-1f731bc14a45", |
| 981 | "uuid": "daeb6568-cef8-417f-9075-ed259ce59f48", |
| 982 | "version": "1", |
| 983 | "name": "groupingservicefortest..ResourceInstanceGroup..0", |
| 984 | "modelCustomizationName": "groupingservicefortest..ResourceInstanceGroup..0", |
| 985 | "properties": { |
| 986 | "contained_resource_type": "VF", |
| 987 | "role": "SERVICE-ACCESS", |
| 988 | "function": "DATA", |
| 989 | "description": "DDD0", |
| 990 | "type": "LOAD-GROUP", |
| 991 | "ecomp_generated_naming": "true" |
| 992 | }, |
| 993 | "members": { |
| 994 | "vdbe_svc_vprs_proxy 0": { |
| 995 | "uuid": "65fadfa8-a0d9-443f-95ad-836cd044e26c", |
| 996 | "invariantUuid": "f4baae0c-b3a5-4ca1-a777-afbffe7010bc", |
| 997 | "description": "A Proxy for Service vDBE_Svc_vPRS", |
| 998 | "name": "vDBE_Svc_vPRS Service Proxy", |
| 999 | "version": "1.0", |
| 1000 | "customizationUuid": "bdb63d23-e132-4ce7-af2c-a493b4cafac9", |
| 1001 | "inputs": {}, |
| 1002 | "commands": {}, |
| 1003 | "properties": {}, |
| 1004 | "type": "Service Proxy", |
| 1005 | "sourceModelUuid": "da7827a2-366d-4be6-8c68-a69153c61274", |
| 1006 | "sourceModelInvariant": "24632e6b-584b-4f45-80d4-fefd75fd9f14", |
| 1007 | "sourceModelName": "vDBE_Svc_vPRS" |
| 1008 | } |
| 1009 | } |
| 1010 | }, |
| 1011 | "groupingservicefortest..ResourceInstanceGroup..1": { |
| 1012 | "type": "VnfGroup", |
| 1013 | "invariantUuid": "a704112d-dbc6-4e56-8d4e-aec57e95ef9a", |
| 1014 | "uuid": "c2b300e6-45de-4e5e-abda-3032bee2de56", |
| 1015 | "version": "1", |
| 1016 | "name": "groupingservicefortest..ResourceInstanceGroup..1", |
| 1017 | "modelCustomizationName": "groupingservicefortest..ResourceInstanceGroup..1", |
| 1018 | "properties": { |
| 1019 | "contained_resource_type": "VF", |
| 1020 | "role": "SERVICE-ACCESS", |
| 1021 | "function": "SIGNALING", |
| 1022 | "description": "DDD1", |
| 1023 | "type": "LOAD-GROUP", |
| 1024 | "ecomp_generated_naming": "true" |
| 1025 | }, |
| 1026 | "members": { |
| 1027 | "tsbc0001vm001_svc_proxy 0": { |
| 1028 | "uuid": "65fadfa8-a0d9-443f-95ad-836cd044e26c", |
| 1029 | "invariantUuid": "f4baae0c-b3a5-4ca1-a777-afbffe7010bc", |
| 1030 | "description": "A Proxy for Service tsbc0001vm001_Svc", |
| 1031 | "name": "tsbc0001vm001_Svc Service Proxy", |
| 1032 | "version": "1.0", |
| 1033 | "customizationUuid": "3d814462-30fb-4c62-b997-9aa360d27ead", |
| 1034 | "inputs": {}, |
| 1035 | "commands": {}, |
| 1036 | "properties": {}, |
| 1037 | "type": "Service Proxy", |
| 1038 | "sourceModelUuid": "28aeb8f6-5620-4148-8bfb-a5fb406f0309", |
| 1039 | "sourceModelInvariant": "c989ab9a-33c7-46ec-b521-1b2daef5f047", |
| 1040 | "sourceModelName": "tsbc0001vm001_Svc" |
| 1041 | } |
| 1042 | } |
| 1043 | } |
| 1044 | } |
| 1045 | }, |
| 1046 | "b75e0d22-05ff-4448-9266-5f0d4e1dbbd6": { |
| 1047 | "service": { |
| 1048 | "uuid": "b75e0d22-05ff-4448-9266-5f0d4e1dbbd6", |
| 1049 | "invariantUuid": "5b9c0f33-eec1-484a-bf77-736a6644d7a8", |
| 1050 | "name": "Using VID for VoIP Network Instantiations Shani", |
| 1051 | "version": "1.0", |
| 1052 | "toscaModelURL": null, |
| 1053 | "category": "VoIP Call Control", |
| 1054 | "serviceType": "", |
| 1055 | "serviceRole": "", |
| 1056 | "description": "Using VID for VoIP Network Instantiations Shani", |
| 1057 | "serviceEcompNaming": "true", |
| 1058 | "instantiationType": "ClientConfig", |
| 1059 | "inputs": {}, |
| 1060 | "vidNotions": {"instantiationUI": "legacy", "modelCategory": "other", "viewEditUI": "legacy"} |
| 1061 | }, |
| 1062 | "vnfs": {}, |
| 1063 | "networks": { |
| 1064 | "AIC30_CONTRAIL_BASIC 0": { |
| 1065 | "uuid": "ac815c68-35b7-4ea4-9d04-92d2f844b27c", |
| 1066 | "invariantUuid": "de01afb5-532b-451d-aac4-ff9ff0644060", |
| 1067 | "description": "Basic contrail 3.0.x L3 network for AIC 3.x sites. ", |
| 1068 | "name": "AIC30_CONTRAIL_BASIC", |
| 1069 | "version": "3.0", |
| 1070 | "customizationUuid": "e94d61f7-b4b2-489a-a4a7-30b1a1a80daf", |
| 1071 | "inputs": {}, |
| 1072 | "commands": {}, |
| 1073 | "properties": { |
| 1074 | "network_assignments": "{is_external_network=false, ipv4_subnet_default_assignment={min_subnets_count=1}, ecomp_generated_network_assignment=false, ipv6_subnet_default_assignment={min_subnets_count=1}}", |
| 1075 | "exVL_naming": "{ecomp_generated_naming=true}", |
| 1076 | "network_flows": "{is_network_policy=false, is_bound_to_vpn=false}", |
| 1077 | "network_scope": "Service", |
| 1078 | "network_type": "AIC30_CONTRAIL_BASIC", |
| 1079 | "network_technology": "Contrail", |
| 1080 | "network_homing": "{ecomp_selected_instance_node_target=false}" |
| 1081 | }, |
| 1082 | "type": "VL", |
| 1083 | "modelCustomizationName": "AIC30_CONTRAIL_BASIC 0" |
| 1084 | } |
| 1085 | }, |
| 1086 | "collectionResource": {}, |
| 1087 | "configurations": {}, |
| 1088 | "fabricConfigurations": {}, |
| 1089 | "serviceProxies": {}, |
| 1090 | "vfModules": {}, |
| 1091 | "volumeGroups": {}, |
| 1092 | "pnfs": {}, |
| 1093 | "vnfGroups": {} |
| 1094 | } |
| 1095 | }, |
| 1096 | "serviceInstance": { |
| 1097 | "1a80c596-27e5-4ca9-b5bb-e03a7fd4c0fd": { |
| 1098 | "vnfs": { |
| 1099 | "2017-488_ADIOD-vPE 0": { |
| 1100 | "action": "None", |
| 1101 | "inMaint": false, |
| 1102 | "rollbackOnFailure": "true", |
| 1103 | "originalName": "2017-488_ADIOD-vPE 0", |
| 1104 | "isMissingData": false, |
| 1105 | "trackById": "stigekyxrqi", |
| 1106 | "vfModules": { |
| 1107 | "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0": { |
| 1108 | "2017488_adiodvpe0..2017488AdiodVpe..ADIOD_base_vPE_BV..module-0gytfi": { |
| 1109 | "isMissingData": false, |
| 1110 | "sdncPreReload": null, |
| 1111 | "modelInfo": { |
| 1112 | "modelType": "VFmodule", |
| 1113 | "modelInvariantId": "b34833bb-6aa9-4ad6-a831-70b06367a091", |
| 1114 | "modelVersionId": "f8360508-3f17-4414-a2ed-6bc71161e8db", |
| 1115 | "modelName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0", |
| 1116 | "modelVersion": "5", |
| 1117 | "modelCustomizationId": "a55961b2-2065-4ab0-a5b7-2fcee1c227e3", |
| 1118 | "modelCustomizationName": "2017488AdiodVpe..ADIOD_base_vPE_BV..module-0" |
| 1119 | }, |
| 1120 | "instanceParams": [{}], |
| 1121 | "trackById": "3oj23o7nupo" |
| 1122 | } |
| 1123 | } |
| 1124 | }, |
| 1125 | "vnfStoreKey": "2017-488_ADIOD-vPE 0", |
| 1126 | "uuid": "69e09f68-8b63-4cc9-b9ff-860960b5db09", |
| 1127 | "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c", |
| 1128 | "lcpCloudRegionId": "JANET25", |
| 1129 | "tenantId": "092eb9e8e4b7412e8787dd091bc58e86", |
| 1130 | "lineOfBusiness": "ONAP", |
| 1131 | "platformName": "xxx1", |
| 1132 | "modelInfo": { |
| 1133 | "modelInvariantId": "72e465fe-71b1-4e7b-b5ed-9496118ff7a8", |
| 1134 | "modelVersionId": "69e09f68-8b63-4cc9-b9ff-860960b5db09", |
| 1135 | "modelName": "2017-488_ADIOD-vPE", |
| 1136 | "modelVersion": "5.0", |
| 1137 | "modelCustomizationName": "2017-488_ADIOD-vPE 0", |
| 1138 | "modelCustomizationId": "1da7b585-5e61-4993-b95e-8e6606c81e45", |
| 1139 | "uuid": "69e09f68-8b63-4cc9-b9ff-860960b5db09" |
| 1140 | }, |
| 1141 | "legacyRegion": "11111111", |
| 1142 | "instanceParams": [{}] |
| 1143 | }, |
| 1144 | "2017-388_ADIOD-vPE 0": { |
| 1145 | "action": "Create", |
| 1146 | "inMaint": false, |
| 1147 | "rollbackOnFailure": "true", |
| 1148 | "originalName": "2017-388_ADIOD-vPE 0", |
| 1149 | "isMissingData": false, |
| 1150 | "trackById": "nib719t5vca", |
| 1151 | "vfModules": {}, |
| 1152 | "vnfStoreKey": "2017-388_ADIOD-vPE 0", |
| 1153 | "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c", |
| 1154 | "lcpCloudRegionId": "JANET25", |
| 1155 | "legacyRegion": "11111", |
| 1156 | "tenantId": "092eb9e8e4b7412e8787dd091bc58e86", |
| 1157 | "platformName": "platform", |
| 1158 | "lineOfBusiness": "zzz1", |
| 1159 | "instanceParams": [{}], |
| 1160 | "modelInfo": { |
| 1161 | "modelInvariantId": "72e465fe-71b1-4e7b-b5ed-9496118ff7a8", |
| 1162 | "modelVersionId": "afacccf6-397d-45d6-b5ae-94c39734b168", |
| 1163 | "modelName": "2017-388_ADIOD-vPE", |
| 1164 | "modelVersion": "4.0", |
| 1165 | "modelCustomizationId": "b3c76f73-eeb5-4fb6-9d31-72a889f1811c", |
| 1166 | "modelCustomizationName": "2017-388_ADIOD-vPE 0", |
| 1167 | "uuid": "afacccf6-397d-45d6-b5ae-94c39734b168" |
| 1168 | }, |
| 1169 | "uuid": "afacccf6-397d-45d6-b5ae-94c39734b168" |
| 1170 | }, |
| 1171 | "2017-388_ADIOD-vPE 1": { |
| 1172 | "action": "None", |
| 1173 | "inMaint": false, |
| 1174 | "rollbackOnFailure": "true", |
| 1175 | "originalName": "2017-388_ADIOD-vPE 1", |
| 1176 | "isMissingData": false, |
| 1177 | "trackById": "cv7l1ak8vpe", |
| 1178 | "vfModules": {}, |
| 1179 | "vnfStoreKey": "2017-388_ADIOD-vPE 1", |
| 1180 | "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c", |
| 1181 | "lcpCloudRegionId": "JANET25", |
| 1182 | "legacyRegion": "123", |
| 1183 | "tenantId": "092eb9e8e4b7412e8787dd091bc58e86", |
| 1184 | "platformName": "platform", |
| 1185 | "lineOfBusiness": "ONAP", |
| 1186 | "instanceParams": [{}], |
| 1187 | "modelInfo": { |
| 1188 | "modelInvariantId": "00beb8f9-6d39-452f-816d-c709b9cbb87d", |
| 1189 | "modelVersionId": "0903e1c0-8e03-4936-b5c2-260653b96413", |
| 1190 | "modelName": "2017-388_ADIOD-vPE", |
| 1191 | "modelVersion": "1.0", |
| 1192 | "modelCustomizationId": "280dec31-f16d-488b-9668-4aae55d6648a", |
| 1193 | "modelCustomizationName": "2017-388_ADIOD-vPE 1", |
| 1194 | "uuid": "0903e1c0-8e03-4936-b5c2-260653b96413" |
| 1195 | }, |
| 1196 | "uuid": "0903e1c0-8e03-4936-b5c2-260653b96413" |
| 1197 | } |
| 1198 | }, |
| 1199 | "instanceParams": [{}], |
| 1200 | "validationCounter": 0, |
| 1201 | "existingNames": {"yoav": ""}, |
| 1202 | "existingVNFCounterMap": { |
| 1203 | "69e09f68-8b63-4cc9-b9ff-860960b5db09": 1, |
| 1204 | "afacccf6-397d-45d6-b5ae-94c39734b168": 1, |
| 1205 | "0903e1c0-8e03-4936-b5c2-260653b96413": 1 |
| 1206 | }, |
| 1207 | "existingVnfGroupCounterMap": { |
| 1208 | "daeb6568-cef8-417f-9075-ed259ce59f48": 0, |
| 1209 | "c2b300e6-45de-4e5e-abda-3032bee2de56": -1 |
| 1210 | }, |
| 1211 | "existingNetworksCounterMap": {"ddc3f20c-08b5-40fd-af72-c6d14636b986": 1}, |
| 1212 | "networks": { |
| 1213 | "ExtVL 0": { |
| 1214 | "inMaint": false, |
| 1215 | "rollbackOnFailure": "true", |
| 1216 | "originalName": "ExtVL 0", |
| 1217 | "isMissingData": false, |
| 1218 | "trackById": "s6okajvv2n8", |
| 1219 | "networkStoreKey": "ExtVL 0", |
| 1220 | "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c", |
| 1221 | "lcpCloudRegionId": "JANET25", |
| 1222 | "legacyRegion": "12355555", |
| 1223 | "tenantId": "092eb9e8e4b7412e8787dd091bc58e86", |
| 1224 | "platformName": "platform", |
| 1225 | "lineOfBusiness": null, |
| 1226 | "instanceParams": [{}], |
| 1227 | "modelInfo": { |
| 1228 | "modelInvariantId": "379f816b-a7aa-422f-be30-17114ff50b7c", |
| 1229 | "modelVersionId": "ddc3f20c-08b5-40fd-af72-c6d14636b986", |
| 1230 | "modelName": "ExtVL", |
| 1231 | "modelVersion": "37.0", |
| 1232 | "modelCustomizationId": "94fdd893-4a36-4d70-b16a-ec29c54c184f", |
| 1233 | "modelCustomizationName": "ExtVL 0", |
| 1234 | "uuid": "ddc3f20c-08b5-40fd-af72-c6d14636b986" |
| 1235 | }, |
| 1236 | "uuid": "ddc3f20c-08b5-40fd-af72-c6d14636b986" |
| 1237 | } |
| 1238 | }, |
| 1239 | "vnfGroups": { |
| 1240 | "groupingservicefortest..ResourceInstanceGroup..0": { |
| 1241 | "inMaint": false, |
| 1242 | "rollbackOnFailure": "true", |
| 1243 | "originalName": "groupingservicefortest..ResourceInstanceGroup..0", |
| 1244 | "isMissingData": false, |
| 1245 | "trackById": "se0obn93qq", |
| 1246 | "vnfGroupStoreKey": "groupingservicefortest..ResourceInstanceGroup..0", |
| 1247 | "instanceName": "groupingservicefortestResourceInstanceGroup0", |
| 1248 | "instanceParams": [{}], |
| 1249 | "modelInfo": { |
| 1250 | "modelInvariantId": "4bb2e27e-ddab-4790-9c6d-1f731bc14a45", |
| 1251 | "modelVersionId": "daeb6568-cef8-417f-9075-ed259ce59f48", |
| 1252 | "modelName": "groupingservicefortest..ResourceInstanceGroup..0", |
| 1253 | "modelVersion": "1", |
| 1254 | "modelCustomizationName": "groupingservicefortest..ResourceInstanceGroup..0", |
| 1255 | "uuid": "daeb6568-cef8-417f-9075-ed259ce59f48" |
| 1256 | }, |
| 1257 | "uuid": "daeb6568-cef8-417f-9075-ed259ce59f48" |
| 1258 | } |
| 1259 | }, |
| 1260 | "instanceName": "yoav", |
| 1261 | "globalSubscriberId": "e433710f-9217-458d-a79d-1c7aff376d89", |
| 1262 | "subscriptionServiceType": "TYLER SILVIA", |
| 1263 | "owningEntityId": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc", |
| 1264 | "productFamilyId": "d8a6ed93-251c-47ca-adc9-86671fd19f4c", |
| 1265 | "lcpCloudRegionId": "JANET25", |
| 1266 | "tenantId": "092eb9e8e4b7412e8787dd091bc58e86", |
| 1267 | "aicZoneId": "ATL53", |
| 1268 | "pause": null, |
| 1269 | "projectName": "WATKINS", |
| 1270 | "rollbackOnFailure": "true", |
| 1271 | "bulkSize": 1, |
| 1272 | "aicZoneName": "AAIATLTE-ATL53", |
| 1273 | "owningEntityName": "WayneHolland", |
| 1274 | "testApi": "VNF_API", |
| 1275 | "isEcompGeneratedNaming": false, |
| 1276 | "tenantName": "USP-SIP-IC-24335-T-01", |
| 1277 | "modelInfo": { |
| 1278 | "modelInvariantId": "cdb90b57-ed78-4d44-a5b4-7f43a02ec632", |
| 1279 | "modelVersionId": "1a80c596-27e5-4ca9-b5bb-e03a7fd4c0fd", |
| 1280 | "modelName": "action-data", |
| 1281 | "modelVersion": "1.0", |
| 1282 | "uuid": "1a80c596-27e5-4ca9-b5bb-e03a7fd4c0fd" |
| 1283 | }, |
| 1284 | "isALaCarte": false, |
| 1285 | "name": "action-data", |
| 1286 | "version": "1.0", |
| 1287 | "description": "ADIOD vMX vPE based on Juniper 17.2 release. Updated with updated VF for v8.0 of VLM", |
| 1288 | "category": "Network L1-3", |
| 1289 | "uuid": "1a80c596-27e5-4ca9-b5bb-e03a7fd4c0fd", |
| 1290 | "invariantUuid": "cdb90b57-ed78-4d44-a5b4-7f43a02ec632", |
| 1291 | "serviceType": "pnf", |
| 1292 | "serviceRole": "Testing", |
| 1293 | "vidNotions": {"instantiationUI": "legacy", "modelCategory": "other", "viewEditUI": "legacy"}, |
| 1294 | "isMultiStepDesign": true |
| 1295 | } |
| 1296 | }, |
| 1297 | "lcpRegionsAndTenants": { |
| 1298 | "lcpRegionList": [{ |
| 1299 | "id": "JANET25", |
| 1300 | "name": "JANET25 (AIC)", |
| 1301 | "isPermitted": true, |
| 1302 | "cloudOwner": "irma-aic" |
| 1303 | }, {"id": "hvf6", "name": "hvf6 (AIC)", "isPermitted": true, "cloudOwner": "irma-aic"}], |
| 1304 | "lcpRegionsTenantsMap": { |
| 1305 | "JANET25": [{ |
| 1306 | "id": "092eb9e8e4b7412e8787dd091bc58e86", |
| 1307 | "name": "USP-SIP-IC-24335-T-01", |
| 1308 | "isPermitted": true, |
| 1309 | "cloudOwner": "irma-aic" |
| 1310 | }], |
| 1311 | "hvf6": [{ |
| 1312 | "id": "bae71557c5bb4d5aac6743a4e5f1d054", |
| 1313 | "name": "AIN Web Tool-15-D-testalexandria", |
| 1314 | "isPermitted": true, |
| 1315 | "cloudOwner": "irma-aic" |
| 1316 | }, { |
| 1317 | "id": "229bcdc6eaeb4ca59d55221141d01f8e", |
| 1318 | "name": "AIN Web Tool-15-D-STTest2", |
| 1319 | "isPermitted": true, |
| 1320 | "cloudOwner": "irma-aic" |
| 1321 | }, { |
| 1322 | "id": "1178612d2b394be4834ad77f567c0af2", |
| 1323 | "name": "AIN Web Tool-15-D-SSPtestcustome", |
| 1324 | "isPermitted": true, |
| 1325 | "cloudOwner": "irma-aic" |
| 1326 | }, { |
| 1327 | "id": "19c5ade915eb461e8af52fb2fd8cd1f2", |
| 1328 | "name": "AIN Web Tool-15-D-UncheckedEcopm", |
| 1329 | "isPermitted": true, |
| 1330 | "cloudOwner": "irma-aic" |
| 1331 | }, { |
| 1332 | "id": "de007636e25249238447264a988a927b", |
| 1333 | "name": "AIN Web Tool-15-D-dfsdf", |
| 1334 | "isPermitted": true, |
| 1335 | "cloudOwner": "irma-aic" |
| 1336 | }, { |
| 1337 | "id": "62f29b3613634ca6a3065cbe0e020c44", |
| 1338 | "name": "AIN/SMS-16-D-Multiservices1", |
| 1339 | "isPermitted": true, |
| 1340 | "cloudOwner": "irma-aic" |
| 1341 | }, { |
| 1342 | "id": "649289e30d3244e0b48098114d63c2aa", |
| 1343 | "name": "AIN Web Tool-15-D-SSPST66", |
| 1344 | "isPermitted": true, |
| 1345 | "cloudOwner": "irma-aic" |
| 1346 | }, { |
| 1347 | "id": "3f21eeea6c2c486bba31dab816c05a32", |
| 1348 | "name": "AIN Web Tool-15-D-ASSPST47", |
| 1349 | "isPermitted": true, |
| 1350 | "cloudOwner": "irma-aic" |
| 1351 | }, { |
| 1352 | "id": "f60ce21d3ee6427586cff0d22b03b773", |
| 1353 | "name": "CESAR-100-D-sspjg67246", |
| 1354 | "isPermitted": true, |
| 1355 | "cloudOwner": "irma-aic" |
| 1356 | }, { |
| 1357 | "id": "8774659e425f479895ae091bb5d46560", |
| 1358 | "name": "CESAR-100-D-sspjg68359", |
| 1359 | "isPermitted": true, |
| 1360 | "cloudOwner": "irma-aic" |
| 1361 | }, { |
| 1362 | "id": "624eb554b0d147c19ff8885341760481", |
| 1363 | "name": "AINWebTool-15-D-iftach", |
| 1364 | "isPermitted": true, |
| 1365 | "cloudOwner": "irma-aic" |
| 1366 | }, { |
| 1367 | "id": "214f55f5fc414c678059c383b03e4962", |
| 1368 | "name": "CESAR-100-D-sspjg612401", |
| 1369 | "isPermitted": true, |
| 1370 | "cloudOwner": "irma-aic" |
| 1371 | }, { |
| 1372 | "id": "c90666c291664841bb98e4d981ff1db5", |
| 1373 | "name": "CESAR-100-D-sspjg621340", |
| 1374 | "isPermitted": true, |
| 1375 | "cloudOwner": "irma-aic" |
| 1376 | }, { |
| 1377 | "id": "ce5b6bc5c7b348e1bf4b91ac9a174278", |
| 1378 | "name": "sspjg621351cloned", |
| 1379 | "isPermitted": true, |
| 1380 | "cloudOwner": "irma-aic" |
| 1381 | }, { |
| 1382 | "id": "b386b768a3f24c8e953abbe0b3488c02", |
| 1383 | "name": "AINWebTool-15-D-eteancomp", |
| 1384 | "isPermitted": true, |
| 1385 | "cloudOwner": "irma-aic" |
| 1386 | }, { |
| 1387 | "id": "dc6c4dbfd225474e9deaadd34968646c", |
| 1388 | "name": "AINWebTool-15-T-SPFET", |
| 1389 | "isPermitted": true, |
| 1390 | "cloudOwner": "irma-aic" |
| 1391 | }, { |
| 1392 | "id": "02cb5030e9914aa4be120bd9ed1e19eb", |
| 1393 | "name": "AINWebTool-15-X-eeweww", |
| 1394 | "isPermitted": true, |
| 1395 | "cloudOwner": "irma-aic" |
| 1396 | }, { |
| 1397 | "id": "f2f3830e4c984d45bcd00e1a04158a79", |
| 1398 | "name": "CESAR-100-D-spjg61909", |
| 1399 | "isPermitted": true, |
| 1400 | "cloudOwner": "irma-aic" |
| 1401 | }, { |
| 1402 | "id": "05b91bd5137f4929878edd965755c06d", |
| 1403 | "name": "CESAR-100-D-sspjg621512cloned", |
| 1404 | "isPermitted": true, |
| 1405 | "cloudOwner": "irma-aic" |
| 1406 | }, { |
| 1407 | "id": "7002fbe8482d4a989ddf445b1ce336e0", |
| 1408 | "name": "AINWebTool-15-X-vdr", |
| 1409 | "isPermitted": true, |
| 1410 | "cloudOwner": "irma-aic" |
| 1411 | }, { |
| 1412 | "id": "4008522be43741dcb1f5422022a2aa0b", |
| 1413 | "name": "AINWebTool-15-D-ssasa", |
| 1414 | "isPermitted": true, |
| 1415 | "cloudOwner": "irma-aic" |
| 1416 | }, { |
| 1417 | "id": "f44e2e96a1b6476abfda2fa407b00169", |
| 1418 | "name": "AINWebTool-15-D-PFNPT", |
| 1419 | "isPermitted": true, |
| 1420 | "cloudOwner": "irma-aic" |
| 1421 | }, { |
| 1422 | "id": "b69a52bec8a84669a37a1e8b72708be7", |
| 1423 | "name": "AINWebTool-15-X-vdre", |
| 1424 | "isPermitted": true, |
| 1425 | "cloudOwner": "irma-aic" |
| 1426 | }, { |
| 1427 | "id": "fac7d9fd56154caeb9332202dcf2969f", |
| 1428 | "name": "AINWebTool-15-X-NONPODECOMP", |
| 1429 | "isPermitted": true, |
| 1430 | "cloudOwner": "irma-aic" |
| 1431 | }, { |
| 1432 | "id": "2d34d8396e194eb49969fd61ffbff961", |
| 1433 | "name": "DN5242-Nov16-T5", |
| 1434 | "isPermitted": true, |
| 1435 | "cloudOwner": "irma-aic" |
| 1436 | }, { |
| 1437 | "id": "cb42a77ff45b48a8b8deb83bb64acc74", |
| 1438 | "name": "ro-T11", |
| 1439 | "isPermitted": true, |
| 1440 | "cloudOwner": "irma-aic" |
| 1441 | }, { |
| 1442 | "id": "fa45ca53c80b492fa8be5477cd84fc2b", |
| 1443 | "name": "ro-T112", |
| 1444 | "isPermitted": true, |
| 1445 | "cloudOwner": "irma-aic" |
| 1446 | }, { |
| 1447 | "id": "4914ab0ab3a743e58f0eefdacc1dde77", |
| 1448 | "name": "DN5242-Nov21-T1", |
| 1449 | "isPermitted": true, |
| 1450 | "cloudOwner": "irma-aic" |
| 1451 | }, { |
| 1452 | "id": "d0a3e3f2964542259d155a81c41aadc3", |
| 1453 | "name": "test-hvf6-09", |
| 1454 | "isPermitted": true, |
| 1455 | "cloudOwner": "irma-aic" |
| 1456 | }, { |
| 1457 | "id": "cbb99fe4ada84631b7baf046b6fd2044", |
| 1458 | "name": "DN5242-Nov16-T3", |
| 1459 | "isPermitted": true, |
| 1460 | "cloudOwner": "irma-aic" |
| 1461 | }] |
| 1462 | } |
| 1463 | }, |
| 1464 | "subscribers": [{ |
| 1465 | "id": "ERICA5779-Subscriber-2", |
| 1466 | "name": "ERICA5779-Subscriber-2", |
| 1467 | "isPermitted": false |
| 1468 | }, { |
| 1469 | "id": "ERICA5779-Subscriber-3", |
| 1470 | "name": "ERICA5779-Subscriber-3", |
| 1471 | "isPermitted": false |
| 1472 | }, { |
| 1473 | "id": "ERICA5779-Subscriber-4", |
| 1474 | "name": "ERICA5779-Subscriber-5", |
| 1475 | "isPermitted": false |
| 1476 | }, { |
| 1477 | "id": "ERICA5779-TestSub-PWT-101", |
| 1478 | "name": "ERICA5779-TestSub-PWT-101", |
| 1479 | "isPermitted": false |
| 1480 | }, { |
| 1481 | "id": "ERICA5779-TestSub-PWT-102", |
| 1482 | "name": "ERICA5779-TestSub-PWT-102", |
| 1483 | "isPermitted": false |
| 1484 | }, { |
| 1485 | "id": "ERICA5779-TestSub-PWT-103", |
| 1486 | "name": "ERICA5779-TestSub-PWT-103", |
| 1487 | "isPermitted": false |
| 1488 | }, { |
| 1489 | "id": "31739f3e-526b-11e6-beb8-9e71128cae77", |
| 1490 | "name": "CRAIG/ROBERTS", |
| 1491 | "isPermitted": false |
| 1492 | }, {"id": "DHV1707-TestSubscriber-2", "name": "DALE BRIDGES", "isPermitted": false}, { |
| 1493 | "id": "jimmy-example", |
| 1494 | "name": "JimmyExampleCust-20161102", |
| 1495 | "isPermitted": false |
| 1496 | }, {"id": "jimmy-example2", "name": "JimmyExampleCust-20161103", "isPermitted": false}, { |
| 1497 | "id": "CAR_2020_ER", |
| 1498 | "name": "CAR_2020_ER", |
| 1499 | "isPermitted": true |
| 1500 | }, { |
| 1501 | "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb", |
| 1502 | "name": "Emanuel", |
| 1503 | "isPermitted": false |
| 1504 | }, { |
| 1505 | "id": "21014aa2-526b-11e6-beb8-9e71128cae77", |
| 1506 | "name": "JULIO ERICKSON", |
| 1507 | "isPermitted": false |
| 1508 | }, { |
| 1509 | "id": "DHV1707-TestSubscriber-1", |
| 1510 | "name": "LLOYD BRIDGES", |
| 1511 | "isPermitted": false |
| 1512 | }, {"id": "e433710f-9217-458d-a79d-1c7aff376d89", "name": "SILVIA ROBBINS", "isPermitted": true}], |
| 1513 | "productFamilies": null, |
| 1514 | "serviceTypes": { |
| 1515 | "e433710f-9217-458d-a79d-1c7aff376d89": [{ |
| 1516 | "id": "17", |
| 1517 | "name": "JOHANNA_SANTOS", |
| 1518 | "isPermitted": false |
| 1519 | }, {"id": "16", "name": "LINDSEY", "isPermitted": false}, { |
| 1520 | "id": "2", |
| 1521 | "name": "Emanuel", |
| 1522 | "isPermitted": false |
| 1523 | }, {"id": "5", "name": "Kennedy", "isPermitted": false}, { |
| 1524 | "id": "14", |
| 1525 | "name": "SSD", |
| 1526 | "isPermitted": false |
| 1527 | }, {"id": "1", "name": "TYLER SILVIA", "isPermitted": true}, { |
| 1528 | "id": "12", |
| 1529 | "name": "VPMS", |
| 1530 | "isPermitted": false |
| 1531 | }, {"id": "3", "name": "vJamie", "isPermitted": false}, { |
| 1532 | "id": "0", |
| 1533 | "name": "vRichardson", |
| 1534 | "isPermitted": false |
| 1535 | }, {"id": "18", "name": "vCarroll", "isPermitted": false}, { |
| 1536 | "id": "9", |
| 1537 | "name": "vMME", |
| 1538 | "isPermitted": false |
| 1539 | }, {"id": "13", "name": "vMMSC", "isPermitted": false}, { |
| 1540 | "id": "10", |
| 1541 | "name": "vMNS", |
| 1542 | "isPermitted": false |
| 1543 | }, {"id": "15", "name": "vMOG", "isPermitted": false}, { |
| 1544 | "id": "8", |
| 1545 | "name": "vOTA", |
| 1546 | "isPermitted": false |
| 1547 | }, {"id": "11", "name": "vSCP", "isPermitted": false}, { |
| 1548 | "id": "6", |
| 1549 | "name": "vSEGW", |
| 1550 | "isPermitted": false |
| 1551 | }, {"id": "7", "name": "vVM", "isPermitted": false}, {"id": "4", "name": "vVoiceMail", "isPermitted": false}] |
| 1552 | }, |
| 1553 | "aicZones": [{"id": "ATL53", "name": "AAIATLTE-ATL53"}, {"id": "ABC15", "name": "AAITESAN-ABC15"}, { |
| 1554 | "id": "TES36", |
| 1555 | "name": "ABCEETES-TES36" |
| 1556 | }, {"id": "ATL54", "name": "AICFTAAI-ATL54"}, {"id": "ATL43", "name": "AICLOCID-ATL43"}, { |
| 1557 | "id": "AMD15", |
| 1558 | "name": "AMDFAA01-AMD15" |
| 1559 | }, {"id": "AMF11", "name": "AMDOCS01-AMF11"}, {"id": "RCT1", "name": "AMSTERNL-RCT1"}, { |
| 1560 | "id": "AMS1", |
| 1561 | "name": "AMSTNLBW-AMS1" |
| 1562 | }, {"id": "HJH1", "name": "AOEEQQQD-HJH1"}, {"id": "HJE1", "name": "AOEEWWWD-HJE1"}, { |
| 1563 | "id": "MCS1", |
| 1564 | "name": "ASACMAMS-MCS1" |
| 1565 | }, {"id": "AUG1", "name": "ASDFGHJK-AUG1"}, {"id": "LUC1", "name": "ATLDFGYC-LUC1"}, { |
| 1566 | "id": "ATL1", |
| 1567 | "name": "ATLNGAMA-ATL1" |
| 1568 | }, {"id": "ATL2", "name": "ATLNGANW-ATL2"}, {"id": "HPO1", "name": "ATLNGAUP-HPO1"}, { |
| 1569 | "id": "ANI1", |
| 1570 | "name": "ATLNGTRE-ANI1" |
| 1571 | }, {"id": "ATL44", "name": "ATLSANAB-ATL44"}, {"id": "ATL56", "name": "ATLSANAC-ATL56"}, { |
| 1572 | "id": "ABC11", |
| 1573 | "name": "ATLSANAI-ABC11" |
| 1574 | }, {"id": "ATL34", "name": "ATLSANAI-ATL34"}, {"id": "ATL63", "name": "ATLSANEW-ATL63"}, { |
| 1575 | "id": "ABC12", |
| 1576 | "name": "ATLSECIA-ABC12" |
| 1577 | }, {"id": "AMD18", "name": "AUDIMA01-AMD18"}, {"id": "AVT1", "name": "AVTRFLHD-AVT1"}, { |
| 1578 | "id": "KIT1", |
| 1579 | "name": "BHYJFGLN-KIT1" |
| 1580 | }, {"id": "BHY17", "name": "BHYTFRF3-BHY17"}, {"id": "RTW5", "name": "BHYTFRY4-RTW5"}, { |
| 1581 | "id": "RTZ4", |
| 1582 | "name": "BHYTFRZ6-RTZ4" |
| 1583 | }, {"id": "RTD2", "name": "BHYTFRk4-RTD2"}, {"id": "BNA1", "name": "BNARAGBK-BNA1"}, { |
| 1584 | "id": "VEL1", |
| 1585 | "name": "BNMLKUIK-VEL1" |
| 1586 | }, {"id": "BOT1", "name": "BOTHWAKY-BOT1"}, {"id": "CAL33", "name": "CALIFORN-CAL33"}, { |
| 1587 | "id": "ATL84", |
| 1588 | "name": "CANTTCOC-ATL84" |
| 1589 | }, {"id": "HSD1", "name": "CHASKCDS-HSD1"}, {"id": "CHI1", "name": "CHILLIWE-CHI1"}, { |
| 1590 | "id": "XCP12", |
| 1591 | "name": "CHKGH123-XCP12" |
| 1592 | }, {"id": "JNL1", "name": "CJALSDAC-JNL1"}, {"id": "KJN1", "name": "CKALDKSA-KJN1"}, { |
| 1593 | "id": "CLG1", |
| 1594 | "name": "CLGRABAD-CLG1" |
| 1595 | }, {"id": "CKL1", "name": "CLKSKCKK-CKL1"}, {"id": "ATL66", "name": "CLLIAAII-ATL66"}, { |
| 1596 | "id": "CQK1", |
| 1597 | "name": "CQKSCAKK-CQK1" |
| 1598 | }, {"id": "CWY1", "name": "CWYMOWBS-CWY1"}, {"id": "DKJ1", "name": "DKJSJDKA-DKJ1"}, { |
| 1599 | "id": "DSF45", |
| 1600 | "name": "DSFBG123-DSF45" |
| 1601 | }, {"id": "DSL12", "name": "DSLFK242-DSL12"}, {"id": "FDE55", "name": "FDERT555-FDE55"}, { |
| 1602 | "id": "VEN2", |
| 1603 | "name": "FGHJUHIL-VEN2" |
| 1604 | }, {"id": "ATL64", "name": "FORLOAAJ-ATL64"}, {"id": "GNV1", "name": "GNVLSCTL-GNV1"}, { |
| 1605 | "id": "SAN22", |
| 1606 | "name": "GNVLSCTL-SAN22" |
| 1607 | }, {"id": "KAP1", "name": "HIOUYTRQ-KAP1"}, {"id": "LIS1", "name": "HOSTPROF-LIS1"}, { |
| 1608 | "id": "HRG1", |
| 1609 | "name": "HRGHRGGS-HRG1" |
| 1610 | }, {"id": "HST25", "name": "HSTNTX01-HST25"}, {"id": "STN27", "name": "HSTNTX01-STN27"}, { |
| 1611 | "id": "HST70", |
| 1612 | "name": "HSTNTX70-HST70" |
| 1613 | }, {"id": "KOR1", "name": "HYFLNBVT-KOR1"}, {"id": "RAD10", "name": "INDIPUNE-RAD10"}, { |
| 1614 | "id": "REL1", |
| 1615 | "name": "INGERFGT-REL1" |
| 1616 | }, {"id": "JAD1", "name": "JADECLLI-JAD1"}, {"id": "HKA1", "name": "JAKHLASS-HKA1"}, { |
| 1617 | "id": "JCS1", |
| 1618 | "name": "JCSJSCJS-JCS1" |
| 1619 | }, {"id": "JCV1", "name": "JCVLFLBW-JCV1"}, {"id": "KGM2", "name": "KGMTNC20-KGM2"}, { |
| 1620 | "id": "KJF12", |
| 1621 | "name": "KJFDH123-KJF12" |
| 1622 | }, {"id": "JGS1", "name": "KSJKKKKK-JGS1"}, {"id": "LAG1", "name": "LARGIZON-LAG1"}, { |
| 1623 | "id": "LAG1a", |
| 1624 | "name": "LARGIZON-LAG1a" |
| 1625 | }, {"id": "LAG45", "name": "LARGIZON-LAG1a"}, {"id": "LAG1b", "name": "LARGIZON-LAG1b"}, { |
| 1626 | "id": "WAN1", |
| 1627 | "name": "LEIWANGW-WAN1" |
| 1628 | }, {"id": "DSA1", "name": "LKJHGFDS-DSA1"}, {"id": "LON1", "name": "LONEENCO-LON1"}, { |
| 1629 | "id": "SITE", |
| 1630 | "name": "LONEENCO-SITE" |
| 1631 | }, {"id": "ZXL1", "name": "LWLWCANN-ZXL1"}, {"id": "MTN20", "name": "MDTWNJ21-MTN20"}, { |
| 1632 | "id": "MTN32", |
| 1633 | "name": "MDTWNJ21-MTN32" |
| 1634 | }, {"id": "AMD13", "name": "MEMATLAN-AMD13"}, {"id": "MIC54", "name": "MICHIGAN-MIC54"}, { |
| 1635 | "id": "MAR1", |
| 1636 | "name": "MNBVCXZM-MAR1" |
| 1637 | }, {"id": "NCA1", "name": "NCANCANN-NCA1"}, {"id": "NFT1", "name": "NFTJSSSS-NFT1"}, { |
| 1638 | "id": "GAR1", |
| 1639 | "name": "NGFVSJKO-GAR1" |
| 1640 | }, {"id": "NYC1", "name": "NYCMNY54-NYC1"}, {"id": "OKC1", "name": "OKCBOK55-OKC1"}, { |
| 1641 | "id": "OLG1", |
| 1642 | "name": "OLHOLHOL-OLG1" |
| 1643 | }, {"id": "OLK1", "name": "OLKOLKLS-OLK1"}, {"id": "NIR1", "name": "ORFLMANA-NIR1"}, { |
| 1644 | "id": "JAN1", |
| 1645 | "name": "ORFLMATT-JAN1" |
| 1646 | }, {"id": "ORL1", "name": "ORLDFLMA-ORL1"}, {"id": "PAR1", "name": "PARSFRCG-PAR1"}, { |
| 1647 | "id": "PBL1", |
| 1648 | "name": "PBLAPBAI-PBL1" |
| 1649 | }, {"id": "mac10", "name": "PKGTESTF-mac10"}, {"id": "mac20", "name": "PKGTESTF-mac20"}, { |
| 1650 | "id": "TIR2", |
| 1651 | "name": "PLKINHYI-TIR2" |
| 1652 | }, {"id": "IBB1", "name": "PLMKOIJU-IBB1"}, {"id": "COM1", "name": "PLMKOPIU-COM1"}, { |
| 1653 | "id": "POI1", |
| 1654 | "name": "PLMNJKIU-POI1" |
| 1655 | }, {"id": "PLT1", "name": "PLTNCA60-PLT1"}, {"id": "POI22", "name": "POIUY123-POI22"}, { |
| 1656 | "id": "DCC1", |
| 1657 | "name": "POIUYTGH-DCC1" |
| 1658 | }, {"id": "DCC1a", "name": "POIUYTGH-DCC1a"}, {"id": "DCC1b", "name": "POIUYTGH-DCC1b"}, { |
| 1659 | "id": "DCC2", |
| 1660 | "name": "POIUYTGH-DCC2" |
| 1661 | }, {"id": "DCC3", "name": "POIUYTGH-DCC3"}, {"id": "IAA1", "name": "QAZXSWED-IAA1"}, { |
| 1662 | "id": "QWE1", |
| 1663 | "name": "QWECLLI1-QWE1" |
| 1664 | }, {"id": "NUM1", "name": "QWERTYUI-NUM1"}, {"id": "RAD1", "name": "RADICAL1-RAD1"}, { |
| 1665 | "id": "RJN1", |
| 1666 | "name": "RJNRBZAW-RJN1" |
| 1667 | }, {"id": "SAA13", "name": "SAIT1AA9-SAA13"}, {"id": "SAA14", "name": "SAIT1AA9-SAA14"}, { |
| 1668 | "id": "SDD81", |
| 1669 | "name": "SAIT1DD6-SDD81" |
| 1670 | }, {"id": "SDD82", "name": "SAIT1DD9-SDD82"}, {"id": "SAA11", "name": "SAIT9AA2-SAA11"}, { |
| 1671 | "id": "SAA80", |
| 1672 | "name": "SAIT9AA3-SAA80" |
| 1673 | }, {"id": "SAA12", "name": "SAIT9AF8-SAA12"}, {"id": "SCC80", "name": "SAIT9CC3-SCC80"}, { |
| 1674 | "id": "ATL75", |
| 1675 | "name": "SANAAIRE-ATL75" |
| 1676 | }, {"id": "ICC1", "name": "SANJITAT-ICC1"}, {"id": "SCK1", "name": "SCKSCKSK-SCK1"}, { |
| 1677 | "id": "EHH78", |
| 1678 | "name": "SDCSHHH5-EHH78" |
| 1679 | }, {"id": "SAA78", "name": "SDCTAAA1-SAA78"}, {"id": "SAX78", "name": "SDCTAXG1-SAX78"}, { |
| 1680 | "id": "SBX78", |
| 1681 | "name": "SDCTBXG1-SBX78" |
| 1682 | }, {"id": "SEE78", "name": "SDCTEEE4-SEE78"}, {"id": "SGG78", "name": "SDCTGGG1-SGG78"}, { |
| 1683 | "id": "SXB78", |
| 1684 | "name": "SDCTGXB1-SXB78" |
| 1685 | }, {"id": "SJJ78", "name": "SDCTJJJ1-SJJ78"}, {"id": "SKK78", "name": "SDCTKKK1-SKK78"}, { |
| 1686 | "id": "SLF78", |
| 1687 | "name": "SDCTLFN1-SLF78" |
| 1688 | }, {"id": "SLL78", "name": "SDCTLLL1-SLL78"}, {"id": "MAD11", "name": "SDFQWGKL-MAD11"}, { |
| 1689 | "id": "HGD1", |
| 1690 | "name": "SDFQWHGD-HGD1" |
| 1691 | }, {"id": "SBB78", "name": "SDIT1BBB-SBB78"}, {"id": "SDG78", "name": "SDIT1BDG-SDG78"}, { |
| 1692 | "id": "SBU78", |
| 1693 | "name": "SDIT1BUB-SBU78" |
| 1694 | }, {"id": "SHH78", "name": "SDIT1HHH-SHH78"}, {"id": "SJU78", "name": "SDIT1JUB-SJU78"}, { |
| 1695 | "id": "SNA1", |
| 1696 | "name": "SNANTXCA-SNA1" |
| 1697 | }, {"id": "SAM1", "name": "SNDGCA64-SAN1"}, {"id": "SNG1", "name": "SNGPSIAU-SNG1"}, { |
| 1698 | "id": "SSA56", |
| 1699 | "name": "SSIT2AA7-SSA56" |
| 1700 | }, {"id": "STG1", "name": "STTGGE62-STG1"}, {"id": "STT1", "name": "STTLWA02-STT1"}, { |
| 1701 | "id": "SYD1", |
| 1702 | "name": "SYDNAUBV-SYD1" |
| 1703 | }, {"id": "ATL99", "name": "TEESTAAI-ATL43"}, {"id": "ATL98", "name": "TEESTAAI-ATL43"}, { |
| 1704 | "id": "ATL76", |
| 1705 | "name": "TELEPAAI-ATL76" |
| 1706 | }, {"id": "ABC14", "name": "TESAAISA-ABC14"}, {"id": "TAT33", "name": "TESAAISA-TAT33"}, { |
| 1707 | "id": "TAT34", |
| 1708 | "name": "TESAAISB-TAT34" |
| 1709 | }, {"id": "TAT37", "name": "TESAAISD-TAT37"}, {"id": "ATL62", "name": "TESSASCH-ATL62"}, { |
| 1710 | "id": "TLP1", |
| 1711 | "name": "TLPNXM18-TLP1" |
| 1712 | }, {"id": "SAN13", "name": "TOKYJPFA-SAN13"}, {"id": "TOK1", "name": "TOKYJPFA-TOK1"}, { |
| 1713 | "id": "TOL1", |
| 1714 | "name": "TOLDOH21-TOL1" |
| 1715 | }, {"id": "TOR1", "name": "TOROONXN-TOR1"}, {"id": "TOY1", "name": "TORYONNZ-TOY1"}, { |
| 1716 | "id": "ATL35", |
| 1717 | "name": "TTESSAAI-ATL35" |
| 1718 | }, {"id": "TUF1", "name": "TUFCLLI1-TUF1"}, {"id": "SAI1", "name": "UBEKQLPD-SAI1"}, { |
| 1719 | "id": "UUU4", |
| 1720 | "name": "UUUAAAUU-UUU4" |
| 1721 | }, {"id": "YYY1", "name": "UUUAIAAI-YYY1"}, {"id": "BAN1", "name": "VSDKYUTP-BAN1"}, { |
| 1722 | "id": "WAS1", |
| 1723 | "name": "WASHDCSW-WAS1" |
| 1724 | }, {"id": "APP1", "name": "WBHGTYUI-APP1"}, {"id": "SUL2", "name": "WERTYUJK-SUL2"}, { |
| 1725 | "id": "DEF2", |
| 1726 | "name": "WSBHGTYL-DEF2" |
| 1727 | }, {"id": "DHA12", "name": "WSXEDECF-DHA12"}, {"id": "MNT11", "name": "WSXEFBTH-MNT11"}, { |
| 1728 | "id": "RAJ1", |
| 1729 | "name": "YGBIJNLQ-RAJ1" |
| 1730 | }, {"id": "JAG1", "name": "YUDFJULP-JAG1"}, {"id": "ZEN1", "name": "ZENCLLI1-ZEN1"}, { |
| 1731 | "id": "ZOG1", |
| 1732 | "name": "ZOGASTRO-ZOG1" |
| 1733 | }, {"id": "SDE1", "name": "ZXCVBNMA-SDE1"}, {"id": "SIP1", "name": "ZXCVBNMK-SIP1"}, { |
| 1734 | "id": "JUL1", |
| 1735 | "name": "ZXCVBNMM-JUL1" |
| 1736 | }, {"id": "ERT1", "name": "ertclli1-ERT1"}, {"id": "IOP1", "name": "iopclli1-IOP1"}, { |
| 1737 | "id": "OPA1", |
| 1738 | "name": "opaclli1-OPA1" |
| 1739 | }, {"id": "RAI1", "name": "poiuytre-RAI1"}, {"id": "PUR1", "name": "purelyde-PUR1"}, { |
| 1740 | "id": "RTY1", |
| 1741 | "name": "rtyclli1-RTY1" |
| 1742 | }, {"id": "SDF1", "name": "sdfclli1-SDF1"}, {"id": "SSW56", "name": "ss8126GT-SSW56"}, { |
| 1743 | "id": "UIO1", |
| 1744 | "name": "uioclli1-UIO1" |
| 1745 | }], |
| 1746 | "categoryParameters": { |
| 1747 | "owningEntityList": [{ |
| 1748 | "id": "aaa1", |
| 1749 | "name": "aaa1" |
| 1750 | }, {"id": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc", "name": "WayneHolland"}, { |
| 1751 | "id": "Melissa", |
| 1752 | "name": "Melissa" |
| 1753 | }], |
| 1754 | "projectList": [{"id": "WATKINS", "name": "WATKINS"}, {"id": "x1", "name": "x1"}, {"id": "yyy1", "name": "yyy1"}], |
| 1755 | "lineOfBusinessList": [{"id": "ONAP", "name": "ONAP"}, {"id": "zzz1", "name": "zzz1"}], |
| 1756 | "platformList": [{"id": "platform", "name": "platform"}, {"id": "xxx1", "name": "xxx1"}] |
| 1757 | }, |
| 1758 | "type": "UPDATE_LCP_REGIONS_AND_TENANTS" |
| 1759 | } |
| 1760 | } |
| 1761 | } |