aboutsummaryrefslogtreecommitdiffstats
path: root/vid-automation/src/main/resources/registration_to_simulator/search_for_service_instance/aai_get_subscribers_for_customer_FIREWALL-MISC.json
blob: 25b0ab5fef6164e80723edb941f2f08cc1a3eceb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
{
  "simulatorRequest": {
    "method": "GET",
    "path": "/aai/v../business/customers/customer/31739f3e-526b-11e6-beb8-9e71128cae77",
    "queryParams": {
      "depth": 2
    }
  },
  "simulatorResponse": {
    "responseCode": 200,
    "body": {
      "global-customer-id": "31739f3e-526b-11e6-beb8-9e71128cae77",
      "subscriber-name": "FIREWALL/MISC",
      "subscriber-type": "INFRA",
      "resource-version": "1494001772223",
      "service-subscriptions": {
        "service-subscription": [
          {
            "service-type": "VDNS",
            "resource-version": "1494001850040",
            "service-instances": {
              "service-instance": [
                {
                  "service-instance-id": "d69c6add-c114-4dd8-9bfc-bb51c7989e93",
                  "service-instance-name": "test123",
                  "model-invariant-id": "c73dd832-d1eb-4c3a-bd04-00353c032209",
                  "model-version-id": "f9253bf0-3b74-4f6b-a966-697bc599691c",
                  "resource-version": "1494002069377"
                },
                {
                  "service-instance-id": "9caf5581-40ab-47be-b1f1-909a87724add",
                  "service-instance-name": "vidfirewallvdnstest",
                  "model-invariant-id": "732263bd-0655-428d-a347-d65676d1a949",
                  "resource-version": "1494002023060"
                },
                {
                  "service-instance-id": "916538e5-91d2-45f2-a0b4-2b1804361262",
                  "service-instance-name": "test5645543454",
                  "model-invariant-id": "709d1be4-9a3f-4a29-8c4d-a20465e808a3",
                  "model-version-id": "240376de-870e-48df-915a-31f140eedd2c",
                  "resource-version": "1499866361973",
                  "orchestration-status": "Active"
                }
              ]
            }
          },
          {
            "service-type": "VNTPS",
            "resource-version": "1494001936936",
            "service-instances": {
              "service-instance": [
                {
                  "service-instance-id": "99deef90-f034-438d-949c-069c22558657",
                  "service-instance-name": "Lital-S-1707094-VID",
                  "model-invariant-id": "331a194d-9248-4533-88bc-62c812ccb5c1",
                  "model-version-id": "171b3887-e73e-479d-8ef8-2690bf74f2aa",
                  "resource-version": "1500880984100",
                  "orchestration-status": "Active"
                },
                {
                  "service-instance-id": "14cbb92e-1ba6-46a6-893c-05f817ea81ec",
                  "service-instance-name": "MobilityServer_Instance10-26",
                  "service-type": "",
                  "service-role": "",
                  "environment-context": "General_Revenue-Bearing",
                  "workload-context": "Production",
                  "model-invariant-id": "1e34a014-6fd9-4b1c-9038-b2b885b93143",
                  "model-version-id": "8a380513-8a3e-4603-8558-67c1c7231e66",
                  "resource-version": "1509049693156",
                  "orchestration-status": "Active",
                  "relationship-list": {
                    "relationship": [
                      {
                        "related-to": "owning-entity",
                        "related-link": "/aai/v11/business/owning-entities/owning-entity/3215397d-435d-4892-8e4f-7321a4269a16",
                        "relationship-data": [
                          {
                            "relationship-key": "owning-entity.owning-entity-id",
                            "relationship-value": "3215397d-435d-4892-8e4f-7321a4269a16"
                          }
                        ]
                      }
                    ]
                  }
                },
                {
                  "service-instance-id": "47e0d120-0b7f-412c-9e5b-e26cfdc3b656",
                  "service-instance-name": "Lital-Test-VID-Service",
                  "model-invariant-id": "41543dd0-43c5-4346-bc52-d9883566d9aa",
                  "model-version-id": "420731a2-72f2-4786-9ba1-fd94f19a81cf",
                  "resource-version": "1500795793085",
                  "orchestration-status": "Active"
                },
                {
                  "service-instance-id": "5d521981-33be-4bb5-bb20-5616a9c52a5a",
                  "service-instance-name": "dfgh",
                  "service-type": "",
                  "service-role": "",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "331a194d-9248-4533-88bc-62c812ccb5c1",
                  "model-version-id": "171b3887-e73e-479d-8ef8-2690bf74f2aa",
                  "resource-version": "1508832105498",
                  "orchestration-status": "Active",
                  "relationship-list": {
                    "relationship": [
                      {
                        "related-to": "project",
                        "related-link": "/aai/v11/business/projects/project/Nimbus",
                        "relationship-data": [
                          {
                            "relationship-key": "project.project-name",
                            "relationship-value": "Nimbus"
                          }
                        ]
                      },
                      {
                        "related-to": "owning-entity",
                        "related-link": "/aai/v11/business/owning-entities/owning-entity/4d4ecf59-41f1-40d4-818d-885234680a42",
                        "relationship-data": [
                          {
                            "relationship-key": "owning-entity.owning-entity-id",
                            "relationship-value": "4d4ecf59-41f1-40d4-818d-885234680a42"
                          }
                        ]
                      }
                    ]
                  }
                }
              ]
            }
          },
          {
            "service-type": "VCDN",
            "resource-version": "1494001943182"
          },
          {
            "service-type": "MISVPN Transport",
            "resource-version": "1505859178418",
            "service-instances": {
              "service-instance": [
                {
                  "service-instance-id": "4ea864f2-b946-473a-b51c-51a7c10b8391",
                  "service-instance-name": "shaniiiiiiiiiiiiiiiiiiiiiiiiiiiiiii",
                  "service-type": "",
                  "service-role": "",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "709d1be4-9a3f-4a29-8c4d-a20465e808a3",
                  "model-version-id": "418f32e5-484a-4073-8fa9-fab7d497459f",
                  "resource-version": "1508226188903",
                  "orchestration-status": "Active",
                  "relationship-list": {
                    "relationship": [
                      {
                        "related-to": "project",
                        "related-link": "/aai/v11/business/projects/project/project1",
                        "relationship-data": [
                          {
                            "relationship-key": "project.project-name",
                            "relationship-value": "project1"
                          }
                        ]
                      },
                      {
                        "related-to": "owning-entity",
                        "related-link": "/aai/v11/business/owning-entities/owning-entity/f160c875-ddd1-4ef5-84d8-d098784daa3a",
                        "relationship-data": [
                          {
                            "relationship-key": "owning-entity.owning-entity-id",
                            "relationship-value": "f160c875-ddd1-4ef5-84d8-d098784daa3a"
                          }
                        ]
                      },
                      {
                        "related-to": "generic-vnf",
                        "related-link": "/aai/v11/network/generic-vnfs/generic-vnf/a0032f81-53e1-41f6-bc1a-de91ce1009f3",
                        "relationship-data": [
                          {
                            "relationship-key": "generic-vnf.vnf-id",
                            "relationship-value": "a0032f81-53e1-41f6-bc1a-de91ce1009f3"
                          }
                        ],
                        "related-to-property": [
                          {
                            "property-key": "generic-vnf.vnf-name",
                            "property-value": "adding_VNF"
                          }
                        ]
                      }
                    ]
                  }
                },
                {
                  "service-instance-id": "8b1b8793-467d-4e5b-9ff4-06abb40ec841",
                  "service-instance-name": "fgghgyy_shani",
                  "service-type": "",
                  "service-role": "",
                  "environment-context": "General_Revenue-Bearing",
                  "workload-context": "Production",
                  "model-invariant-id": "5b9c0f33-eec1-484a-bf77-736a6644d7a8",
                  "model-version-id": "b75e0d22-05ff-4448-9266-5f0d4e1dbbd6",
                  "resource-version": "1510817054514",
                  "orchestration-status": "Active",
                  "relationship-list": {
                    "relationship": [
                      {
                        "related-to": "owning-entity",
                        "related-link": "/aai/v11/business/owning-entities/owning-entity/2356a43d-ed56-43b6-aefc-8391b82588c9",
                        "relationship-data": [
                          {
                            "relationship-key": "owning-entity.owning-entity-id",
                            "relationship-value": "2356a43d-ed56-43b6-aefc-8391b82588c9"
                          }
                        ]
                      }
                    ]
                  }
                },
                {
                  "service-instance-id": "928d5560-4526-4721-8703-bcfc65177067",
                  "service-instance-name": "ServicePnf_30",
                  "service-type": "",
                  "service-role": "",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "43596836-ae36-4608-a987-6608ede10dac",
                  "model-version-id": "7fe0b7d7-8f20-4981-a4df-1fc3318defcc",
                  "resource-version": "1510827189590",
                  "selflink": "restconf/config/GENERIC-RESOURCE-API:services/service/928d5560-4526-4721-8703-bcfc65177067/service-data/service-topology/",
                  "orchestration-status": "Active"
                },
                {
                  "service-instance-id": "08a1a701-608f-4ac0-bc53-ba89dc2b06b2",
                  "service-instance-name": "ServicePnf_28",
                  "service-type": "",
                  "service-role": "",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "43596836-ae36-4608-a987-6608ede10dac",
                  "model-version-id": "7fe0b7d7-8f20-4981-a4df-1fc3318defcc",
                  "resource-version": "1510673823477",
                  "selflink": "restconf/config/GENERIC-RESOURCE-API:services/service/08a1a701-608f-4ac0-bc53-ba89dc2b06b2/service-data/service-topology/",
                  "orchestration-status": "Active"
                },
                {
                  "service-instance-id": "15477731-6cd4-417f-bcc3-f4ed63c2e452",
                  "service-instance-name": "s4anity",
                  "service-type": "",
                  "service-role": "",
                  "environment-context": "General_Revenue-Bearing",
                  "workload-context": "Production",
                  "model-invariant-id": "5b9c0f33-eec1-484a-bf77-736a6644d7a8",
                  "model-version-id": "b75e0d22-05ff-4448-9266-5f0d4e1dbbd6",
                  "resource-version": "1509889804126",
                  "orchestration-status": "Active",
                  "relationship-list": {
                    "relationship": [
                      {
                        "related-to": "owning-entity",
                        "related-link": "/aai/v11/business/owning-entities/owning-entity/e8016bed-4740-4bd3-a591-96f8788766ae",
                        "relationship-data": [
                          {
                            "relationship-key": "owning-entity.owning-entity-id",
                            "relationship-value": "e8016bed-4740-4bd3-a591-96f8788766ae"
                          }
                        ]
                      }
                    ]
                  }
                },
                {
                  "service-instance-id": "fafbf383-a04c-4a70-93ea-901582ca199b",
                  "service-instance-name": "verten",
                  "service-type": "",
                  "service-role": "",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "709d1be4-9a3f-4a29-8c4d-a20465e808a3",
                  "model-version-id": "87439333-fe61-4b09-8475-f2ced53d425b",
                  "resource-version": "1508995251487",
                  "orchestration-status": "Active",
                  "relationship-list": {
                    "relationship": [
                      {
                        "related-to": "owning-entity",
                        "related-link": "/aai/v11/business/owning-entities/owning-entity/4b65b294-1eb8-47ba-bd80-356004d4f0ed",
                        "relationship-data": [
                          {
                            "relationship-key": "owning-entity.owning-entity-id",
                            "relationship-value": "4b65b294-1eb8-47ba-bd80-356004d4f0ed"
                          }
                        ]
                      }
                    ]
                  }
                }
              ]
            },
            "relationship-list": {
              "relationship": [
                {
                  "related-to": "tenant",
                  "related-link": "/aai/v11/cloud-infrastructure/cloud-regions/cloud-region/att-aic/rdm3/tenants/tenant/0c48431cea8c460c998f57ed91515293",
                  "relationship-data": [
                    {
                      "relationship-key": "cloud-region.cloud-owner",
                      "relationship-value": "att-aic"
                    },
                    {
                      "relationship-key": "cloud-region.cloud-region-id",
                      "relationship-value": "rdm3"
                    },
                    {
                      "relationship-key": "tenant.tenant-id",
                      "relationship-value": "0c48431cea8c460c998f57ed91515293"
                    }
                  ],
                  "related-to-property": [
                    {
                      "property-key": "tenant.tenant-name",
                      "property-value": "sanity_test_tenant-746626838"
                    }
                  ]
                }
              ]
            }
          },
          {
            "service-type": "AIM Transport",
            "resource-version": "1505859153563",
            "service-instances": {
              "service-instance": [
                {
                  "service-instance-id": "c4743f14-1738-4d16-8773-1cfbe0c76c9b",
                  "service-instance-name": "ShaniService2",
                  "service-type": "",
                  "service-role": "",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "713783d5-9e21-49c5-86f1-77dc331586a2",
                  "model-version-id": "a50a43bb-4ac8-410c-acf3-c30aa39dd109",
                  "resource-version": "1506438228686",
                  "orchestration-status": "Active"
                },
                {
                  "service-instance-id": "000ef706-dc5b-4d3c-afc6-160b0474f2ef",
                  "service-instance-name": "version1",
                  "service-type": "",
                  "service-role": "",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "713783d5-9e21-49c5-86f1-77dc331586a2",
                  "model-version-id": "a50a43bb-4ac8-410c-acf3-c30aa39dd109",
                  "resource-version": "1506436202840",
                  "orchestration-status": "Active"
                },
                {
                  "service-instance-id": "f36f5734-e9df-4fbf-9f35-61be13f028a2",
                  "service-instance-name": "AIM_TRANSPORT_00014",
                  "service-type": "TRANSPORT",
                  "service-role": "AIM",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "300adb1e-9b0c-4d52-bfb5-fa5393c4eabb",
                  "model-version-id": "b6614ae6-e52d-44ed-9932-aae697624543",
                  "resource-version": "1509397929011",
                  "orchestration-status": "Created",
                  "relationship-list": {
                    "relationship": [
                      {
                        "related-to": "zone",
                        "related-link": "/aai/v11/network/zones/zone/ABC15",
                        "relationship-data": [
                          {
                            "relationship-key": "zone.zone-id",
                            "relationship-value": "ABC15"
                          }
                        ],
                        "related-to-property": [
                          {
                            "property-key": "zone.zone-name",
                            "property-value": "AAITESAN-ABC15"
                          }
                        ]
                      },
                      {
                        "related-to": "logical-link",
                        "related-link": "/aai/v11/network/logical-links/logical-link/SANITY7656cce9%3ALAG2295%7CSANITY7686cce9%3ALAG2264",
                        "relationship-data": [
                          {
                            "relationship-key": "logical-link.link-name",
                            "relationship-value": "SANITY7656cce9:LAG2295|SANITY7686cce9:LAG2264"
                          }
                        ]
                      }
                    ]
                  }
                },
                {
                  "service-instance-id": "facfdfb3-174d-46a5-8a9f-8251f21ee5ea",
                  "service-instance-name": "AIM_TRANSPORT_00003",
                  "service-type": "TRANSPORT",
                  "service-role": "AIM",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "300adb1e-9b0c-4d52-bfb5-fa5393c4eabb",
                  "model-version-id": "b6614ae6-e52d-44ed-9932-aae697624543",
                  "resource-version": "1509395666918",
                  "orchestration-status": "Created"
                },
                {
                  "service-instance-id": "f36f5734-e9df-4fbf-9f35-61be13f028a1",
                  "service-instance-name": "AIM_TRANSPORT_00004",
                  "service-type": "TRANSPORT",
                  "service-role": "AIM",
                  "environment-context": "General_Revenue-Bearing",
                  "workload-context": "Production",
                  "model-invariant-id": "300adb1e-9b0c-4d52-bfb5-fa5393c4eabb",
                  "model-version-id": "5c9e863f-2716-467b-8799-4a67f378dcaa",
                  "resource-version": "1508330555658",
                  "orchestration-status": "<ORCH_STATUS>",
                  "relationship-list": {
                    "relationship": [
                      {
                        "related-to": "zone",
                        "related-link": "/aai/v11/network/zones/zone/ABC11",
                        "relationship-data": [
                          {
                            "relationship-key": "zone.zone-id",
                            "relationship-value": "ABC11"
                          }
                        ],
                        "related-to-property": [
                          {
                            "property-key": "zone.zone-name",
                            "property-value": "ATLSANAI-ABC11"
                          }
                        ]
                      },
                      {
                        "related-to": "logical-link",
                        "related-link": "/aai/v11/network/logical-links/logical-link/SANITY6758cce9%3ALAG1992%7CSANITY6785cce9%3ALAG1961",
                        "relationship-data": [
                          {
                            "relationship-key": "logical-link.link-name",
                            "relationship-value": "SANITY6758cce9:LAG1992|SANITY6785cce9:LAG1961"
                          }
                        ]
                      },
                      {
                        "related-to": "logical-link",
                        "related-link": "/aai/v11/network/logical-links/logical-link/SANITY6757cce9%3ALAG1989%7CSANITY6785cce9%3ALAG1958",
                        "relationship-data": [
                          {
                            "relationship-key": "logical-link.link-name",
                            "relationship-value": "SANITY6757cce9:LAG1989|SANITY6785cce9:LAG1958"
                          }
                        ]
                      }
                    ]
                  }
                },
                {
                  "service-instance-id": "377f3202-e183-44a0-85e5-29a7e71603be",
                  "service-instance-name": "AIM_TRANSPORT_00002",
                  "service-type": "TRANSPORT",
                  "service-role": "AIM",
                  "model-invariant-id": "100cbe0e-ceb2-41e9-8918-eab9f7aa05bd",
                  "model-version-id": "32228134-a561-49ba-93af-735bc2d78e5e",
                  "resource-version": "1508448142346",
                  "orchestration-status": "PendingDelete"
                },
                {
                  "service-instance-id": "f36f5734-e9df-4fbf-9f35-61be13f028a4",
                  "service-instance-name": "AIM_TRANSPORT_00015",
                  "service-type": "TRANSPORT",
                  "service-role": "AIM",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "300adb1e-9b0c-4d52-bfb5-fa5393c4eabb",
                  "model-version-id": "b6614ae6-e52d-44ed-9932-aae697624543",
                  "resource-version": "1509470124946",
                  "orchestration-status": "Created"
                },
                {
                  "service-instance-id": "f36f5734-e9df-4fbf-9f35-61be13f028a5",
                  "service-instance-name": "AIM_TRANSPORT_00017",
                  "service-type": "TRANSPORT",
                  "service-role": "AIM",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "300adb1e-9b0c-4d52-bfb5-fa5393c4eabb",
                  "model-version-id": "b6614ae6-e52d-44ed-9932-aae697624543",
                  "resource-version": "1509470281154",
                  "orchestration-status": "Created",
                  "relationship-list": {
                    "relationship": [
                      {
                        "related-to": "zone",
                        "related-link": "/aai/v11/network/zones/zone/ABC15",
                        "relationship-data": [
                          {
                            "relationship-key": "zone.zone-id",
                            "relationship-value": "ABC15"
                          }
                        ],
                        "related-to-property": [
                          {
                            "property-key": "zone.zone-name",
                            "property-value": "AAITESAN-ABC15"
                          }
                        ]
                      },
                      {
                        "related-to": "logical-link",
                        "related-link": "/aai/v11/network/logical-links/logical-link/SANITY7658cce9%3ALAG2293%7CSANITY7685cce9%3ALAG2262",
                        "relationship-data": [
                          {
                            "relationship-key": "logical-link.link-name",
                            "relationship-value": "SANITY7658cce9:LAG2293|SANITY7685cce9:LAG2262"
                          }
                        ]
                      }
                    ]
                  }
                },
                {
                  "service-instance-id": "f36f5734-e9df-4fbf-9f35-61be13f028a7",
                  "service-instance-name": "AIM_TRANSPORT_00019",
                  "service-type": "TRANSPORT",
                  "service-role": "AIM",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "300adb1e-9b0c-4d52-bfb5-fa5393c4eabb",
                  "model-version-id": "b6614ae6-e52d-44ed-9932-aae697624543",
                  "resource-version": "1509470436456",
                  "orchestration-status": "Created",
                  "relationship-list": {
                    "relationship": [
                      {
                        "related-to": "zone",
                        "related-link": "/aai/v11/network/zones/zone/ABC15",
                        "relationship-data": [
                          {
                            "relationship-key": "zone.zone-id",
                            "relationship-value": "ABC15"
                          }
                        ],
                        "related-to-property": [
                          {
                            "property-key": "zone.zone-name",
                            "property-value": "AAITESAN-ABC15"
                          }
                        ]
                      },
                      {
                        "related-to": "logical-link",
                        "related-link": "/aai/v11/network/logical-links/logical-link/SANITY7657cce9%3ALAG2289%7CSANITY7685cce9%3ALAG2258",
                        "relationship-data": [
                          {
                            "relationship-key": "logical-link.link-name",
                            "relationship-value": "SANITY7657cce9:LAG2289|SANITY7685cce9:LAG2258"
                          }
                        ]
                      }
                    ]
                  }
                },
                {
                  "service-instance-id": "f36f5734-e9df-4fbf-9f35-61be13f028a3",
                  "service-instance-name": "AIM_TRANSPORT_00015",
                  "service-type": "TRANSPORT",
                  "service-role": "AIM",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "300adb1e-9b0c-4d52-bfb5-fa5393c4eabb",
                  "model-version-id": "b6614ae6-e52d-44ed-9932-aae697624543",
                  "resource-version": "1509399074465",
                  "orchestration-status": "Created",
                  "relationship-list": {
                    "relationship": [
                      {
                        "related-to": "zone",
                        "related-link": "/aai/v11/network/zones/zone/ABC15",
                        "relationship-data": [
                          {
                            "relationship-key": "zone.zone-id",
                            "relationship-value": "ABC15"
                          }
                        ],
                        "related-to-property": [
                          {
                            "property-key": "zone.zone-name",
                            "property-value": "AAITESAN-ABC15"
                          }
                        ]
                      },
                      {
                        "related-to": "logical-link",
                        "related-link": "/aai/v11/network/logical-links/logical-link/SANITY7656cce9%3ALAG2294%7CSANITY7686cce9%3ALAG2263",
                        "relationship-data": [
                          {
                            "relationship-key": "logical-link.link-name",
                            "relationship-value": "SANITY7656cce9:LAG2294|SANITY7686cce9:LAG2263"
                          }
                        ]
                      }
                    ]
                  }
                },
                {
                  "service-instance-id": "181edf1e-725d-47af-ab3f-6b4e297032ab",
                  "service-instance-name": "ServicePnf_26",
                  "service-type": "",
                  "service-role": "",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "43596836-ae36-4608-a987-6608ede10dac",
                  "model-version-id": "7fe0b7d7-8f20-4981-a4df-1fc3318defcc",
                  "resource-version": "1510673032572",
                  "selflink": "restconf/config/GENERIC-RESOURCE-API:services/service/181edf1e-725d-47af-ab3f-6b4e297032ab/service-data/service-topology/",
                  "orchestration-status": "Active"
                },
                {
                  "service-instance-id": "facfdfb3-174d-46a5-8a9f-8251f21zz5yz",
                  "service-instance-name": "AIM_TRANSPORT_00013",
                  "service-type": "TRANSPORT",
                  "service-role": "AIM",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "300adb1e-9b0c-4d52-bfb5-fa5393c4eabb",
                  "model-version-id": "b6614ae6-e52d-44ed-9932-aae697624543",
                  "resource-version": "1509396039342",
                  "orchestration-status": "Created"
                },
                {
                  "service-instance-id": "4759b4f0-3350-40b0-9e06-2bebdacb21d8",
                  "service-instance-name": "ServicePnf_27",
                  "service-type": "",
                  "service-role": "",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "43596836-ae36-4608-a987-6608ede10dac",
                  "model-version-id": "7fe0b7d7-8f20-4981-a4df-1fc3318defcc",
                  "resource-version": "1510673651875",
                  "selflink": "restconf/config/GENERIC-RESOURCE-API:services/service/4759b4f0-3350-40b0-9e06-2bebdacb21d8/service-data/service-topology/",
                  "orchestration-status": "Active"
                },
                {
                  "service-instance-id": "1cc01b8b-7604-4fd3-8cb2-f01466407f76",
                  "service-instance-name": "ServicePnf_29",
                  "service-type": "",
                  "service-role": "",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "43596836-ae36-4608-a987-6608ede10dac",
                  "model-version-id": "7fe0b7d7-8f20-4981-a4df-1fc3318defcc",
                  "resource-version": "1510826917947",
                  "selflink": "restconf/config/GENERIC-RESOURCE-API:services/service/1cc01b8b-7604-4fd3-8cb2-f01466407f76/service-data/service-topology/",
                  "orchestration-status": "Active"
                },
                {
                  "service-instance-id": "e67d0806-95c9-41a5-86a7-3920c1bdf69f",
                  "service-instance-name": "dfgfgg",
                  "service-type": "",
                  "service-role": "",
                  "environment-context": "General_Revenue-Bearing",
                  "workload-context": "Production",
                  "model-invariant-id": "d27e42cf-087e-4d31-88ac-6c4b7585f800",
                  "model-version-id": "4d71990b-d8ad-4510-ac61-496288d9078e",
                  "resource-version": "1510817944682",
                  "orchestration-status": "Active",
                  "relationship-list": {
                    "relationship": [
                      {
                        "related-to": "project",
                        "related-link": "/aai/v11/business/projects/project/Nimbus",
                        "relationship-data": [
                          {
                            "relationship-key": "project.project-name",
                            "relationship-value": "Nimbus"
                          }
                        ]
                      },
                      {
                        "related-to": "owning-entity",
                        "related-link": "/aai/v11/business/owning-entities/owning-entity/ab18aa18-9644-441d-be6e-af6cadbc21ab",
                        "relationship-data": [
                          {
                            "relationship-key": "owning-entity.owning-entity-id",
                            "relationship-value": "ab18aa18-9644-441d-be6e-af6cadbc21ab"
                          }
                        ]
                      }
                    ]
                  }
                }
              ]
            },
            "relationship-list": {
              "relationship": [
                {
                  "related-to": "tenant",
                  "related-link": "/aai/v11/cloud-infrastructure/cloud-regions/cloud-region/att-aic/rdm3/tenants/tenant/0c48431cea8c460c998f57ed91515293",
                  "relationship-data": [
                    {
                      "relationship-key": "cloud-region.cloud-owner",
                      "relationship-value": "att-aic"
                    },
                    {
                      "relationship-key": "cloud-region.cloud-region-id",
                      "relationship-value": "rdm3"
                    },
                    {
                      "relationship-key": "tenant.tenant-id",
                      "relationship-value": "0c48431cea8c460c998f57ed91515293"
                    }
                  ],
                  "related-to-property": [
                    {
                      "property-key": "tenant.tenant-name",
                      "property-value": "sanity_test_tenant-746626838"
                    }
                  ]
                }
              ]
            }
          },
          {
            "service-type": "AIM Transport",
            "resource-version": "1505859153563",
            "service-instances": {
              "service-instance": [
                {
                  "service-instance-id": "c4743f14-1738-4d16-8773-1cfbe0c76c9b",
                  "service-instance-name": "ShaniService2",
                  "service-type": "",
                  "service-role": "",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "713783d5-9e21-49c5-86f1-77dc331586a2",
                  "model-version-id": "a50a43bb-4ac8-410c-acf3-c30aa39dd109",
                  "resource-version": "1506438228686",
                  "orchestration-status": "Active"
                },
                {
                  "service-instance-id": "000ef706-dc5b-4d3c-afc6-160b0474f2ef",
                  "service-instance-name": "version1",
                  "service-type": "",
                  "service-role": "",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "713783d5-9e21-49c5-86f1-77dc331586a2",
                  "model-version-id": "a50a43bb-4ac8-410c-acf3-c30aa39dd109",
                  "resource-version": "1506436202840",
                  "orchestration-status": "Active"
                },
                {
                  "service-instance-id": "f36f5734-e9df-4fbf-9f35-61be13f028a2",
                  "service-instance-name": "AIM_TRANSPORT_00014",
                  "service-type": "TRANSPORT",
                  "service-role": "AIM",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "300adb1e-9b0c-4d52-bfb5-fa5393c4eabb",
                  "model-version-id": "b6614ae6-e52d-44ed-9932-aae697624543",
                  "resource-version": "1509397929011",
                  "orchestration-status": "Created",
                  "relationship-list": {
                    "relationship": [
                      {
                        "related-to": "zone",
                        "related-link": "/aai/v11/network/zones/zone/ABC15",
                        "relationship-data": [
                          {
                            "relationship-key": "zone.zone-id",
                            "relationship-value": "ABC15"
                          }
                        ],
                        "related-to-property": [
                          {
                            "property-key": "zone.zone-name",
                            "property-value": "AAITESAN-ABC15"
                          }
                        ]
                      },
                      {
                        "related-to": "logical-link",
                        "related-link": "/aai/v11/network/logical-links/logical-link/SANITY7656cce9%3ALAG2295%7CSANITY7686cce9%3ALAG2264",
                        "relationship-data": [
                          {
                            "relationship-key": "logical-link.link-name",
                            "relationship-value": "SANITY7656cce9:LAG2295|SANITY7686cce9:LAG2264"
                          }
                        ]
                      }
                    ]
                  }
                },
                {
                  "service-instance-id": "facfdfb3-174d-46a5-8a9f-8251f21ee5ea",
                  "service-instance-name": "AIM_TRANSPORT_00003",
                  "service-type": "TRANSPORT",
                  "service-role": "AIM",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "300adb1e-9b0c-4d52-bfb5-fa5393c4eabb",
                  "model-version-id": "b6614ae6-e52d-44ed-9932-aae697624543",
                  "resource-version": "1509395666918",
                  "orchestration-status": "Created"
                },
                {
                  "service-instance-id": "f36f5734-e9df-4fbf-9f35-61be13f028a1",
                  "service-instance-name": "AIM_TRANSPORT_00004",
                  "service-type": "TRANSPORT",
                  "service-role": "AIM",
                  "environment-context": "General_Revenue-Bearing",
                  "workload-context": "Production",
                  "model-invariant-id": "300adb1e-9b0c-4d52-bfb5-fa5393c4eabb",
                  "model-version-id": "5c9e863f-2716-467b-8799-4a67f378dcaa",
                  "resource-version": "1508330555658",
                  "orchestration-status": "<ORCH_STATUS>",
                  "relationship-list": {
                    "relationship": [
                      {
                        "related-to": "zone",
                        "related-link": "/aai/v11/network/zones/zone/ABC11",
                        "relationship-data": [
                          {
                            "relationship-key": "zone.zone-id",
                            "relationship-value": "ABC11"
                          }
                        ],
                        "related-to-property": [
                          {
                            "property-key": "zone.zone-name",
                            "property-value": "ATLSANAI-ABC11"
                          }
                        ]
                      },
                      {
                        "related-to": "logical-link",
                        "related-link": "/aai/v11/network/logical-links/logical-link/SANITY6758cce9%3ALAG1992%7CSANITY6785cce9%3ALAG1961",
                        "relationship-data": [
                          {
                            "relationship-key": "logical-link.link-name",
                            "relationship-value": "SANITY6758cce9:LAG1992|SANITY6785cce9:LAG1961"
                          }
                        ]
                      },
                      {
                        "related-to": "logical-link",
                        "related-link": "/aai/v11/network/logical-links/logical-link/SANITY6757cce9%3ALAG1989%7CSANITY6785cce9%3ALAG1958",
                        "relationship-data": [
                          {
                            "relationship-key": "logical-link.link-name",
                            "relationship-value": "SANITY6757cce9:LAG1989|SANITY6785cce9:LAG1958"
                          }
                        ]
                      }
                    ]
                  }
                },
                {
                  "service-instance-id": "377f3202-e183-44a0-85e5-29a7e71603be",
                  "service-instance-name": "AIM_TRANSPORT_00002",
                  "service-type": "TRANSPORT",
                  "service-role": "AIM",
                  "model-invariant-id": "100cbe0e-ceb2-41e9-8918-eab9f7aa05bd",
                  "model-version-id": "32228134-a561-49ba-93af-735bc2d78e5e",
                  "resource-version": "1508448142346",
                  "orchestration-status": "PendingDelete"
                },
                {
                  "service-instance-id": "f36f5734-e9df-4fbf-9f35-61be13f028a4",
                  "service-instance-name": "AIM_TRANSPORT_00015",
                  "service-type": "TRANSPORT",
                  "service-role": "AIM",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "300adb1e-9b0c-4d52-bfb5-fa5393c4eabb",
                  "model-version-id": "b6614ae6-e52d-44ed-9932-aae697624543",
                  "resource-version": "1509470124946",
                  "orchestration-status": "Created"
                },
                {
                  "service-instance-id": "f36f5734-e9df-4fbf-9f35-61be13f028a5",
                  "service-instance-name": "AIM_TRANSPORT_00017",
                  "service-type": "TRANSPORT",
                  "service-role": "AIM",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "300adb1e-9b0c-4d52-bfb5-fa5393c4eabb",
                  "model-version-id": "b6614ae6-e52d-44ed-9932-aae697624543",
                  "resource-version": "1509470281154",
                  "orchestration-status": "Created",
                  "relationship-list": {
                    "relationship": [
                      {
                        "related-to": "zone",
                        "related-link": "/aai/v11/network/zones/zone/ABC15",
                        "relationship-data": [
                          {
                            "relationship-key": "zone.zone-id",
                            "relationship-value": "ABC15"
                          }
                        ],
                        "related-to-property": [
                          {
                            "property-key": "zone.zone-name",
                            "property-value": "AAITESAN-ABC15"
                          }
                        ]
                      },
                      {
                        "related-to": "logical-link",
                        "related-link": "/aai/v11/network/logical-links/logical-link/SANITY7658cce9%3ALAG2293%7CSANITY7685cce9%3ALAG2262",
                        "relationship-data": [
                          {
                            "relationship-key": "logical-link.link-name",
                            "relationship-value": "SANITY7658cce9:LAG2293|SANITY7685cce9:LAG2262"
                          }
                        ]
                      }
                    ]
                  }
                },
                {
                  "service-instance-id": "f36f5734-e9df-4fbf-9f35-61be13f028a7",
                  "service-instance-name": "AIM_TRANSPORT_00019",
                  "service-type": "TRANSPORT",
                  "service-role": "AIM",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "300adb1e-9b0c-4d52-bfb5-fa5393c4eabb",
                  "model-version-id": "b6614ae6-e52d-44ed-9932-aae697624543",
                  "resource-version": "1509470436456",
                  "orchestration-status": "Created",
                  "relationship-list": {
                    "relationship": [
                      {
                        "related-to": "zone",
                        "related-link": "/aai/v11/network/zones/zone/ABC15",
                        "relationship-data": [
                          {
                            "relationship-key": "zone.zone-id",
                            "relationship-value": "ABC15"
                          }
                        ],
                        "related-to-property": [
                          {
                            "property-key": "zone.zone-name",
                            "property-value": "AAITESAN-ABC15"
                          }
                        ]
                      },
                      {
                        "related-to": "logical-link",
                        "related-link": "/aai/v11/network/logical-links/logical-link/SANITY7657cce9%3ALAG2289%7CSANITY7685cce9%3ALAG2258",
                        "relationship-data": [
                          {
                            "relationship-key": "logical-link.link-name",
                            "relationship-value": "SANITY7657cce9:LAG2289|SANITY7685cce9:LAG2258"
                          }
                        ]
                      }
                    ]
                  }
                },
                {
                  "service-instance-id": "f36f5734-e9df-4fbf-9f35-61be13f028a3",
                  "service-instance-name": "AIM_TRANSPORT_00015",
                  "service-type": "TRANSPORT",
                  "service-role": "AIM",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "300adb1e-9b0c-4d52-bfb5-fa5393c4eabb",
                  "model-version-id": "b6614ae6-e52d-44ed-9932-aae697624543",
                  "resource-version": "1509399074465",
                  "orchestration-status": "Created",
                  "relationship-list": {
                    "relationship": [
                      {
                        "related-to": "zone",
                        "related-link": "/aai/v11/network/zones/zone/ABC15",
                        "relationship-data": [
                          {
                            "relationship-key": "zone.zone-id",
                            "relationship-value": "ABC15"
                          }
                        ],
                        "related-to-property": [
                          {
                            "property-key": "zone.zone-name",
                            "property-value": "AAITESAN-ABC15"
                          }
                        ]
                      },
                      {
                        "related-to": "logical-link",
                        "related-link": "/aai/v11/network/logical-links/logical-link/SANITY7656cce9%3ALAG2294%7CSANITY7686cce9%3ALAG2263",
                        "relationship-data": [
                          {
                            "relationship-key": "logical-link.link-name",
                            "relationship-value": "SANITY7656cce9:LAG2294|SANITY7686cce9:LAG2263"
                          }
                        ]
                      }
                    ]
                  }
                },
                {
                  "service-instance-id": "181edf1e-725d-47af-ab3f-6b4e297032ab",
                  "service-instance-name": "ServicePnf_26",
                  "service-type": "",
                  "service-role": "",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "43596836-ae36-4608-a987-6608ede10dac",
                  "model-version-id": "7fe0b7d7-8f20-4981-a4df-1fc3318defcc",
                  "resource-version": "1510673032572",
                  "selflink": "restconf/config/GENERIC-RESOURCE-API:services/service/181edf1e-725d-47af-ab3f-6b4e297032ab/service-data/service-topology/",
                  "orchestration-status": "Active"
                },
                {
                  "service-instance-id": "facfdfb3-174d-46a5-8a9f-8251f21zz5yz",
                  "service-instance-name": "AIM_TRANSPORT_00013",
                  "service-type": "TRANSPORT",
                  "service-role": "AIM",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "300adb1e-9b0c-4d52-bfb5-fa5393c4eabb",
                  "model-version-id": "b6614ae6-e52d-44ed-9932-aae697624543",
                  "resource-version": "1509396039342",
                  "orchestration-status": "Created"
                },
                {
                  "service-instance-id": "4759b4f0-3350-40b0-9e06-2bebdacb21d8",
                  "service-instance-name": "ServicePnf_27",
                  "service-type": "",
                  "service-role": "",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "43596836-ae36-4608-a987-6608ede10dac",
                  "model-version-id": "7fe0b7d7-8f20-4981-a4df-1fc3318defcc",
                  "resource-version": "1510673651875",
                  "selflink": "restconf/config/GENERIC-RESOURCE-API:services/service/4759b4f0-3350-40b0-9e06-2bebdacb21d8/service-data/service-topology/",
                  "orchestration-status": "Active"
                },
                {
                  "service-instance-id": "1cc01b8b-7604-4fd3-8cb2-f01466407f76",
                  "service-instance-name": "ServicePnf_29",
                  "service-type": "",
                  "service-role": "",
                  "environment-context": "null",
                  "workload-context": "null",
                  "model-invariant-id": "43596836-ae36-4608-a987-6608ede10dac",
                  "model-version-id": "7fe0b7d7-8f20-4981-a4df-1fc3318defcc",
                  "resource-version": "1510826917947",
                  "selflink": "restconf/config/GENERIC-RESOURCE-API:services/service/1cc01b8b-7604-4fd3-8cb2-f01466407f76/service-data/service-topology/",
                  "orchestration-status": "Active"
                },
                {
                  "service-instance-id": "e67d0806-95c9-41a5-86a7-3920c1bdf69f",
                  "service-instance-name": "dfgfgg",
                  "service-type": "",
                  "service-role": "",
                  "environment-context": "General_Revenue-Bearing",
                  "workload-context": "Production",
                  "model-invariant-id": "d27e42cf-087e-4d31-88ac-6c4b7585f800",
                  "model-version-id": "4d71990b-d8ad-4510-ac61-496288d9078e",
                  "resource-version": "1510817944682",
                  "orchestration-status": "Active",
                  "relationship-list": {
                    "relationship": [
                      {
                        "related-to": "project",
                        "related-link": "/aai/v11/business/projects/project/Nimbus",
                        "relationship-data": [
                          {
                            "relationship-key": "project.project-name",
                            "relationship-value": "Nimbus"
                          }
                        ]
                      },
                      {
                        "related-to": "owning-entity",
                        "related-link": "/aai/v11/business/owning-entities/owning-entity/ab18aa18-9644-441d-be6e-af6cadbc21ab",
                        "relationship-data": [
                          {
                            "relationship-key": "owning-entity.owning-entity-id",
                            "relationship-value": "ab18aa18-9644-441d-be6e-af6cadbc21ab"
                          }
                        ]
                      }
                    ]
                  }
                }
              ]
            },
            "relationship-list": {
              "relationship": [
                {
                  "related-to": "tenant",
                  "related-link": "/aai/v11/cloud-infrastructure/cloud-regions/cloud-region/att-aic/rdm3/tenants/tenant/0c48431cea8c460c998f57ed91515293",
                  "relationship-data": [
                    {
                      "relationship-key": "cloud-region.cloud-owner",
                      "relationship-value": "att-aic"
                    },
                    {
                      "relationship-key": "cloud-region.cloud-region-id",
                      "relationship-value": "rdm3"
                    },
                    {
                      "relationship-key": "tenant.tenant-id",
                      "relationship-value": "0c48431cea8c460c998f57ed91515293"
                    }
                  ],
                  "related-to-property": [
                    {
                      "property-key": "tenant.tenant-name",
                      "property-value": "sanity_test_tenant-746626838"
                    }
                  ]
                }
              ]
            }
          }
        ]
      }
    }
  }
}