Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 1 | ///<reference path="../../../node_modules/cypress/types/index.d.ts"/> |
| 2 | |
| 3 | describe('Vnf popup', function () { |
| 4 | describe('basic UI tests', () => { |
| 5 | |
| 6 | beforeEach(() => { |
| 7 | cy.window().then((win) => { |
| 8 | win.sessionStorage.clear(); |
| 9 | cy.setReduxState(); |
| 10 | cy.preventErrorsOnLoading(); |
| 11 | cy.initAAIMock(); |
| 12 | cy.initVidMock(); |
| 13 | cy.login(); |
| 14 | }) |
| 15 | }); |
| 16 | |
| 17 | afterEach(() => { |
| 18 | cy.screenshot(); |
| 19 | }); |
| 20 | |
| 21 | it('volume group should change on instance name blur if the value is null or empty', function () { |
| 22 | let redux = getReduxWithVNFS(); |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 23 | redux.service.serviceHierarchy['6e59c5de-f052-46fa-aa7e-2fca9d674c44'].vnfs['VF_vGeraldine 0'].properties['ecomp_generated_naming'] = 'false'; |
| 24 | redux.service.serviceHierarchy['6e59c5de-f052-46fa-aa7e-2fca9d674c44'].vfModules['vf_vgeraldine0..VfVgeraldine..vflorence_vlc..module-1']['volumeGroupAllowed'] = true; |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 25 | |
| 26 | cy.setReduxState(<any>redux); |
| 27 | cy.openIframe('app/ui/#/servicePlanning?serviceModelId=6e59c5de-f052-46fa-aa7e-2fca9d674c44'); |
| 28 | |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 29 | cy.getElementByDataTestsId('node-522159d5-d6e0-4c2a-aa44-5a542a12a830-vf_vgeraldine0..VfVgeraldine..vflorence_vlc..module-1-menu-btn').click({force: true}) |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 30 | .getElementByDataTestsId('context-menu-edit').click({force: true}) |
| 31 | .getElementByDataTestsId('form-set').should('not.have.attr', 'disabled') |
| 32 | .getElementByDataTestsId("instanceName").clear() |
| 33 | .getElementByDataTestsId('form-set').should('have.attr', 'disabled') |
| 34 | .typeToInput('instanceName', 'someInput1'); |
| 35 | cy.getElementByDataTestsId('instanceName').blur(); |
| 36 | cy.getElementByDataTestsId("volumeGroupName").should('have.value', 'someInput1_vol'); |
| 37 | cy.getElementByDataTestsId('form-set').should('not.have.attr', 'disabled'); |
| 38 | cy.typeToInput('volumeGroupName', 'textAfter'); |
| 39 | cy.getElementByDataTestsId('form-set').click() |
| 40 | .get('#drawing-board-tree .toggle-children').click() |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 41 | .getElementByDataTestsId('node-522159d5-d6e0-4c2a-aa44-5a542a12a830-vf_vgeraldine0..VfVgeraldine..vflorence_vlc..module-1-menu-btn').click({force: true}) |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 42 | .getElementByDataTestsId('context-menu-edit').click({force: true}) |
| 43 | .getElementByDataTestsId("volumeGroupName").should('have.value', 'someInput1_voltextAfter'); |
| 44 | |
| 45 | }); |
| 46 | |
| 47 | it('should display min/max', function () { |
| 48 | cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/emptyServiceRedux.json').then((res) => { |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 49 | res.service.serviceHierarchy['2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd'].vnfs['2017-488_PASQUALE-vPE 0'].properties.min_instances = 100; |
| 50 | res.service.serviceHierarchy['2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd'].vnfs['2017-488_PASQUALE-vPE 0'].properties.max_instances = 200; |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 51 | cy.setReduxState(<any>res); |
| 52 | cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd'); |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 53 | cy.getElementByDataTestsId('node-2017-488_PASQUALE-vPE 0-add-btn').click({force : true}); |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 54 | cy.getElementByDataTestsId('model-item-label-vnf-min').contains('Minimum to instantiate'); |
| 55 | cy.getElementByDataTestsId('model-item-value-vnf-min').contains('100'); |
| 56 | cy.getElementByDataTestsId('model-item-label-vnf-max').contains('Maximum to instantiate'); |
| 57 | cy.getElementByDataTestsId('model-item-value-vnf-max').contains('200'); |
| 58 | }) |
| 59 | }); |
| 60 | |
| 61 | it('should display default values for undefined min/max', function () { |
| 62 | cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/emptyServiceRedux.json').then((res) => { |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 63 | res.service.serviceHierarchy['2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd'].vnfs['2017-488_PASQUALE-vPE 0'].properties.min_instances = null; |
| 64 | res.service.serviceHierarchy['2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd'].vnfs['2017-488_PASQUALE-vPE 0'].properties.max_instances = null; |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 65 | cy.setReduxState(<any>res); |
| 66 | cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd'); |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 67 | cy.getElementByDataTestsId('node-2017-488_PASQUALE-vPE 0-add-btn').click({force : true}); |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 68 | cy.getElementByDataTestsId('model-item-label-vnf-min').contains('Minimum to instantiate'); |
| 69 | cy.getElementByDataTestsId('model-item-value-vnf-min').contains('0'); |
| 70 | cy.getElementByDataTestsId('model-item-label-vnf-max').contains('Maximum to instantiate'); |
| 71 | cy.getElementByDataTestsId('model-item-value-vnf-max').contains('1'); |
| 72 | }) |
| 73 | }); |
| 74 | |
| 75 | it('fill all fields of vnf popup', function () { |
| 76 | cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/emptyServiceRedux.json').then((res) => { |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 77 | res.service.serviceHierarchy['2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd'].vnfs['2017-488_PASQUALE-vPE 0'].min = null; |
| 78 | res.service.serviceHierarchy['2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd'].vnfs['2017-488_PASQUALE-vPE 0'].max = null; |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 79 | cy.setReduxState(<any>res); |
| 80 | cy.openIframe('app/ui/#/servicePlanning?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd'); |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 81 | cy.getElementByDataTestsId('node-2017-488_PASQUALE-vPE 0-add-btn').click({force : true}); |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 82 | cy.selectDropdownOptionByText('productFamily', 'Emanuel'); |
| 83 | cy.selectDropdownOptionByText('lcpRegion', 'hvf6'); |
| 84 | cy.selectDropdownOptionByText('tenant', 'AIN Web Tool-15-D-STTest2'); |
| 85 | cy.selectDropdownOptionByText('lineOfBusiness', 'zzz1'); |
| 86 | cy.selectDropdownOptionByText('platform', 'xxx1'); |
| 87 | |
| 88 | }) |
| 89 | }); |
| 90 | |
| 91 | function getReduxWithVNFS(){ |
| 92 | return { |
| 93 | "global": { |
| 94 | "name": null, |
| 95 | "flags": { |
| 96 | "FLAG_NETWORK_TO_ASYNC_INSTANTIATION": false, |
| 97 | "FLAG_SHOW_ASSIGNMENTS": true, |
| 98 | "FLAG_FABRIC_CONFIGURATION_ASSIGNMENTS": true, |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 99 | "FLAG_SHOW_VERIFY_SERVICE": false, |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 100 | "FLAG_SERVICE_MODEL_CACHE": true, |
| 101 | "CREATE_INSTANCE_TEST": false, |
| 102 | "FLAG_SETTING_DEFAULTS_IN_DRAWING_BOARD": false, |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 103 | "EMPTY_DRAWING_BOARD_TEST": false, |
| 104 | "FLAG_ADD_MSO_TESTAPI_FIELD": true |
| 105 | }, |
| 106 | "type": "[FLAGS] Update" |
| 107 | }, |
| 108 | "service": { |
| 109 | "serviceHierarchy": { |
| 110 | "6e59c5de-f052-46fa-aa7e-2fca9d674c44": { |
| 111 | "service": { |
| 112 | "uuid": "6e59c5de-f052-46fa-aa7e-2fca9d674c44", |
| 113 | "invariantUuid": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0", |
| 114 | "name": "ComplexService", |
| 115 | "version": "1.0", |
| 116 | "toscaModelURL": null, |
| 117 | "category": "Emanuel", |
| 118 | "serviceType": "", |
| 119 | "serviceRole": "", |
| 120 | "description": "ComplexService", |
| 121 | "serviceEcompNaming": "true", |
| 122 | "instantiationType": "Macro", |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 123 | "vidNotions": { |
| 124 | "instantiationType": "Macro" |
| 125 | }, |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 126 | "inputs": {} |
| 127 | }, |
| 128 | "vnfs": { |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 129 | "VF_vGeraldine 0": { |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 130 | "uuid": "d6557200-ecf2-4641-8094-5393ae3aae60", |
| 131 | "invariantUuid": "4160458e-f648-4b30-a176-43881ffffe9e", |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 132 | "description": "VSP_vGeraldine", |
| 133 | "name": "VF_vGeraldine", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 134 | "version": "2.0", |
| 135 | "customizationUuid": "91415b44-753d-494c-926a-456a9172bbb9", |
| 136 | "inputs": {}, |
| 137 | "commands": {}, |
| 138 | "properties": { |
| 139 | "max_instances" : 10, |
| 140 | "min_instances" : 1, |
| 141 | "gpb2_Internal2_mac": "00:11:22:EF:AC:DF", |
| 142 | "sctp-b-ipv6-egress_src_start_port": "0", |
| 143 | "sctp-a-ipv6-egress_rule_application": "any", |
| 144 | "Internal2_allow_transit": "true", |
| 145 | "sctp-b-IPv6_ethertype": "IPv6", |
| 146 | "sctp-a-egress_rule_application": "any", |
| 147 | "sctp-b-ingress_action": "pass", |
| 148 | "sctp-b-ingress_rule_protocol": "icmp", |
| 149 | "ncb2_Internal1_mac": "00:11:22:EF:AC:DF", |
| 150 | "sctp-b-ipv6-ingress-src_start_port": "0.0", |
| 151 | "ncb1_Internal2_mac": "00:11:22:EF:AC:DF", |
| 152 | "fsb_volume_size_0": "320.0", |
| 153 | "sctp-b-egress_src_addresses": "local", |
| 154 | "sctp-a-ipv6-ingress_ethertype": "IPv4", |
| 155 | "sctp-a-ipv6-ingress-dst_start_port": "0", |
| 156 | "sctp-b-ipv6-ingress_rule_application": "any", |
| 157 | "domain_name": "default-domain", |
| 158 | "sctp-a-ingress_rule_protocol": "icmp", |
| 159 | "sctp-b-egress-src_start_port": "0.0", |
| 160 | "sctp-a-egress_src_addresses": "local", |
| 161 | "sctp-b-display_name": "epc-sctp-b-ipv4v6-sec-group", |
| 162 | "sctp-a-egress-src_start_port": "0.0", |
| 163 | "sctp-a-ingress_ethertype": "IPv4", |
| 164 | "sctp-b-ipv6-ingress-dst_end_port": "65535", |
| 165 | "sctp-b-dst_subnet_prefix_v6": "::", |
| 166 | "nf_naming": "{ecomp_generated_naming=true}", |
| 167 | "sctp-a-ipv6-ingress_src_subnet_prefix": "0.0.0.0", |
| 168 | "sctp-b-egress-dst_start_port": "0.0", |
| 169 | "ncb_flavor_name": "nv.c20r64d1", |
| 170 | "gpb1_Internal1_mac": "00:11:22:EF:AC:DF", |
| 171 | "sctp-b-egress_dst_subnet_prefix_len": "0.0", |
| 172 | "Internal2_net_cidr": "10.0.0.10", |
| 173 | "sctp-a-ingress-dst_start_port": "0.0", |
| 174 | "sctp-a-egress-dst_start_port": "0.0", |
| 175 | "fsb1_Internal2_mac": "00:11:22:EF:AC:DF", |
| 176 | "sctp-a-egress_ethertype": "IPv4", |
| 177 | "vlc_st_service_mode": "in-network-nat", |
| 178 | "sctp-a-ipv6-egress_ethertype": "IPv4", |
| 179 | "sctp-a-egress-src_end_port": "65535.0", |
| 180 | "sctp-b-ipv6-egress_rule_application": "any", |
| 181 | "sctp-b-egress_action": "pass", |
| 182 | "sctp-a-ingress-src_subnet_prefix_len": "0.0", |
| 183 | "sctp-b-ipv6-ingress-src_end_port": "65535.0", |
| 184 | "sctp-b-name": "epc-sctp-b-ipv4v6-sec-group", |
| 185 | "fsb2_Internal1_mac": "00:11:22:EF:AC:DF", |
| 186 | "sctp-a-ipv6-ingress-src_start_port": "0.0", |
| 187 | "sctp-b-ipv6-egress_ethertype": "IPv4", |
| 188 | "Internal1_net_cidr": "10.0.0.10", |
| 189 | "sctp-a-egress_dst_subnet_prefix": "0.0.0.0", |
| 190 | "fsb_flavor_name": "nv.c20r64d1", |
| 191 | "sctp_rule_protocol": "132", |
| 192 | "sctp-b-ipv6-ingress_src_subnet_prefix_len": "0", |
| 193 | "sctp-a-ipv6-ingress_rule_application": "any", |
| 194 | "ecomp_generated_naming": "true", |
| 195 | "sctp-a-IPv6_ethertype": "IPv6", |
| 196 | "vlc2_Internal1_mac": "00:11:22:EF:AC:DF", |
| 197 | "vlc_st_virtualization_type": "virtual-machine", |
| 198 | "sctp-b-ingress-dst_start_port": "0.0", |
| 199 | "sctp-b-ingress-dst_end_port": "65535.0", |
| 200 | "sctp-a-ipv6-ingress-src_end_port": "65535.0", |
| 201 | "sctp-a-display_name": "epc-sctp-a-ipv4v6-sec-group", |
| 202 | "sctp-b-ingress_rule_application": "any", |
| 203 | "int2_sec_group_name": "int2-sec-group", |
| 204 | "vlc_flavor_name": "nd.c16r64d1", |
| 205 | "sctp-b-ipv6-egress_src_addresses": "local", |
| 206 | "vlc_st_interface_type_int1": "other1", |
| 207 | "sctp-b-egress-src_end_port": "65535.0", |
| 208 | "sctp-a-ipv6-egress-dst_start_port": "0", |
| 209 | "vlc_st_interface_type_int2": "other2", |
| 210 | "sctp-a-ipv6-egress_rule_protocol": "any", |
| 211 | "Internal2_shared": "false", |
| 212 | "sctp-a-ipv6-egress_dst_subnet_prefix_len": "0", |
| 213 | "Internal2_rpf": "disable", |
| 214 | "vlc1_Internal1_mac": "00:11:22:EF:AC:DF", |
| 215 | "sctp-b-ipv6-egress_src_end_port": "65535", |
| 216 | "sctp-a-ipv6-egress_src_addresses": "local", |
| 217 | "sctp-a-ingress-dst_end_port": "65535.0", |
| 218 | "sctp-a-ipv6-egress_src_end_port": "65535", |
| 219 | "Internal1_forwarding_mode": "l2", |
| 220 | "Internal2_dhcp": "false", |
| 221 | "sctp-a-dst_subnet_prefix_v6": "::", |
| 222 | "pxe_image_name": "MME_PXE-Boot_16ACP04_GA.qcow2", |
| 223 | "vlc_st_interface_type_gtp": "other0", |
| 224 | "ncb1_Internal1_mac": "00:11:22:EF:AC:DF", |
| 225 | "sctp-b-src_subnet_prefix_v6": "::", |
| 226 | "sctp-a-egress_dst_subnet_prefix_len": "0.0", |
| 227 | "int1_sec_group_name": "int1-sec-group", |
| 228 | "Internal1_dhcp": "false", |
| 229 | "sctp-a-ipv6-egress_dst_end_port": "65535", |
| 230 | "Internal2_forwarding_mode": "l2", |
| 231 | "fsb2_Internal2_mac": "00:11:22:EF:AC:DF", |
| 232 | "sctp-b-egress_dst_subnet_prefix": "0.0.0.0", |
| 233 | "Internal1_net_cidr_len": "17", |
| 234 | "gpb2_Internal1_mac": "00:11:22:EF:AC:DF", |
| 235 | "sctp-b-ingress-src_subnet_prefix_len": "0.0", |
| 236 | "sctp-a-ingress_dst_addresses": "local", |
| 237 | "sctp-a-egress_action": "pass", |
| 238 | "fsb_volume_type_0": "SF-Default-SSD", |
| 239 | "ncb2_Internal2_mac": "00:11:22:EF:AC:DF", |
| 240 | "vlc_st_interface_type_sctp_a": "left", |
| 241 | "vlc_st_interface_type_sctp_b": "right", |
| 242 | "sctp-a-src_subnet_prefix_v6": "::", |
| 243 | "vlc_st_version": "2", |
| 244 | "sctp-b-egress_ethertype": "IPv4", |
| 245 | "sctp-a-ingress_rule_application": "any", |
| 246 | "gpb1_Internal2_mac": "00:11:22:EF:AC:DF", |
| 247 | "instance_ip_family_v6": "v6", |
| 248 | "sctp-a-ipv6-egress_src_start_port": "0", |
| 249 | "sctp-b-ingress-src_start_port": "0.0", |
| 250 | "sctp-b-ingress_dst_addresses": "local", |
| 251 | "fsb1_Internal1_mac": "00:11:22:EF:AC:DF", |
| 252 | "vlc_st_interface_type_oam": "management", |
| 253 | "multi_stage_design": "false", |
| 254 | "oam_sec_group_name": "oam-sec-group", |
| 255 | "Internal2_net_gateway": "10.0.0.10", |
| 256 | "sctp-a-ipv6-ingress-dst_end_port": "65535", |
| 257 | "sctp-b-ipv6-egress-dst_start_port": "0", |
| 258 | "Internal1_net_gateway": "10.0.0.10", |
| 259 | "sctp-b-ipv6-egress_rule_protocol": "any", |
| 260 | "gtp_sec_group_name": "gtp-sec-group", |
| 261 | "sctp-a-ipv6-egress_dst_subnet_prefix": "0.0.0.0", |
| 262 | "sctp-b-ipv6-egress_dst_subnet_prefix_len": "0", |
| 263 | "sctp-a-ipv6-ingress_dst_addresses": "local", |
| 264 | "sctp-a-egress_rule_protocol": "icmp", |
| 265 | "sctp-b-ipv6-egress_action": "pass", |
| 266 | "sctp-a-ipv6-egress_action": "pass", |
| 267 | "Internal1_shared": "false", |
| 268 | "sctp-b-ipv6-ingress_rule_protocol": "any", |
| 269 | "Internal2_net_cidr_len": "17", |
| 270 | "sctp-a-name": "epc-sctp-a-ipv4v6-sec-group", |
| 271 | "sctp-a-ingress-src_end_port": "65535.0", |
| 272 | "sctp-b-ipv6-ingress_src_subnet_prefix": "0.0.0.0", |
| 273 | "sctp-a-egress-dst_end_port": "65535.0", |
| 274 | "sctp-a-ingress_action": "pass", |
| 275 | "sctp-b-egress_rule_protocol": "icmp", |
| 276 | "sctp-b-ipv6-ingress_action": "pass", |
| 277 | "vlc_st_service_type": "firewall", |
| 278 | "sctp-b-ipv6-egress_dst_end_port": "65535", |
| 279 | "sctp-b-ipv6-ingress-dst_start_port": "0", |
| 280 | "vlc2_Internal2_mac": "00:11:22:EF:AC:DF", |
| 281 | "vlc_st_availability_zone": "true", |
| 282 | "fsb_volume_image_name_1": "MME_FSB2_16ACP04_GA.qcow2", |
| 283 | "sctp-b-ingress-src_subnet_prefix": "0.0.0.0", |
| 284 | "sctp-a-ipv6-ingress_src_subnet_prefix_len": "0", |
| 285 | "Internal1_allow_transit": "true", |
| 286 | "gpb_flavor_name": "nv.c20r64d1", |
| 287 | "availability_zone_max_count": "1", |
| 288 | "fsb_volume_image_name_0": "MME_FSB1_16ACP04_GA.qcow2", |
| 289 | "sctp-b-ipv6-ingress_dst_addresses": "local", |
| 290 | "sctp-b-ipv6-egress_dst_subnet_prefix": "0.0.0.0", |
| 291 | "sctp-b-ipv6-ingress_ethertype": "IPv4", |
| 292 | "vlc1_Internal2_mac": "00:11:22:EF:AC:DF", |
| 293 | "sctp-a-ingress-src_subnet_prefix": "0.0.0.0", |
| 294 | "sctp-a-ipv6-ingress_action": "pass", |
| 295 | "Internal1_rpf": "disable", |
| 296 | "sctp-b-ingress_ethertype": "IPv4", |
| 297 | "sctp-b-egress_rule_application": "any", |
| 298 | "sctp-b-ingress-src_end_port": "65535.0", |
| 299 | "sctp-a-ipv6-ingress_rule_protocol": "any", |
| 300 | "sctp-a-ingress-src_start_port": "0.0", |
| 301 | "sctp-b-egress-dst_end_port": "65535.0" |
| 302 | }, |
| 303 | "type": "VF", |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 304 | "modelCustomizationName": "VF_vGeraldine 0", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 305 | "vfModules": { |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 306 | "vf_vgeraldine0..VfVgeraldine..vflorence_vlc..module-1": { |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 307 | "uuid": "522159d5-d6e0-4c2a-aa44-5a542a12a830", |
| 308 | "invariantUuid": "98a7c88b-b577-476a-90e4-e25a5871e02b", |
| 309 | "customizationUuid": "55b1be94-671a-403e-a26c-667e9c47d091", |
| 310 | "description": null, |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 311 | "name": "VfVgeraldine..vflorence_vlc..module-1", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 312 | "version": "2", |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 313 | "modelCustomizationName": "VfVgeraldine..vflorence_vlc..module-1", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 314 | "properties": { |
| 315 | "minCountInstances": 0, |
| 316 | "maxCountInstances": null, |
| 317 | "initialCount": 0, |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 318 | "vfModuleLabel": "vflorence_vlc" |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 319 | }, |
| 320 | "inputs": {}, |
| 321 | "volumeGroupAllowed": false |
| 322 | }, |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 323 | "vf_vgeraldine0..VfVgeraldine..vflorence_gpb..module-2": { |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 324 | "uuid": "41708296-e443-4c71-953f-d9a010f059e1", |
| 325 | "invariantUuid": "1cca90b8-3490-495e-87da-3f3e4c57d5b9", |
| 326 | "customizationUuid": "6add59e0-7fe1-4bc4-af48-f8812422ae7c", |
| 327 | "description": null, |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 328 | "name": "VfVgeraldine..vflorence_gpb..module-2", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 329 | "version": "2", |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 330 | "modelCustomizationName": "VfVgeraldine..vflorence_gpb..module-2", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 331 | "properties": { |
| 332 | "minCountInstances": 0, |
| 333 | "maxCountInstances": null, |
| 334 | "initialCount": 0, |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 335 | "vfModuleLabel": "vflorence_gpb" |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 336 | }, |
| 337 | "inputs": {}, |
| 338 | "volumeGroupAllowed": false |
| 339 | }, |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 340 | "vf_vgeraldine0..VfVgeraldine..base_vflorence..module-0": { |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 341 | "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87", |
| 342 | "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d", |
| 343 | "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861", |
| 344 | "description": null, |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 345 | "name": "VfVgeraldine..base_vflorence..module-0", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 346 | "version": "2", |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 347 | "modelCustomizationName": "VfVgeraldine..base_vflorence..module-0", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 348 | "properties": { |
| 349 | "minCountInstances": 1, |
| 350 | "maxCountInstances": 1, |
| 351 | "initialCount": 1, |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 352 | "vfModuleLabel": "base_vflorence" |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 353 | }, |
| 354 | "inputs": {}, |
| 355 | "volumeGroupAllowed": true |
| 356 | } |
| 357 | }, |
| 358 | "volumeGroups": { |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 359 | "vf_vgeraldine0..VfVgeraldine..base_vflorence..module-0": { |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 360 | "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87", |
| 361 | "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d", |
| 362 | "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861", |
| 363 | "description": null, |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 364 | "name": "VfVgeraldine..base_vflorence..module-0", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 365 | "version": "2", |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 366 | "modelCustomizationName": "VfVgeraldine..base_vflorence..module-0", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 367 | "properties": { |
| 368 | "minCountInstances": 1, |
| 369 | "maxCountInstances": 1, |
| 370 | "initialCount": 1, |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 371 | "vfModuleLabel": "base_vflorence" |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 372 | }, |
| 373 | "inputs": {} |
| 374 | } |
| 375 | }, |
| 376 | "vfcInstanceGroups": {} |
| 377 | } |
| 378 | }, |
| 379 | "networks": { |
| 380 | "ExtVL 0": { |
| 381 | "uuid": "ddc3f20c-08b5-40fd-af72-c6d14636b986", |
| 382 | "invariantUuid": "379f816b-a7aa-422f-be30-17114ff50b7c", |
| 383 | "description": "ECOMP generic virtual link (network) base type for all other service-level and global networks", |
| 384 | "name": "ExtVL", |
| 385 | "version": "37.0", |
| 386 | "customizationUuid": "94fdd893-4a36-4d70-b16a-ec29c54c184f", |
| 387 | "inputs": {}, |
| 388 | "commands": {}, |
| 389 | "properties": { |
| 390 | "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}}", |
| 391 | "exVL_naming": "{ecomp_generated_naming=true}", |
| 392 | "network_flows": "{is_network_policy=false, is_bound_to_vpn=false}", |
| 393 | "network_homing": "{ecomp_selected_instance_node_target=false}" |
| 394 | }, |
| 395 | "type": "VL", |
| 396 | "modelCustomizationName": "ExtVL 0" |
| 397 | } |
| 398 | }, |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 399 | "collectionResources": {}, |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 400 | "configurations": { |
| 401 | "Port Mirroring Configuration By Policy 0": { |
| 402 | "uuid": "b4398538-e89d-4f13-b33d-ca323434ba50", |
| 403 | "invariantUuid": "6ef0ca40-f366-4897-951f-abd65d25f6f7", |
| 404 | "description": "A port mirroring configuration by policy object", |
| 405 | "name": "Port Mirroring Configuration By Policy", |
| 406 | "version": "27.0", |
| 407 | "customizationUuid": "3c3b7b8d-8669-4b3b-8664-61970041fad2", |
| 408 | "inputs": {}, |
| 409 | "commands": {}, |
| 410 | "properties": {}, |
| 411 | "type": "Configuration", |
| 412 | "modelCustomizationName": "Port Mirroring Configuration By Policy 0", |
| 413 | "sourceNodes": [], |
| 414 | "collectorNodes": null, |
| 415 | "configurationByPolicy": false |
| 416 | } |
| 417 | }, |
| 418 | "serviceProxies": {}, |
| 419 | "vfModules": { |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 420 | "vf_vgeraldine0..VfVgeraldine..vflorence_vlc..module-1": { |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 421 | "uuid": "522159d5-d6e0-4c2a-aa44-5a542a12a830", |
| 422 | "invariantUuid": "98a7c88b-b577-476a-90e4-e25a5871e02b", |
| 423 | "customizationUuid": "55b1be94-671a-403e-a26c-667e9c47d091", |
| 424 | "description": null, |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 425 | "name": "VfVgeraldine..vflorence_vlc..module-1", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 426 | "version": "2", |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 427 | "modelCustomizationName": "VfVgeraldine..vflorence_vlc..module-1", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 428 | "properties": { |
| 429 | "minCountInstances": 0, |
| 430 | "maxCountInstances": null, |
| 431 | "initialCount": 0, |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 432 | "vfModuleLabel": "vflorence_vlc" |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 433 | }, |
| 434 | "inputs": {}, |
| 435 | "volumeGroupAllowed": false |
| 436 | }, |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 437 | "vf_vgeraldine0..VfVgeraldine..vflorence_gpb..module-2": { |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 438 | "uuid": "41708296-e443-4c71-953f-d9a010f059e1", |
| 439 | "invariantUuid": "1cca90b8-3490-495e-87da-3f3e4c57d5b9", |
| 440 | "customizationUuid": "6add59e0-7fe1-4bc4-af48-f8812422ae7c", |
| 441 | "description": null, |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 442 | "name": "VfVgeraldine..vflorence_gpb..module-2", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 443 | "version": "2", |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 444 | "modelCustomizationName": "VfVgeraldine..vflorence_gpb..module-2", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 445 | "properties": { |
| 446 | "minCountInstances": 0, |
| 447 | "maxCountInstances": null, |
| 448 | "initialCount": 0, |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 449 | "vfModuleLabel": "vflorence_gpb" |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 450 | }, |
| 451 | "inputs": {}, |
| 452 | "volumeGroupAllowed": false |
| 453 | }, |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 454 | "vf_vgeraldine0..VfVgeraldine..base_vflorence..module-0": { |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 455 | "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87", |
| 456 | "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d", |
| 457 | "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861", |
| 458 | "description": null, |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 459 | "name": "VfVgeraldine..base_vflorence..module-0", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 460 | "version": "2", |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 461 | "modelCustomizationName": "VfVgeraldine..base_vflorence..module-0", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 462 | "properties": { |
| 463 | "minCountInstances": 1, |
| 464 | "maxCountInstances": 1, |
| 465 | "initialCount": 1, |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 466 | "vfModuleLabel": "base_vflorence" |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 467 | }, |
| 468 | "inputs": {}, |
| 469 | "volumeGroupAllowed": true |
| 470 | } |
| 471 | }, |
| 472 | "volumeGroups": { |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 473 | "vf_vgeraldine0..VfVgeraldine..base_vflorence..module-0": { |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 474 | "uuid": "a27f5cfc-7f12-4f99-af08-0af9c3885c87", |
| 475 | "invariantUuid": "a6f9e51a-2b35-416a-ae15-15e58d61f36d", |
| 476 | "customizationUuid": "f8c040f1-7e51-4a11-aca8-acf256cfd861", |
| 477 | "description": null, |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 478 | "name": "VfVgeraldine..base_vflorence..module-0", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 479 | "version": "2", |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 480 | "modelCustomizationName": "VfVgeraldine..base_vflorence..module-0", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 481 | "properties": { |
| 482 | "minCountInstances": 1, |
| 483 | "maxCountInstances": 1, |
| 484 | "initialCount": 1, |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 485 | "vfModuleLabel": "base_vflorence" |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 486 | }, |
| 487 | "inputs": {} |
| 488 | } |
| 489 | }, |
| 490 | "pnfs": {} |
| 491 | } |
| 492 | }, |
| 493 | "serviceInstance": { |
| 494 | "6e59c5de-f052-46fa-aa7e-2fca9d674c44": { |
| 495 | "vnfs": { |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 496 | "VF_vGeraldine 0": { |
| 497 | "originalName": "VF_vGeraldine 0", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 498 | "rollbackOnFailure": "true", |
| 499 | "vfModules": { |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 500 | "vf_vgeraldine0..VfVgeraldine..vflorence_vlc..module-1": { |
| 501 | "vf_vgeraldine0..VfVgeraldine..vflorence_vlc..module-1dcudx": { |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 502 | "modelInfo": { |
| 503 | "modelInvariantId": "98a7c88b-b577-476a-90e4-e25a5871e02b", |
| 504 | "modelVersionId": "522159d5-d6e0-4c2a-aa44-5a542a12a830", |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 505 | "modelName": "VfVgeraldine..vflorence_vlc..module-1", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 506 | "modelVersion": "2", |
| 507 | "modelCustomizationId": "55b1be94-671a-403e-a26c-667e9c47d091", |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 508 | "modelCustomizationName": "VfVgeraldine..vflorence_vlc..module-1" |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 509 | }, |
| 510 | "isMissingData": false, |
| 511 | "instanceParams": [ |
| 512 | {} |
| 513 | ] |
| 514 | } |
| 515 | } |
| 516 | }, |
| 517 | "isMissingData": false, |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 518 | "modelName": "VF_vGeraldine 0", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 519 | "productFamilyId": "36b4733a-53f4-4cc8-8ff0-9172e5fc4b8e", |
| 520 | "lcpCloudRegionId": "hvf6", |
| 521 | "tenantId": "bae71557c5bb4d5aac6743a4e5f1d054", |
| 522 | "lineOfBusiness": "zzz1", |
| 523 | "platformName": "platform", |
| 524 | "modelInfo": { |
| 525 | "modelInvariantId": "4160458e-f648-4b30-a176-43881ffffe9e", |
| 526 | "modelVersionId": "d6557200-ecf2-4641-8094-5393ae3aae60", |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 527 | "modelName": "VF_vGeraldine", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 528 | "modelVersion": "2.0", |
| 529 | "modelCustomizationId": "91415b44-753d-494c-926a-456a9172bbb9", |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 530 | "modelCustomizationName": "VF_vGeraldine 0" |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 531 | } |
| 532 | } |
| 533 | }, |
| 534 | "instanceParams": [ |
| 535 | {} |
| 536 | ], |
| 537 | "validationCounter": 0, |
| 538 | "globalSubscriberId": "e433710f-9217-458d-a79d-1c7aff376d89", |
| 539 | "productFamilyId": "36b4733a-53f4-4cc8-8ff0-9172e5fc4b8e", |
| 540 | "subscriptionServiceType": "TYLER SILVIA", |
| 541 | "lcpCloudRegionId": "hvf6", |
| 542 | "tenantId": "1178612d2b394be4834ad77f567c0af2", |
| 543 | "aicZoneId": "YYY1", |
| 544 | "projectName": "yyy1", |
| 545 | "owningEntityId": "aaa1", |
| 546 | "rollbackOnFailure": "true", |
| 547 | "bulkSize": 1, |
| 548 | "modelInfo": { |
| 549 | "modelInvariantId": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0", |
| 550 | "modelVersionId": "6e59c5de-f052-46fa-aa7e-2fca9d674c44", |
| 551 | "modelName": "ComplexService", |
| 552 | "modelVersion": "1.0" |
| 553 | }, |
| 554 | "existingVNFCounterMap": { |
| 555 | "91415b44-753d-494c-926a-456a9172bbb9": 1 |
| 556 | }, |
| 557 | "existingNames": {}, |
| 558 | "existingNetworksCounterMap" : {}, |
| 559 | "tenantName": "AIN Web Tool-15-D-SSPtestcustome", |
| 560 | "aicZoneName": "UUUAIAAI-YYY1" |
| 561 | } |
| 562 | }, |
| 563 | "lcpRegionsAndTenants": { |
| 564 | "lcpRegionList": [ |
| 565 | { |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 566 | "id": "AAIAIC25", |
| 567 | "name": "AAIAIC25 (AIC)", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 568 | "cloudOwner" : "irma-aic", |
| 569 | "isPermitted": true |
| 570 | }, |
| 571 | { |
| 572 | "id": "hvf6", |
| 573 | "name": "hvf6 (AIC)", |
| 574 | "cloudOwner" : "irma-aic", |
| 575 | "isPermitted": true |
| 576 | } |
| 577 | ], |
| 578 | "lcpRegionsTenantsMap": { |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 579 | "AAIAIC25": [ |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 580 | { |
| 581 | "id": "092eb9e8e4b7412e8787dd091bc58e86", |
| 582 | "name": "USP-SIP-IC-24335-T-01", |
| 583 | "isPermitted": true |
| 584 | } |
| 585 | ], |
| 586 | "hvf6": [ |
| 587 | { |
| 588 | "id": "bae71557c5bb4d5aac6743a4e5f1d054", |
| 589 | "name": "AIN Web Tool-15-D-testalexandria", |
| 590 | "isPermitted": true |
| 591 | }, |
| 592 | { |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 593 | "id": "229bcdc6eaeb4ca59d55221141d01f8e", |
| 594 | "name": "AIN Web Tool-15-D-STTest2", |
| 595 | "isPermitted": true |
| 596 | }, |
| 597 | { |
| 598 | "id": "1178612d2b394be4834ad77f567c0af2", |
| 599 | "name": "AIN Web Tool-15-D-SSPtestcustome", |
| 600 | "isPermitted": true |
| 601 | }, |
| 602 | { |
| 603 | "id": "19c5ade915eb461e8af52fb2fd8cd1f2", |
| 604 | "name": "AIN Web Tool-15-D-UncheckedEcopm", |
| 605 | "isPermitted": true |
| 606 | }, |
| 607 | { |
| 608 | "id": "de007636e25249238447264a988a927b", |
| 609 | "name": "AIN Web Tool-15-D-dfsdf", |
| 610 | "isPermitted": true |
| 611 | }, |
| 612 | { |
| 613 | "id": "62f29b3613634ca6a3065cbe0e020c44", |
| 614 | "name": "AIN/SMS-16-D-Multiservices1", |
| 615 | "isPermitted": true |
| 616 | }, |
| 617 | { |
| 618 | "id": "649289e30d3244e0b48098114d63c2aa", |
| 619 | "name": "AIN Web Tool-15-D-SSPST66", |
| 620 | "isPermitted": true |
| 621 | }, |
| 622 | { |
| 623 | "id": "3f21eeea6c2c486bba31dab816c05a32", |
| 624 | "name": "AIN Web Tool-15-D-ASSPST47", |
| 625 | "isPermitted": true |
| 626 | }, |
| 627 | { |
| 628 | "id": "f60ce21d3ee6427586cff0d22b03b773", |
| 629 | "name": "CESAR-100-D-sspjg67246", |
| 630 | "isPermitted": true |
| 631 | }, |
| 632 | { |
| 633 | "id": "8774659e425f479895ae091bb5d46560", |
| 634 | "name": "CESAR-100-D-sspjg68359", |
| 635 | "isPermitted": true |
| 636 | }, |
| 637 | { |
| 638 | "id": "624eb554b0d147c19ff8885341760481", |
| 639 | "name": "AINWebTool-15-D-iftach", |
| 640 | "isPermitted": true |
| 641 | }, |
| 642 | { |
| 643 | "id": "214f55f5fc414c678059c383b03e4962", |
| 644 | "name": "CESAR-100-D-sspjg612401", |
| 645 | "isPermitted": true |
| 646 | }, |
| 647 | { |
| 648 | "id": "c90666c291664841bb98e4d981ff1db5", |
| 649 | "name": "CESAR-100-D-sspjg621340", |
| 650 | "isPermitted": true |
| 651 | }, |
| 652 | { |
| 653 | "id": "ce5b6bc5c7b348e1bf4b91ac9a174278", |
| 654 | "name": "sspjg621351cloned", |
| 655 | "isPermitted": true |
| 656 | }, |
| 657 | { |
| 658 | "id": "b386b768a3f24c8e953abbe0b3488c02", |
| 659 | "name": "AINWebTool-15-D-eteancomp", |
| 660 | "isPermitted": true |
| 661 | }, |
| 662 | { |
| 663 | "id": "dc6c4dbfd225474e9deaadd34968646c", |
| 664 | "name": "AINWebTool-15-T-SPFET", |
| 665 | "isPermitted": true |
| 666 | }, |
| 667 | { |
| 668 | "id": "02cb5030e9914aa4be120bd9ed1e19eb", |
| 669 | "name": "AINWebTool-15-X-eeweww", |
| 670 | "isPermitted": true |
| 671 | }, |
| 672 | { |
| 673 | "id": "f2f3830e4c984d45bcd00e1a04158a79", |
| 674 | "name": "CESAR-100-D-spjg61909", |
| 675 | "isPermitted": true |
| 676 | }, |
| 677 | { |
| 678 | "id": "05b91bd5137f4929878edd965755c06d", |
| 679 | "name": "CESAR-100-D-sspjg621512cloned", |
| 680 | "isPermitted": true |
| 681 | }, |
| 682 | { |
| 683 | "id": "7002fbe8482d4a989ddf445b1ce336e0", |
| 684 | "name": "AINWebTool-15-X-vdr", |
| 685 | "isPermitted": true |
| 686 | }, |
| 687 | { |
| 688 | "id": "4008522be43741dcb1f5422022a2aa0b", |
| 689 | "name": "AINWebTool-15-D-ssasa", |
| 690 | "isPermitted": true |
| 691 | }, |
| 692 | { |
| 693 | "id": "f44e2e96a1b6476abfda2fa407b00169", |
| 694 | "name": "AINWebTool-15-D-PFNPT", |
| 695 | "isPermitted": true |
| 696 | }, |
| 697 | { |
| 698 | "id": "b69a52bec8a84669a37a1e8b72708be7", |
| 699 | "name": "AINWebTool-15-X-vdre", |
| 700 | "isPermitted": true |
| 701 | }, |
| 702 | { |
| 703 | "id": "fac7d9fd56154caeb9332202dcf2969f", |
| 704 | "name": "AINWebTool-15-X-NONPODECOMP", |
| 705 | "isPermitted": true |
| 706 | }, |
| 707 | { |
| 708 | "id": "2d34d8396e194eb49969fd61ffbff961", |
| 709 | "name": "DN5242-Nov16-T5", |
| 710 | "isPermitted": true |
| 711 | }, |
| 712 | { |
| 713 | "id": "cb42a77ff45b48a8b8deb83bb64acc74", |
| 714 | "name": "ro-T11", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 715 | "isPermitted": true |
| 716 | }, |
| 717 | { |
| 718 | "id": "fa45ca53c80b492fa8be5477cd84fc2b", |
| 719 | "name": "ro-T112", |
| 720 | "isPermitted": true |
| 721 | }, |
| 722 | { |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 723 | "id": "4914ab0ab3a743e58f0eefdacc1dde77", |
| 724 | "name": "DN5242-Nov21-T1", |
| 725 | "isPermitted": true |
| 726 | }, |
| 727 | { |
| 728 | "id": "d0a3e3f2964542259d155a81c41aadc3", |
| 729 | "name": "test-hvf6-09", |
| 730 | "isPermitted": true |
| 731 | }, |
| 732 | { |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 733 | "id": "cbb99fe4ada84631b7baf046b6fd2044", |
| 734 | "name": "DN5242-Nov16-T3", |
| 735 | "isPermitted": true |
| 736 | } |
| 737 | ] |
| 738 | } |
| 739 | }, |
| 740 | "subscribers": [ |
| 741 | { |
| 742 | "id": "CAR_2020_ER", |
| 743 | "name": "CAR_2020_ER", |
| 744 | "isPermitted": true |
| 745 | }, |
| 746 | { |
| 747 | "id": "21014aa2-526b-11e6-beb8-9e71128cae77", |
| 748 | "name": "JULIO ERICKSON", |
| 749 | "isPermitted": false |
| 750 | }, |
| 751 | { |
| 752 | "id": "DHV1707-TestSubscriber-2", |
| 753 | "name": "DALE BRIDGES", |
| 754 | "isPermitted": false |
| 755 | }, |
| 756 | { |
| 757 | "id": "DHV1707-TestSubscriber-1", |
| 758 | "name": "LLOYD BRIDGES", |
| 759 | "isPermitted": false |
| 760 | }, |
| 761 | { |
| 762 | "id": "jimmy-example", |
| 763 | "name": "JimmyExampleCust-20161102", |
| 764 | "isPermitted": false |
| 765 | }, |
| 766 | { |
| 767 | "id": "jimmy-example2", |
| 768 | "name": "JimmyExampleCust-20161103", |
| 769 | "isPermitted": false |
| 770 | }, |
| 771 | { |
| 772 | "id": "ERICA5779-TestSub-PWT-102", |
| 773 | "name": "ERICA5779-TestSub-PWT-102", |
| 774 | "isPermitted": false |
| 775 | }, |
| 776 | { |
| 777 | "id": "ERICA5779-TestSub-PWT-101", |
| 778 | "name": "ERICA5779-TestSub-PWT-101", |
| 779 | "isPermitted": false |
| 780 | }, |
| 781 | { |
| 782 | "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb", |
| 783 | "name": "Emanuel", |
| 784 | "isPermitted": false |
| 785 | }, |
| 786 | { |
| 787 | "id": "ERICA5779-Subscriber-4", |
| 788 | "name": "ERICA5779-Subscriber-5", |
| 789 | "isPermitted": false |
| 790 | }, |
| 791 | { |
| 792 | "id": "ERICA5779-TestSub-PWT-103", |
| 793 | "name": "ERICA5779-TestSub-PWT-103", |
| 794 | "isPermitted": false |
| 795 | }, |
| 796 | { |
| 797 | "id": "ERICA5779-Subscriber-2", |
| 798 | "name": "ERICA5779-Subscriber-2", |
| 799 | "isPermitted": false |
| 800 | }, |
| 801 | { |
| 802 | "id": "e433710f-9217-458d-a79d-1c7aff376d89", |
| 803 | "name": "SILVIA ROBBINS", |
| 804 | "isPermitted": true |
| 805 | }, |
| 806 | { |
| 807 | "id": "ERICA5779-Subscriber-3", |
| 808 | "name": "ERICA5779-Subscriber-3", |
| 809 | "isPermitted": false |
| 810 | }, |
| 811 | { |
| 812 | "id": "31739f3e-526b-11e6-beb8-9e71128cae77", |
| 813 | "name": "CRAIG/ROBERTS", |
| 814 | "isPermitted": false |
| 815 | } |
| 816 | ], |
| 817 | "productFamilies": [ |
| 818 | { |
| 819 | "id": "ebc3bc3d-62fd-4a3f-a037-f619df4ff034", |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 820 | "name": "ERICA", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 821 | "isPermitted": true |
| 822 | }, |
| 823 | { |
| 824 | "id": "17cc1042-527b-11e6-beb8-9e71128cae77", |
| 825 | "name": "IGNACIO", |
| 826 | "isPermitted": true |
| 827 | }, |
| 828 | { |
| 829 | "id": "36b4733a-53f4-4cc8-8ff0-9172e5fc4b8e", |
| 830 | "name": "Christie", |
| 831 | "isPermitted": true |
| 832 | }, |
| 833 | { |
| 834 | "id": "a4f6f2ae-9bf5-4ed7-b904-06b2099c4bd7", |
| 835 | "name": "Enhanced Services", |
| 836 | "isPermitted": true |
| 837 | }, |
| 838 | { |
| 839 | "id": "vTerrance", |
| 840 | "name": "vTerrance", |
| 841 | "isPermitted": true |
| 842 | }, |
| 843 | { |
| 844 | "id": "323d69d9-2efe-4r45-ay0a-89ea7ard4e6f", |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 845 | "name": "vEsmeralda", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 846 | "isPermitted": true |
| 847 | }, |
| 848 | { |
| 849 | "id": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb", |
| 850 | "name": "Emanuel", |
| 851 | "isPermitted": true |
| 852 | }, |
| 853 | { |
| 854 | "id": "d8a6ed93-251c-47ca-adc9-86671fd19f4c", |
| 855 | "name": "BVOIP", |
| 856 | "isPermitted": true |
| 857 | }, |
| 858 | { |
| 859 | "id": "db171b8f-115c-4992-a2e3-ee04cae357e0", |
| 860 | "name": "LINDSEY", |
| 861 | "isPermitted": true |
| 862 | }, |
| 863 | { |
| 864 | "id": "LRSI-OSPF", |
| 865 | "name": "LRSI-OSPF", |
| 866 | "isPermitted": true |
| 867 | }, |
| 868 | { |
| 869 | "id": "vRosemarie", |
| 870 | "name": "HNGATEWAY", |
| 871 | "isPermitted": true |
| 872 | }, |
| 873 | { |
| 874 | "id": "vHNPaas", |
| 875 | "name": "WILKINS", |
| 876 | "isPermitted": true |
| 877 | }, |
| 878 | { |
| 879 | "id": "e433710f-9217-458d-a79d-1c7aff376d89", |
| 880 | "name": "TYLER SILVIA", |
| 881 | "isPermitted": true |
| 882 | }, |
| 883 | { |
| 884 | "id": "b6a3f28c-eebf-494c-a900-055cc7c874ce", |
| 885 | "name": "VROUTER", |
| 886 | "isPermitted": true |
| 887 | }, |
| 888 | { |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 889 | "id": "vMuriel", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 890 | "name": "vMuriel", |
| 891 | "isPermitted": true |
| 892 | }, |
| 893 | { |
| 894 | "id": "0ee8c1bc-7cbd-4b0a-a1ac-e9999255abc1", |
| 895 | "name": "CARA Griffin", |
| 896 | "isPermitted": true |
| 897 | }, |
| 898 | { |
| 899 | "id": "c7611ebe-c324-48f1-8085-94aef0c6ef3d", |
| 900 | "name": "DARREN MCGEE", |
| 901 | "isPermitted": true |
| 902 | }, |
| 903 | { |
| 904 | "id": "e30755dc-5673-4b6b-9dcf-9abdd96b93d1", |
| 905 | "name": "Transport", |
| 906 | "isPermitted": true |
| 907 | }, |
| 908 | { |
| 909 | "id": "vSalvatore", |
| 910 | "name": "vSalvatore", |
| 911 | "isPermitted": true |
| 912 | }, |
| 913 | { |
| 914 | "id": "d7bb0a21-66f2-4e6d-87d9-9ef3ced63ae4", |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 915 | "name": "JOSEFINA", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 916 | "isPermitted": true |
| 917 | }, |
| 918 | { |
| 919 | "id": "vHubbard", |
| 920 | "name": "vHubbard", |
| 921 | "isPermitted": true |
| 922 | }, |
| 923 | { |
| 924 | "id": "12a96a9d-4b4c-4349-a950-fe1159602621", |
| 925 | "name": "DARREN MCGEE", |
| 926 | "isPermitted": true |
| 927 | } |
| 928 | ], |
| 929 | "serviceTypes": { |
| 930 | "e433710f-9217-458d-a79d-1c7aff376d89": [ |
| 931 | { |
| 932 | "id": "0", |
| 933 | "name": "vRichardson", |
| 934 | "isPermitted": false |
| 935 | }, |
| 936 | { |
| 937 | "id": "1", |
| 938 | "name": "TYLER SILVIA", |
| 939 | "isPermitted": true |
| 940 | }, |
| 941 | { |
| 942 | "id": "2", |
| 943 | "name": "Emanuel", |
| 944 | "isPermitted": false |
| 945 | }, |
| 946 | { |
| 947 | "id": "3", |
| 948 | "name": "vJamie", |
| 949 | "isPermitted": false |
| 950 | }, |
| 951 | { |
| 952 | "id": "4", |
| 953 | "name": "vVoiceMail", |
| 954 | "isPermitted": false |
| 955 | }, |
| 956 | { |
| 957 | "id": "5", |
| 958 | "name": "Kennedy", |
| 959 | "isPermitted": false |
| 960 | }, |
| 961 | { |
| 962 | "id": "6", |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 963 | "name": "vPorfirio", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 964 | "isPermitted": false |
| 965 | }, |
| 966 | { |
| 967 | "id": "7", |
| 968 | "name": "vVM", |
| 969 | "isPermitted": false |
| 970 | }, |
| 971 | { |
| 972 | "id": "8", |
| 973 | "name": "vOTA", |
| 974 | "isPermitted": false |
| 975 | }, |
| 976 | { |
| 977 | "id": "9", |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 978 | "name": "vFLORENCE", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 979 | "isPermitted": false |
| 980 | }, |
| 981 | { |
| 982 | "id": "10", |
| 983 | "name": "vMNS", |
| 984 | "isPermitted": false |
| 985 | }, |
| 986 | { |
| 987 | "id": "11", |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 988 | "name": "vEsmeralda", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 989 | "isPermitted": false |
| 990 | }, |
| 991 | { |
| 992 | "id": "12", |
| 993 | "name": "VPMS", |
| 994 | "isPermitted": false |
| 995 | }, |
| 996 | { |
| 997 | "id": "13", |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 998 | "name": "vWINIFRED", |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 999 | "isPermitted": false |
| 1000 | }, |
| 1001 | { |
| 1002 | "id": "14", |
| 1003 | "name": "SSD", |
| 1004 | "isPermitted": false |
| 1005 | }, |
| 1006 | { |
| 1007 | "id": "15", |
| 1008 | "name": "vMOG", |
| 1009 | "isPermitted": false |
| 1010 | }, |
| 1011 | { |
| 1012 | "id": "16", |
| 1013 | "name": "LINDSEY", |
| 1014 | "isPermitted": false |
| 1015 | }, |
| 1016 | { |
| 1017 | "id": "17", |
| 1018 | "name": "JOHANNA_SANTOS", |
| 1019 | "isPermitted": false |
| 1020 | }, |
| 1021 | { |
| 1022 | "id": "18", |
| 1023 | "name": "vCarroll", |
| 1024 | "isPermitted": false |
| 1025 | } |
| 1026 | ] |
| 1027 | }, |
| 1028 | "aicZones": [ |
| 1029 | { |
| 1030 | "id": "NFT1", |
| 1031 | "name": "NFTJSSSS-NFT1" |
| 1032 | }, |
| 1033 | { |
| 1034 | "id": "JAG1", |
| 1035 | "name": "YUDFJULP-JAG1" |
| 1036 | }, |
| 1037 | { |
| 1038 | "id": "YYY1", |
| 1039 | "name": "UUUAIAAI-YYY1" |
| 1040 | }, |
| 1041 | { |
Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 1042 | "id": "BAN1", |
| 1043 | "name": "VSDKYUTP-BAN1" |
| 1044 | }, |
| 1045 | { |
| 1046 | "id": "DKJ1", |
| 1047 | "name": "DKJSJDKA-DKJ1" |
| 1048 | }, |
| 1049 | { |
| 1050 | "id": "MCS1", |
| 1051 | "name": "ASACMAMS-MCS1" |
| 1052 | }, |
| 1053 | { |
| 1054 | "id": "UIO1", |
| 1055 | "name": "uioclli1-UIO1" |
| 1056 | }, |
| 1057 | { |
| 1058 | "id": "RAJ1", |
| 1059 | "name": "YGBIJNLQ-RAJ1" |
| 1060 | }, |
| 1061 | { |
| 1062 | "id": "OPA1", |
| 1063 | "name": "opaclli1-OPA1" |
| 1064 | }, |
| 1065 | { |
| 1066 | "id": "SDE1", |
| 1067 | "name": "ZXCVBNMA-SDE1" |
| 1068 | }, |
| 1069 | { |
| 1070 | "id": "VEN2", |
| 1071 | "name": "FGHJUHIL-VEN2" |
| 1072 | }, |
| 1073 | { |
| 1074 | "id": "ORL1", |
| 1075 | "name": "ORLDFLMA-ORL1" |
| 1076 | }, |
| 1077 | { |
| 1078 | "id": "JAD1", |
| 1079 | "name": "JADECLLI-JAD1" |
| 1080 | }, |
| 1081 | { |
| 1082 | "id": "ZXL1", |
| 1083 | "name": "LWLWCANN-ZXL1" |
| 1084 | }, |
| 1085 | { |
| 1086 | "id": "CKL1", |
| 1087 | "name": "CLKSKCKK-CKL1" |
| 1088 | }, |
| 1089 | { |
| 1090 | "id": "SDF1", |
| 1091 | "name": "sdfclli1-SDF1" |
| 1092 | }, |
| 1093 | { |
| 1094 | "id": "RAD1", |
| 1095 | "name": "RADICAL1-RAD1" |
| 1096 | }, |
| 1097 | { |
| 1098 | "id": "KIT1", |
| 1099 | "name": "BHYJFGLN-KIT1" |
| 1100 | }, |
| 1101 | { |
| 1102 | "id": "REL1", |
| 1103 | "name": "INGERFGT-REL1" |
| 1104 | }, |
| 1105 | { |
| 1106 | "id": "JNL1", |
| 1107 | "name": "CJALSDAC-JNL1" |
| 1108 | }, |
| 1109 | { |
| 1110 | "id": "OLK1", |
| 1111 | "name": "OLKOLKLS-OLK1" |
| 1112 | }, |
| 1113 | { |
| 1114 | "id": "CHI1", |
| 1115 | "name": "CHILLIWE-CHI1" |
| 1116 | }, |
| 1117 | { |
| 1118 | "id": "UUU4", |
| 1119 | "name": "UUUAAAUU-UUU4" |
| 1120 | }, |
| 1121 | { |
| 1122 | "id": "TUF1", |
| 1123 | "name": "TUFCLLI1-TUF1" |
| 1124 | }, |
| 1125 | { |
| 1126 | "id": "KJN1", |
| 1127 | "name": "CKALDKSA-KJN1" |
| 1128 | }, |
| 1129 | { |
| 1130 | "id": "SAM1", |
| 1131 | "name": "SNDGCA64-SAN1" |
| 1132 | }, |
| 1133 | { |
| 1134 | "id": "SCK1", |
| 1135 | "name": "SCKSCKSK-SCK1" |
| 1136 | }, |
| 1137 | { |
| 1138 | "id": "HJH1", |
| 1139 | "name": "AOEEQQQD-HJH1" |
| 1140 | }, |
| 1141 | { |
| 1142 | "id": "HGD1", |
| 1143 | "name": "SDFQWHGD-HGD1" |
| 1144 | }, |
| 1145 | { |
| 1146 | "id": "KOR1", |
| 1147 | "name": "HYFLNBVT-KOR1" |
| 1148 | }, |
| 1149 | { |
| 1150 | "id": "ATL43", |
| 1151 | "name": "AICLOCID-ATL43" |
| 1152 | }, |
| 1153 | { |
| 1154 | "id": "ATL54", |
| 1155 | "name": "AICFTAAI-ATL54" |
| 1156 | }, |
| 1157 | { |
| 1158 | "id": "ATL66", |
| 1159 | "name": "CLLIAAII-ATL66" |
| 1160 | }, |
| 1161 | { |
| 1162 | "id": "VEL1", |
| 1163 | "name": "BNMLKUIK-VEL1" |
| 1164 | }, |
| 1165 | { |
| 1166 | "id": "ICC1", |
| 1167 | "name": "SANJITAT-ICC1" |
| 1168 | }, |
| 1169 | { |
| 1170 | "id": "MNT11", |
| 1171 | "name": "WSXEFBTH-MNT11" |
| 1172 | }, |
| 1173 | { |
| 1174 | "id": "DEF2", |
| 1175 | "name": "WSBHGTYL-DEF2" |
| 1176 | }, |
| 1177 | { |
| 1178 | "id": "MAD11", |
| 1179 | "name": "SDFQWGKL-MAD11" |
| 1180 | }, |
| 1181 | { |
| 1182 | "id": "OLG1", |
| 1183 | "name": "OLHOLHOL-OLG1" |
| 1184 | }, |
| 1185 | { |
| 1186 | "id": "GAR1", |
| 1187 | "name": "NGFVSJKO-GAR1" |
| 1188 | }, |
| 1189 | { |
| 1190 | "id": "SAN22", |
| 1191 | "name": "GNVLSCTL-SAN22" |
| 1192 | }, |
| 1193 | { |
| 1194 | "id": "HRG1", |
| 1195 | "name": "HRGHRGGS-HRG1" |
| 1196 | }, |
| 1197 | { |
| 1198 | "id": "JCS1", |
| 1199 | "name": "JCSJSCJS-JCS1" |
| 1200 | }, |
| 1201 | { |
| 1202 | "id": "DHA12", |
| 1203 | "name": "WSXEDECF-DHA12" |
| 1204 | }, |
| 1205 | { |
| 1206 | "id": "HJE1", |
| 1207 | "name": "AOEEWWWD-HJE1" |
| 1208 | }, |
| 1209 | { |
| 1210 | "id": "NCA1", |
| 1211 | "name": "NCANCANN-NCA1" |
| 1212 | }, |
| 1213 | { |
| 1214 | "id": "IOP1", |
| 1215 | "name": "iopclli1-IOP1" |
| 1216 | }, |
| 1217 | { |
| 1218 | "id": "RTY1", |
| 1219 | "name": "rtyclli1-RTY1" |
| 1220 | }, |
| 1221 | { |
| 1222 | "id": "KAP1", |
| 1223 | "name": "HIOUYTRQ-KAP1" |
| 1224 | }, |
| 1225 | { |
| 1226 | "id": "ZEN1", |
| 1227 | "name": "ZENCLLI1-ZEN1" |
| 1228 | }, |
| 1229 | { |
| 1230 | "id": "HKA1", |
| 1231 | "name": "JAKHLASS-HKA1" |
| 1232 | }, |
| 1233 | { |
| 1234 | "id": "CQK1", |
| 1235 | "name": "CQKSCAKK-CQK1" |
| 1236 | }, |
| 1237 | { |
| 1238 | "id": "SAI1", |
| 1239 | "name": "UBEKQLPD-SAI1" |
| 1240 | }, |
| 1241 | { |
| 1242 | "id": "ERT1", |
| 1243 | "name": "ertclli1-ERT1" |
| 1244 | }, |
| 1245 | { |
| 1246 | "id": "IBB1", |
| 1247 | "name": "PLMKOIJU-IBB1" |
| 1248 | }, |
| 1249 | { |
| 1250 | "id": "TIR2", |
| 1251 | "name": "PLKINHYI-TIR2" |
| 1252 | }, |
| 1253 | { |
| 1254 | "id": "HSD1", |
| 1255 | "name": "CHASKCDS-HSD1" |
| 1256 | }, |
| 1257 | { |
| 1258 | "id": "SLF78", |
| 1259 | "name": "SDCTLFN1-SLF78" |
| 1260 | }, |
| 1261 | { |
| 1262 | "id": "SEE78", |
| 1263 | "name": "SDCTEEE4-SEE78" |
| 1264 | }, |
| 1265 | { |
| 1266 | "id": "SAN13", |
| 1267 | "name": "TOKYJPFA-SAN13" |
| 1268 | }, |
| 1269 | { |
| 1270 | "id": "SAA78", |
| 1271 | "name": "SDCTAAA1-SAA78" |
| 1272 | }, |
| 1273 | { |
| 1274 | "id": "LUC1", |
| 1275 | "name": "ATLDFGYC-LUC1" |
| 1276 | }, |
| 1277 | { |
| 1278 | "id": "AMD13", |
| 1279 | "name": "MEMATLAN-AMD13" |
| 1280 | }, |
| 1281 | { |
| 1282 | "id": "TOR1", |
| 1283 | "name": "TOROONXN-TOR1" |
| 1284 | }, |
| 1285 | { |
| 1286 | "id": "QWE1", |
| 1287 | "name": "QWECLLI1-QWE1" |
| 1288 | }, |
| 1289 | { |
| 1290 | "id": "ZOG1", |
| 1291 | "name": "ZOGASTRO-ZOG1" |
| 1292 | }, |
| 1293 | { |
| 1294 | "id": "CAL33", |
| 1295 | "name": "CALIFORN-CAL33" |
| 1296 | }, |
| 1297 | { |
| 1298 | "id": "SHH78", |
| 1299 | "name": "SDIT1HHH-SHH78" |
| 1300 | }, |
| 1301 | { |
| 1302 | "id": "DSA1", |
| 1303 | "name": "LKJHGFDS-DSA1" |
| 1304 | }, |
| 1305 | { |
| 1306 | "id": "CLG1", |
| 1307 | "name": "CLGRABAD-CLG1" |
| 1308 | }, |
| 1309 | { |
| 1310 | "id": "BNA1", |
| 1311 | "name": "BNARAGBK-BNA1" |
| 1312 | }, |
| 1313 | { |
| 1314 | "id": "ATL84", |
| 1315 | "name": "CANTTCOC-ATL84" |
| 1316 | }, |
| 1317 | { |
| 1318 | "id": "APP1", |
| 1319 | "name": "WBHGTYUI-APP1" |
| 1320 | }, |
| 1321 | { |
| 1322 | "id": "RJN1", |
| 1323 | "name": "RJNRBZAW-RJN1" |
| 1324 | }, |
| 1325 | { |
| 1326 | "id": "EHH78", |
| 1327 | "name": "SDCSHHH5-EHH78" |
| 1328 | }, |
| 1329 | { |
| 1330 | "id": "mac10", |
| 1331 | "name": "PKGTESTF-mac10" |
| 1332 | }, |
| 1333 | { |
| 1334 | "id": "SXB78", |
| 1335 | "name": "SDCTGXB1-SXB78" |
| 1336 | }, |
| 1337 | { |
| 1338 | "id": "SAX78", |
| 1339 | "name": "SDCTAXG1-SAX78" |
| 1340 | }, |
| 1341 | { |
| 1342 | "id": "SYD1", |
| 1343 | "name": "SYDNAUBV-SYD1" |
| 1344 | }, |
| 1345 | { |
| 1346 | "id": "TOK1", |
| 1347 | "name": "TOKYJPFA-TOK1" |
| 1348 | }, |
| 1349 | { |
| 1350 | "id": "KGM2", |
| 1351 | "name": "KGMTNC20-KGM2" |
| 1352 | }, |
| 1353 | { |
| 1354 | "id": "DCC1b", |
| 1355 | "name": "POIUYTGH-DCC1b" |
| 1356 | }, |
| 1357 | { |
| 1358 | "id": "SKK78", |
| 1359 | "name": "SDCTKKK1-SKK78" |
| 1360 | }, |
| 1361 | { |
| 1362 | "id": "SGG78", |
| 1363 | "name": "SDCTGGG1-SGG78" |
| 1364 | }, |
| 1365 | { |
| 1366 | "id": "SJJ78", |
| 1367 | "name": "SDCTJJJ1-SJJ78" |
| 1368 | }, |
| 1369 | { |
| 1370 | "id": "SBX78", |
| 1371 | "name": "SDCTBXG1-SBX78" |
| 1372 | }, |
| 1373 | { |
| 1374 | "id": "LAG1", |
| 1375 | "name": "LARGIZON-LAG1" |
| 1376 | }, |
| 1377 | { |
| 1378 | "id": "IAA1", |
| 1379 | "name": "QAZXSWED-IAA1" |
| 1380 | }, |
| 1381 | { |
| 1382 | "id": "POI1", |
| 1383 | "name": "PLMNJKIU-POI1" |
| 1384 | }, |
| 1385 | { |
| 1386 | "id": "LAG1a", |
| 1387 | "name": "LARGIZON-LAG1a" |
| 1388 | }, |
| 1389 | { |
| 1390 | "id": "PBL1", |
| 1391 | "name": "PBLAPBAI-PBL1" |
| 1392 | }, |
| 1393 | { |
| 1394 | "id": "LAG45", |
| 1395 | "name": "LARGIZON-LAG1a" |
| 1396 | }, |
| 1397 | { |
| 1398 | "id": "MAR1", |
| 1399 | "name": "MNBVCXZM-MAR1" |
| 1400 | }, |
| 1401 | { |
| 1402 | "id": "HST70", |
| 1403 | "name": "HSTNTX70-HST70" |
| 1404 | }, |
| 1405 | { |
| 1406 | "id": "DCC1a", |
| 1407 | "name": "POIUYTGH-DCC1a" |
| 1408 | }, |
| 1409 | { |
| 1410 | "id": "TOL1", |
| 1411 | "name": "TOLDOH21-TOL1" |
| 1412 | }, |
| 1413 | { |
| 1414 | "id": "LON1", |
| 1415 | "name": "LONEENCO-LON1" |
| 1416 | }, |
| 1417 | { |
| 1418 | "id": "SJU78", |
| 1419 | "name": "SDIT1JUB-SJU78" |
| 1420 | }, |
| 1421 | { |
| 1422 | "id": "STN27", |
| 1423 | "name": "HSTNTX01-STN27" |
| 1424 | }, |
| 1425 | { |
| 1426 | "id": "SSW56", |
| 1427 | "name": "ss8126GT-SSW56" |
| 1428 | }, |
| 1429 | { |
| 1430 | "id": "SBB78", |
| 1431 | "name": "SDIT1BBB-SBB78" |
| 1432 | }, |
| 1433 | { |
| 1434 | "id": "DCC3", |
| 1435 | "name": "POIUYTGH-DCC3" |
| 1436 | }, |
| 1437 | { |
| 1438 | "id": "GNV1", |
| 1439 | "name": "GNVLSCTL-GNV1" |
| 1440 | }, |
| 1441 | { |
| 1442 | "id": "WAS1", |
| 1443 | "name": "WASHDCSW-WAS1" |
| 1444 | }, |
| 1445 | { |
| 1446 | "id": "TOY1", |
| 1447 | "name": "TORYONNZ-TOY1" |
| 1448 | }, |
| 1449 | { |
| 1450 | "id": "STT1", |
| 1451 | "name": "STTLWA02-STT1" |
| 1452 | }, |
| 1453 | { |
| 1454 | "id": "STG1", |
| 1455 | "name": "STTGGE62-STG1" |
| 1456 | }, |
| 1457 | { |
| 1458 | "id": "SLL78", |
| 1459 | "name": "SDCTLLL1-SLL78" |
| 1460 | }, |
| 1461 | { |
| 1462 | "id": "SBU78", |
| 1463 | "name": "SDIT1BUB-SBU78" |
| 1464 | }, |
| 1465 | { |
| 1466 | "id": "ATL2", |
| 1467 | "name": "ATLNGANW-ATL2" |
| 1468 | }, |
| 1469 | { |
| 1470 | "id": "BOT1", |
| 1471 | "name": "BOTHWAKY-BOT1" |
| 1472 | }, |
| 1473 | { |
| 1474 | "id": "SNG1", |
| 1475 | "name": "SNGPSIAU-SNG1" |
| 1476 | }, |
| 1477 | { |
| 1478 | "id": "NYC1", |
| 1479 | "name": "NYCMNY54-NYC1" |
| 1480 | }, |
| 1481 | { |
| 1482 | "id": "LAG1b", |
| 1483 | "name": "LARGIZON-LAG1b" |
| 1484 | }, |
| 1485 | { |
| 1486 | "id": "AMD15", |
| 1487 | "name": "AMDFAA01-AMD15" |
| 1488 | }, |
| 1489 | { |
| 1490 | "id": "SNA1", |
| 1491 | "name": "SNANTXCA-SNA1" |
| 1492 | }, |
| 1493 | { |
| 1494 | "id": "PLT1", |
| 1495 | "name": "PLTNCA60-PLT1" |
| 1496 | }, |
| 1497 | { |
| 1498 | "id": "TLP1", |
| 1499 | "name": "TLPNXM18-TLP1" |
| 1500 | }, |
| 1501 | { |
| 1502 | "id": "SDD81", |
| 1503 | "name": "SAIT1DD6-SDD81" |
| 1504 | }, |
| 1505 | { |
| 1506 | "id": "DCC1", |
| 1507 | "name": "POIUYTGH-DCC1" |
| 1508 | }, |
| 1509 | { |
| 1510 | "id": "DCC2", |
| 1511 | "name": "POIUYTGH-DCC2" |
| 1512 | }, |
| 1513 | { |
| 1514 | "id": "OKC1", |
| 1515 | "name": "OKCBOK55-OKC1" |
| 1516 | }, |
| 1517 | { |
| 1518 | "id": "PAR1", |
| 1519 | "name": "PARSFRCG-PAR1" |
| 1520 | }, |
| 1521 | { |
| 1522 | "id": "TES36", |
| 1523 | "name": "ABCEETES-TES36" |
| 1524 | }, |
| 1525 | { |
| 1526 | "id": "COM1", |
| 1527 | "name": "PLMKOPIU-COM1" |
| 1528 | }, |
| 1529 | { |
| 1530 | "id": "ANI1", |
| 1531 | "name": "ATLNGTRE-ANI1" |
| 1532 | }, |
| 1533 | { |
| 1534 | "id": "SDG78", |
| 1535 | "name": "SDIT1BDG-SDG78" |
| 1536 | }, |
| 1537 | { |
| 1538 | "id": "mac20", |
| 1539 | "name": "PKGTESTF-mac20" |
| 1540 | }, |
| 1541 | { |
| 1542 | "id": "DSF45", |
| 1543 | "name": "DSFBG123-DSF45" |
| 1544 | }, |
| 1545 | { |
| 1546 | "id": "HST25", |
| 1547 | "name": "HSTNTX01-HST25" |
| 1548 | }, |
| 1549 | { |
| 1550 | "id": "AMD18", |
| 1551 | "name": "AUDIMA01-AMD18" |
| 1552 | }, |
| 1553 | { |
| 1554 | "id": "SAA80", |
| 1555 | "name": "SAIT9AA3-SAA80" |
| 1556 | }, |
| 1557 | { |
| 1558 | "id": "SSA56", |
| 1559 | "name": "SSIT2AA7-SSA56" |
| 1560 | }, |
| 1561 | { |
| 1562 | "id": "SDD82", |
| 1563 | "name": "SAIT1DD9-SDD82" |
| 1564 | }, |
| 1565 | { |
| 1566 | "id": "JCV1", |
| 1567 | "name": "JCVLFLBW-JCV1" |
| 1568 | }, |
| 1569 | { |
| 1570 | "id": "SUL2", |
| 1571 | "name": "WERTYUJK-SUL2" |
| 1572 | }, |
| 1573 | { |
| 1574 | "id": "PUR1", |
| 1575 | "name": "purelyde-PUR1" |
| 1576 | }, |
| 1577 | { |
| 1578 | "id": "FDE55", |
| 1579 | "name": "FDERT555-FDE55" |
| 1580 | }, |
| 1581 | { |
| 1582 | "id": "SITE", |
| 1583 | "name": "LONEENCO-SITE" |
| 1584 | }, |
| 1585 | { |
| 1586 | "id": "ATL1", |
| 1587 | "name": "ATLNGAMA-ATL1" |
| 1588 | }, |
| 1589 | { |
| 1590 | "id": "JUL1", |
| 1591 | "name": "ZXCVBNMM-JUL1" |
| 1592 | }, |
| 1593 | { |
| 1594 | "id": "TAT34", |
| 1595 | "name": "TESAAISB-TAT34" |
| 1596 | }, |
| 1597 | { |
| 1598 | "id": "XCP12", |
| 1599 | "name": "CHKGH123-XCP12" |
| 1600 | }, |
| 1601 | { |
| 1602 | "id": "RAI1", |
| 1603 | "name": "poiuytre-RAI1" |
| 1604 | }, |
| 1605 | { |
| 1606 | "id": "HPO1", |
| 1607 | "name": "ATLNGAUP-HPO1" |
| 1608 | }, |
| 1609 | { |
| 1610 | "id": "KJF12", |
| 1611 | "name": "KJFDH123-KJF12" |
| 1612 | }, |
| 1613 | { |
| 1614 | "id": "SCC80", |
| 1615 | "name": "SAIT9CC3-SCC80" |
| 1616 | }, |
| 1617 | { |
| 1618 | "id": "SAA12", |
| 1619 | "name": "SAIT9AF8-SAA12" |
| 1620 | }, |
| 1621 | { |
| 1622 | "id": "SAA14", |
| 1623 | "name": "SAIT1AA9-SAA14" |
| 1624 | }, |
| 1625 | { |
| 1626 | "id": "ATL35", |
| 1627 | "name": "TTESSAAI-ATL35" |
| 1628 | }, |
| 1629 | { |
| 1630 | "id": "CWY1", |
| 1631 | "name": "CWYMOWBS-CWY1" |
| 1632 | }, |
| 1633 | { |
| 1634 | "id": "ATL76", |
| 1635 | "name": "TELEPAAI-ATL76" |
| 1636 | }, |
| 1637 | { |
| 1638 | "id": "DSL12", |
| 1639 | "name": "DSLFK242-DSL12" |
| 1640 | }, |
| 1641 | { |
| 1642 | "id": "ATL53", |
| 1643 | "name": "AAIATLTE-ATL53" |
| 1644 | }, |
| 1645 | { |
| 1646 | "id": "SAA11", |
| 1647 | "name": "SAIT9AA2-SAA11" |
| 1648 | }, |
| 1649 | { |
| 1650 | "id": "ATL62", |
| 1651 | "name": "TESSASCH-ATL62" |
| 1652 | }, |
| 1653 | { |
| 1654 | "id": "AUG1", |
| 1655 | "name": "ASDFGHJK-AUG1" |
| 1656 | }, |
| 1657 | { |
| 1658 | "id": "POI22", |
| 1659 | "name": "POIUY123-POI22" |
| 1660 | }, |
| 1661 | { |
| 1662 | "id": "SAA13", |
| 1663 | "name": "SAIT1AA9-SAA13" |
| 1664 | }, |
| 1665 | { |
| 1666 | "id": "BHY17", |
| 1667 | "name": "BHYTFRF3-BHY17" |
| 1668 | }, |
| 1669 | { |
| 1670 | "id": "LIS1", |
| 1671 | "name": "HOSTPROF-LIS1" |
| 1672 | }, |
| 1673 | { |
| 1674 | "id": "SIP1", |
| 1675 | "name": "ZXCVBNMK-SIP1" |
| 1676 | }, |
| 1677 | { |
| 1678 | "id": "ATL99", |
| 1679 | "name": "TEESTAAI-ATL43" |
| 1680 | }, |
| 1681 | { |
| 1682 | "id": "ATL64", |
| 1683 | "name": "FORLOAAJ-ATL64" |
| 1684 | }, |
| 1685 | { |
| 1686 | "id": "TAT33", |
| 1687 | "name": "TESAAISA-TAT33" |
| 1688 | }, |
| 1689 | { |
| 1690 | "id": "RAD10", |
| 1691 | "name": "INDIPUNE-RAD10" |
| 1692 | }, |
| 1693 | { |
| 1694 | "id": "RTW5", |
| 1695 | "name": "BHYTFRY4-RTW5" |
| 1696 | }, |
| 1697 | { |
| 1698 | "id": "JGS1", |
| 1699 | "name": "KSJKKKKK-JGS1" |
| 1700 | }, |
| 1701 | { |
| 1702 | "id": "ATL98", |
| 1703 | "name": "TEESTAAI-ATL43" |
| 1704 | }, |
| 1705 | { |
| 1706 | "id": "WAN1", |
| 1707 | "name": "LEIWANGW-WAN1" |
| 1708 | }, |
| 1709 | { |
| 1710 | "id": "ATL44", |
| 1711 | "name": "ATLSANAB-ATL44" |
| 1712 | }, |
| 1713 | { |
| 1714 | "id": "RTD2", |
| 1715 | "name": "BHYTFRk4-RTD2" |
| 1716 | }, |
| 1717 | { |
| 1718 | "id": "NIR1", |
| 1719 | "name": "ORFLMANA-NIR1" |
| 1720 | }, |
| 1721 | { |
| 1722 | "id": "ATL75", |
| 1723 | "name": "SANAAIRE-ATL75" |
| 1724 | }, |
| 1725 | { |
| 1726 | "id": "NUM1", |
| 1727 | "name": "QWERTYUI-NUM1" |
| 1728 | }, |
| 1729 | { |
| 1730 | "id": "hvf32", |
| 1731 | "name": "MDTWNJ21-hvf32" |
| 1732 | }, |
| 1733 | { |
| 1734 | "id": "RTZ4", |
| 1735 | "name": "BHYTFRZ6-RTZ4" |
| 1736 | }, |
| 1737 | { |
| 1738 | "id": "ATL56", |
| 1739 | "name": "ATLSANAC-ATL56" |
| 1740 | }, |
| 1741 | { |
| 1742 | "id": "AMS1", |
| 1743 | "name": "AMSTNLBW-AMS1" |
| 1744 | }, |
| 1745 | { |
| 1746 | "id": "RCT1", |
| 1747 | "name": "AMSTERNL-RCT1" |
| 1748 | }, |
| 1749 | { |
| 1750 | "id": "JAN1", |
| 1751 | "name": "ORFLMATT-JAN1" |
| 1752 | }, |
| 1753 | { |
| 1754 | "id": "ABC14", |
| 1755 | "name": "TESAAISA-ABC14" |
| 1756 | }, |
| 1757 | { |
| 1758 | "id": "TAT37", |
| 1759 | "name": "TESAAISD-TAT37" |
| 1760 | }, |
| 1761 | { |
| 1762 | "id": "MIC54", |
| 1763 | "name": "MICHIGAN-MIC54" |
| 1764 | }, |
| 1765 | { |
| 1766 | "id": "ABC11", |
| 1767 | "name": "ATLSANAI-ABC11" |
| 1768 | }, |
| 1769 | { |
| 1770 | "id": "AMF11", |
| 1771 | "name": "AMDOCS01-AMF11" |
| 1772 | }, |
| 1773 | { |
| 1774 | "id": "ATL63", |
| 1775 | "name": "ATLSANEW-ATL63" |
| 1776 | }, |
| 1777 | { |
| 1778 | "id": "ABC12", |
| 1779 | "name": "ATLSECIA-ABC12" |
| 1780 | }, |
| 1781 | { |
| 1782 | "id": "hvf20", |
| 1783 | "name": "MDTWNJ21-hvf20" |
| 1784 | }, |
| 1785 | { |
| 1786 | "id": "ABC15", |
| 1787 | "name": "AAITESAN-ABC15" |
| 1788 | }, |
| 1789 | { |
Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 1790 | "id": "AVT1", |
| 1791 | "name": "AVTRFLHD-AVT1" |
| 1792 | }, |
| 1793 | { |
| 1794 | "id": "ATL34", |
| 1795 | "name": "ATLSANAI-ATL34" |
| 1796 | } |
| 1797 | ], |
| 1798 | "categoryParameters": { |
| 1799 | "owningEntityList": [ |
| 1800 | { |
| 1801 | "id": "aaa1", |
| 1802 | "name": "aaa1" |
| 1803 | }, |
| 1804 | { |
| 1805 | "id": "d61e6f2d-12fa-4cc2-91df-7c244011d6fc", |
| 1806 | "name": "WayneHolland" |
| 1807 | }, |
| 1808 | { |
| 1809 | "id": "Melissa", |
| 1810 | "name": "Melissa" |
| 1811 | } |
| 1812 | ], |
| 1813 | "projectList": [ |
| 1814 | { |
| 1815 | "id": "WATKINS", |
| 1816 | "name": "WATKINS" |
| 1817 | }, |
| 1818 | { |
| 1819 | "id": "x1", |
| 1820 | "name": "x1" |
| 1821 | }, |
| 1822 | { |
| 1823 | "id": "yyy1", |
| 1824 | "name": "yyy1" |
| 1825 | } |
| 1826 | ], |
| 1827 | "lineOfBusinessList": [ |
| 1828 | { |
| 1829 | "id": "ONAP", |
| 1830 | "name": "ONAP" |
| 1831 | }, |
| 1832 | { |
| 1833 | "id": "zzz1", |
| 1834 | "name": "zzz1" |
| 1835 | } |
| 1836 | ], |
| 1837 | "platformList": [ |
| 1838 | { |
| 1839 | "id": "platform", |
| 1840 | "name": "platform" |
| 1841 | }, |
| 1842 | { |
| 1843 | "id": "xxx1", |
| 1844 | "name": "xxx1" |
| 1845 | } |
| 1846 | ] |
| 1847 | }, |
| 1848 | "type": "[PRODUCT_FAMILIES] Update" |
| 1849 | } |
| 1850 | } |
| 1851 | } |
| 1852 | |
| 1853 | }); |
| 1854 | }); |