aboutsummaryrefslogtreecommitdiffstats
path: root/docs/cmd_sample.rst
blob: 246bcbfdc2634ae89487cb3add852a5c71d3b94b (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
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
.. This work is licensed under a Creative Commons Attribution 4.0 International License.
.. http://creativecommons.org/licenses/by/4.0
.. Copyright 2017 Huawei Technologies Co., Ltd.

.. _cli_cmd_sample:

CLI Samples
==============



onap-1.1
========



cloud-delete
------------

input::

 --cloud-name huawei-cloud-test --region-name bangalore-test --resource-version 1509027982352


cloud-create
------------

input::

 --cloud-name huawei-cloud --region-name bangalore


cloud-list
----------

output::

 +--------------+------------+------------------+
 |cloud         |region      |resource-version  |
 +--------------+------------+------------------+
 |huawei-cloud  |bangalore   |1509027332165     |
 +--------------+------------+------------------+
 |Rackspace     |RegionOne   |1508827902543     |
 +--------------+------------+------------------+

vnfm-list
---------

output::

 +--------------------------------------+--------------------------------------+------------------+------------------+
 |vnfm-id                               |vim-id                                |certificate-url   |resource-version  |
 +--------------------------------------+--------------------------------------+------------------+------------------+
 |c0ecd788-22f4-49a4-a969-68051cd517e7  |acc5e14e-1320-4ab5-97fe-b7cc82ad03f2  |                  |1509094328901     |
 +--------------------------------------+--------------------------------------+------------------+------------------+

vnfm-unregister
---------------

input::

 --vnfm-id c0ecd788-22f4-49a4-a969-68051cd517e7 --resource-version 1509094328901


vnfm-show
---------

input::

 --vnfm-id c0ecd788-22f4-49a4-a969-68051cd517e7

output::

 +----------+------------------+
 |property  |value             |
 +----------+------------------+
 |name      |vnfm1             |
 +----------+------------------+
 |type      |OpenStack         |
 +----------+------------------+
 |vendor    |ONAP              |
 +----------+------------------+
 |version   |1.0               |
 +----------+------------------+
 |url       |http://10.0.1.1   |
 +----------+------------------+

vnfm-register
-------------

input::

 --vim-id acc5e14e-1320-4ab5-97fe-b7cc82ad03f2 --name vnfm1 --type OpenStack --vendor ONAP --vnfm-version 1.0 --url http://10.0.1.1 --username admin --password password


vim-list
--------

input::

 --cloud-name huawei-cloud --region-name bangalore --long

output::

 +--------------------------------------+------------+------------+----------+----------+--------------------------------+----------+--------------+----------------+------------------+
 |vim-id                                |name        |type        |vendor    |version   |url                             |username  |cloud-domain  |default-tenant  |resource-version  |
 +--------------------------------------+------------+------------+----------+----------+--------------------------------+----------+--------------+----------------+------------------+
 |acc5e14e-1320-4ab5-97fe-b7cc82ad03f2  |RegionOne   |OpenStack   |Devstack  |newton    |http://192.168.16.149/identity  |onap      |default       |onap            |1509093477505     |
 +--------------------------------------+------------+------------+----------+----------+--------------------------------+----------+--------------+----------------+------------------+
 |810edb5a-42e9-462d-9587-96bc9272ac27  |vim1        |OpenStack   |Devstack  |newton    |http://192.168.16.149/identity  |onap      |default       |onap            |1509093590932     |
 +--------------------------------------+------------+------------+----------+----------+--------------------------------+----------+--------------+----------------+------------------+

vim-register
------------

input::

 --cloud-name huawei-cloud --region-name bangalore --name vim1 --type OpenStack --vendor Devstack --vim-version newton --url http://192.168.16.149/identity --username onap --password onap --cloud-domain default --default-tenant onap


vim-unregister
--------------

input::

 --vim-id 810edb5a-42e9-462d-9587-96bc9272ac27 --cloud-name huawei-cloud --region-name bangalore --resource-version 1509093590932


ems-register
------------

input::

 --name ems1 --type ems --vendor boco --ems-version 1.0 --url http://10.0.0.1 --username admin --password password --remote-path sample


ems-unregister
--------------

input::

 --ems-id 51a480ed-649c-4c47-a84b-f966dc4f9554 --resource-version 1509095358658


ems-list
--------

output::

 +--------------------------------------+------------------+
 |ems-id                                |resource-version  |
 +--------------------------------------+------------------+
 |51a480ed-649c-4c47-a84b-f966dc4f9554  |1509095358658     |
 +--------------------------------------+------------------+

ems-show
--------

input::

 --ems-id 51a480ed-649c-4c47-a84b-f966dc4f9554

output::

 +------+------+--------+----------+------------------+
 |name  |type  |vendor  |version   |url               |
 +------+------+--------+----------+------------------+
 |ems1  |ems   |boco    |1.0       |http://10.0.0.1   |
 +------+------+--------+----------+------------------+

subscription-delete
-------------------

input::

 --customer-name kanag --service-type vFW-kanag --resource-version 1509079144326


subscription-list
-----------------

input::

 --customer-name kanag

output::

 +--------------+------------------+
 |service-type  |resource-version  |
 +--------------+------------------+
 |vFW-kanag     |1509079144326     |
 +--------------+------------------+

subscription-create
-------------------

input::

 --customer-name kanag --cloud-name huawei-cloud --cloud-region bangalore --cloud-tenant-id e18173e6-6a13-4614-a13c-3859e7321103 --service-type vFW-kanag


customer-delete
---------------

input::

 --customer-name test --resource-version 1509029022293


customer-show
-------------

input::

 --customer-name kanag --long

output::

 +--------+------------------+------------------+------------------+
 |name    |subscriber-name   |resource-version  |subscriber-type   |
 +--------+------------------+------------------+------------------+
 |kanag   |kanag             |1509029007060     |INFRA             |
 +--------+------------------+------------------+------------------+

customer-create
---------------

input::

 --customer-name test --subscriber-name test


customer-list
-------------

output::

 +----------------+------------------+
 |name            |resource-version  |
 +----------------+------------------+
 |test            |1509029022293     |
 +----------------+------------------+
 |kanag           |1509029007060     |
 +----------------+------------------+
 |Demonstration   |1508827908763     |
 +----------------+------------------+

vf-show
-------

input::

 --vf-id 1a667ce8-8b8b-4f59-ba5c-b162ae462fef -m https://192.168.17.111:8443 -u AAI -p AAI

output::

 +------------------------+--------------------------------------+
 |property                |value                                 |
 +------------------------+--------------------------------------+
 |vf-id                   |1a667ce8-8b8b-4f59-ba5c-b162ae462fef  |
 +------------------------+--------------------------------------+
 |vf-name                 |vlb-cli-sample-8                      |
 +------------------------+--------------------------------------+
 |vf-type                 |demoVLB/null                          |
 +------------------------+--------------------------------------+
 |model-invariant-id      |cc34cd54-dd7c-44cd-8847-f9577c6f1a49  |
 +------------------------+--------------------------------------+
 |model-uuid              |8b1f63f3-e0cc-4c27-8903-fafe2f25bfbe  |
 +------------------------+--------------------------------------+
 |model-customization-id  |cf893f5a-1bb1-4e32-a92b-2456e12178f8  |
 +------------------------+--------------------------------------+
 |service-id              |2ad87511-4289-4bd7-ab0b-0b29d3d4c8ee  |
 +------------------------+--------------------------------------+

service-list
------------

input::

 -x Demonstration -y vLB --long

output::

 +--------------------------------------+----------------------------+--------------------------------------+--------------------------------------+--------------+
 |service-id                            |service-name                |model-invariant-id                    |model-uuid                            |description   |
 +--------------------------------------+----------------------------+--------------------------------------+--------------------------------------+--------------+
 |1db042a9-6b28-4290-baba-872d32eeecf2  |sample-instance             |1de901ed-17af-4b03-bc1f-41659cfa27cb  |ace39141-09ec-4068-b06d-ac6b23bdc6e0  |              |
 +--------------------------------------+----------------------------+--------------------------------------+--------------------------------------+--------------+
 |9244629b-4ae4-48a0-bac0-b76937105ec7  |demo-vlb-vid                |1de901ed-17af-4b03-bc1f-41659cfa27cb  |ace39141-09ec-4068-b06d-ac6b23bdc6e0  |              |
 +--------------------------------------+----------------------------+--------------------------------------+--------------------------------------+--------------+
 |912d6d8d-9534-41d0-9323-289e81d4e399  |sample-instance-3           |1de901ed-17af-4b03-bc1f-41659cfa27cb  |ace39141-09ec-4068-b06d-ac6b23bdc6e0  |              |
 +--------------------------------------+----------------------------+--------------------------------------+--------------------------------------+--------------+
 |26b4ea72-d119-4345-95c8-568b08a093aa  |sample-service-onap-cli-2   |1de901ed-17af-4b03-bc1f-41659cfa27cb  |ace39141-09ec-4068-b06d-ac6b23bdc6e0  |              |
 +--------------------------------------+----------------------------+--------------------------------------+--------------------------------------+--------------+
 |b2ebdb88-cfa5-496f-93a5-d535accbf56a  |sample-instance-1           |1de901ed-17af-4b03-bc1f-41659cfa27cb  |ace39141-09ec-4068-b06d-ac6b23bdc6e0  |              |
 +--------------------------------------+----------------------------+--------------------------------------+--------------------------------------+--------------+
 |01eb6e59-5c28-4c76-85c7-a6b1e48058b9  |sample-service-onap-cli-4   |1de901ed-17af-4b03-bc1f-41659cfa27cb  |ace39141-09ec-4068-b06d-ac6b23bdc6e0  |              |
 +--------------------------------------+----------------------------+--------------------------------------+--------------------------------------+--------------+
 |03acb854-647b-4cf9-bfd8-a76083bb7266  |sample-service-onap-cli-3   |1de901ed-17af-4b03-bc1f-41659cfa27cb  |ace39141-09ec-4068-b06d-ac6b23bdc6e0  |              |
 +--------------------------------------+----------------------------+--------------------------------------+--------------------------------------+--------------+
 |14a9d485-63de-4ce2-b763-133ec3ce3d23  |sample-service-onap-cli-8   |1de901ed-17af-4b03-bc1f-41659cfa27cb  |ace39141-09ec-4068-b06d-ac6b23bdc6e0  |              |
 +--------------------------------------+----------------------------+--------------------------------------+--------------------------------------+--------------+
 |fdb98970-9de8-48a3-a321-d02693d2d1ad  |sample-service-onap-cli-9   |1de901ed-17af-4b03-bc1f-41659cfa27cb  |ace39141-09ec-4068-b06d-ac6b23bdc6e0  |              |
 +--------------------------------------+----------------------------+--------------------------------------+--------------------------------------+--------------+
 |50de14d5-73d6-458e-880e-de8278b6f944  |test                        |1de901ed-17af-4b03-bc1f-41659cfa27cb  |ace39141-09ec-4068-b06d-ac6b23bdc6e0  |              |
 +--------------------------------------+----------------------------+--------------------------------------+--------------------------------------+--------------+
 |2ad87511-4289-4bd7-ab0b-0b29d3d4c8ee  |sample-instance-cli-10      |1de901ed-17af-4b03-bc1f-41659cfa27cb  |ace39141-09ec-4068-b06d-ac6b23bdc6e0  |              |
 +--------------------------------------+----------------------------+--------------------------------------+--------------------------------------+--------------+
 |4415727d-dc2a-4378-a3a7-bc4411d391c7  |sample-service-onap-cli-5   |1de901ed-17af-4b03-bc1f-41659cfa27cb  |ace39141-09ec-4068-b06d-ac6b23bdc6e0  |              |
 +--------------------------------------+----------------------------+--------------------------------------+--------------------------------------+--------------+

vf-list
-------

input::

 -x Demonstration -y vLB --service-id 2ad87511-4289-4bd7-ab0b-0b29d3d4c8ee

output::

 +--------------------------------------+--------------------+
 |vf-id                                 |vf-name             |
 +--------------------------------------+--------------------+
 |1a667ce8-8b8b-4f59-ba5c-b162ae462fef  |vlb-cli-sample-8    |
 +--------------------------------------+--------------------+
 |048c2c4a-ee30-41a1-bb55-c4e7fe1a9a0d  |vlb-cli-sample-11   |
 +--------------------------------------+--------------------+
 |c37c401f-a839-4b6e-9c65-33e023c412ee  |vlb-cli-sample-10   |
 +--------------------------------------+--------------------+
 |b544f164-97c9-483a-98eb-eafd1f808e79  |vlb-cli-sample-5    |
 +--------------------------------------+--------------------+
 |5ef95bd9-4d7a-4d06-879e-0c7964f9de65  |vlb-cli-sample-4    |
 +--------------------------------------+--------------------+
 |eb29edb5-0a9f-4bc6-a7bf-3211341fffc2  |vlb-cli-sample-9    |
 +--------------------------------------+--------------------+
 |2a152730-f6eb-4dc6-9b81-7a6f6f263d71  |vlb-cli-sample-1    |
 +--------------------------------------+--------------------+
 |f53cd512-e172-410e-87b4-37064b5b5f8c  |vlb-cli-sample-7    |
 +--------------------------------------+--------------------+
 |f4bfcd6a-2ea1-42ab-853a-5d863b150c40  |vlb-cli-sample-3    |
 +--------------------------------------+--------------------+
 |4bb4beaa-5b6b-414e-97d8-53949bbb5c5e  |vlb-cli-sample-6    |
 +--------------------------------------+--------------------+

service-type-list
-----------------

output::

 +--------------------------------------+--------------+------------------+
 |service-type-id                       |service-type  |resource-version  |
 +--------------------------------------+--------------+------------------+
 |2733fe6f-8725-48fa-8609-092a34106dba  |vIMS          |1508827920395     |
 +--------------------------------------+--------------+------------------+
 |bc549d9d-2335-4b07-9f03-3a85439c0bbb  |vFW-kanag     |1509029699189     |
 +--------------------------------------+--------------+------------------+
 |de1fa33f-f676-42e5-b79a-a39825c19b1d  |test          |1509029708094     |
 +--------------------------------------+--------------+------------------+
 |1482d2f2-b9e6-4421-a2f6-31959278db6f  |vCPE          |1508827919819     |
 +--------------------------------------+--------------+------------------+
 |4426c557-e012-47eb-85cc-6128fa4f55c1  |vLB           |1508827918467     |
 +--------------------------------------+--------------+------------------+
 |dd04cc4b-6283-480d-8c5a-2c7bba8497ea  |vFW           |1508827917148     |
 +--------------------------------------+--------------+------------------+

service-type-delete
-------------------

input::

 --service-type-id de1fa33f-f676-42e5-b79a-a39825c19b1d --resource-version 1509029708094


service-type-create
-------------------

input::

 --service-type test


microservice-create
-------------------

input::

 --service-name test --service-version v1 --service-url C:/Git/test --path C:/Git/test 10.0.0.1 8080

output::

 +----------+--------------+
 |property  |value         |
 +----------+--------------+
 |name      |test          |
 +----------+--------------+
 |version   |v1            |
 +----------+--------------+
 |url       |/test         |
 +----------+--------------+
 |status    |1             |
 +----------+--------------+

microservice-list
-----------------

input::

 --long

output::

 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |name                                        |version   |url                                   |status  |nodes             |enable-ssl  |path                                  |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |aai-actions                                 |v11       |/aai/v11/actions                      |1       |10.0.1.1:8443     |true        |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |aai-actions-deprecated                      |v11       |/aai/v11/actions                      |1       |10.0.1.1:8443     |true        |/aai/v11/actions                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |aai-business                                |v11       |/aai/v11/business                     |1       |10.0.1.1:8443     |true        |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |aai-business-deprecated                     |v11       |/aai/v11/business                     |1       |10.0.1.1:8443     |true        |/aai/v11/business                     |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |aai-cloudInfrastructure                     |v11       |/aai/v11/cloud-infrastructure         |1       |10.0.1.1:8443     |true        |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |aai-cloudInfrastructure-deprecated          |v11       |/aai/v11/cloud-infrastructure         |1       |10.0.1.1:8443     |true        |/aai/v11/cloud-infrastructure         |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |aai-esr-gui                                 |v1        |/esr-gui                              |1       |10.0.14.1:9519    |false       |/iui/aai-esr-gui                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |aai-esr-server                              |v1        |/api/aai-esr-server/v1                |1       |172.17.0.5:9518   |false       |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |aai-externalSystem                          |v11       |/aai/v11/external-system              |1       |10.0.14.1:9518    |true        |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |aai-externalSystem-deprecated               |v11       |/aai/v11/external-system              |1       |10.0.1.1:8443     |true        |/aai/v11/external-system              |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |aai-network                                 |v11       |/aai/v11/network                      |1       |10.0.1.1:8443     |true        |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |aai-network-deprecated                      |v11       |/aai/v11/network                      |1       |10.0.1.1:8443     |true        |/aai/v11/network                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |aai-search                                  |v11       |/aai/v11/search                       |1       |10.0.1.1:8443     |true        |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |aai-search-deprecated                       |v11       |/aai/v11/search                       |1       |10.0.1.1:8443     |true        |/aai/v11/search                       |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |aai-service-design-and-creation             |v11       |/aai/v11/service-design-and-creation  |1       |10.0.1.1:8443     |true        |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |aai-service-design-and-creation-deprecated  |v11       |/aai/v11/service-design-and-creation  |1       |10.0.1.1:8443     |true        |/aai/v11/service-design-and-creation  |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |activiti                                    |v1        |/api/activiti/v1                      |1       |10.0.1.1:8443     |false       |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |activiti-rest                               |v1        |/activiti-rest                        |1       |10.0.14.1:8804    |false       |/activiti-rest                        |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |catalog                                     |v1        |/api/catalog/v1                       |1       |10.0.14.1:8804    |false       |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |emsdriver                                   |v1        |/api/emsdriver/v1                     |1       |172.17.0.15:8806  |false       |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |gvnfmdriver                                 |v1        |/api/gvnfmdriver/v1                   |1       |10.0.14.1:8806    |false       |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |huaweivnfmdriver                            |v1        |/api/huaweivnfmdriver/v1              |1       |10.0.14.1:8206    |false       |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |jujuvnfmdriver                              |v1        |/api/jujuvnfmdriver/v1                |1       |172.17.0.17:8484  |false       |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |multicloud                                  |v0        |/api/multicloud/v0                    |1       |10.0.14.1:8484    |false       |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |multicloud-ocata                            |v0        |/api/multicloud-ocata/v0              |1       |10.0.14.1:8482    |false       |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |multicloud-titanium_cloud                   |v0        |/api/multicloud-titanium_cloud/v0     |1       |10.0.14.1:8483    |false       |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |multicloud-vio                              |v0        |/api/multicloud-vio/v0                |1       |10.0.14.1:9001    |false       |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |nokia-vnfm-driver                           |v1        |/api/nokiavnfmdriver/v1               |1       |10.0.14.1:9006    |false       |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |nokiavnfmdriver                             |v1        |/api/nokiavnfmdriver/v1               |1       |10.0.14.1:9005    |false       |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |nslcm                                       |v1        |/api/nslcm/v1                         |1       |10.0.14.1:9004    |false       |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |policy-pdp                                  |v1        |/pdp                                  |1       |172.17.0.27:8486  |false       |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |policy-pdp-deprecated                       |v1        |/pdp                                  |1       |10.0.14.1:8485    |false       |/pdp                                  |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |portal                                      |v2        |/                                     |1       |172.17.0.20:8403  |false       |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |resmgr                                      |v1        |/api/resmgr/v1                        |1       |10.0.14.1:8403    |false       |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |sdc                                         |v1        |/sdc/v1                               |1       |10.0.6.1:8081     |false       |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |sdc-deprecated                              |v1        |/sdc/v1                               |1       |10.0.6.1:8081     |false       |/sdc/v1                               |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |sdnc                                        |v1        |/restconf                             |1       |10.0.9.1:8989     |false       |/restconf                             |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |so                                          |v1        |/ecomp/mso/infra                      |1       |10.0.14.1:8480    |false       |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |so-deprecated                               |v1        |/ecomp/mso/infra                      |1       |10.0.3.1:8080     |false       |/ecomp/mso/infra                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |usecase-ui                                  |v1        |/usecase-ui                           |1       |10.0.3.1:8080     |false       |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |usecaseui                                   |v1        |/api/usecaseui/server/v1              |1       |10.0.7.1:8282     |false       |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |usecaseui-gui                               |v1        |/iui/usecaseui                        |1       |10.0.5.1:8080     |false       |/iui/usecaseui                        |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |vnflcm                                      |v1        |/api/vnflcm/v1                        |1       |10.0.5.1:8080     |false       |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |vnfmgr                                      |v1        |/api/vnfmgr/v1                        |1       |172.17.0.11:8080  |false       |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |vnfres                                      |v1        |/api/vnfres/v1                        |1       |10.0.14.1:8901    |false       |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |workflow                                    |v1        |/api/workflow/v1                      |1       |10.0.14.1:8900    |false       |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |ztesdncdriver                               |v1        |/api/ztesdncdriver/v1                 |1       |10.0.14.1:8801    |false       |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |ztevmanagerdriver                           |v1        |/api/ztevmanagerdriver/v1             |1       |172.17.0.22:8801  |false       |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |                                            |          |                                      |        |172.17.0.23:8803  |            |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |                                            |          |                                      |        |10.0.14.1:8803    |            |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |                                            |          |                                      |        |172.17.0.24:8802  |            |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |                                            |          |                                      |        |10.0.14.1:8802    |            |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |                                            |          |                                      |        |10.0.14.1:8805    |            |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |                                            |          |                                      |        |172.17.0.25:8411  |            |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |                                            |          |                                      |        |10.0.14.1:8411    |            |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |                                            |          |                                      |        |10.0.14.1:8410    |            |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+
 |                                            |          |                                      |        |172.17.0.26:8410  |            |                                      |
 +--------------------------------------------+----------+--------------------------------------+--------+------------------+------------+--------------------------------------+

microservice-show
-----------------

input::

 --service-name test --service-version v1 --long

output::

 +------------+----------------+
 |property    |value           |
 +------------+----------------+
 |name        |test            |
 +------------+----------------+
 |version     |v1              |
 +------------+----------------+
 |url         |/C:/Git/test    |
 +------------+----------------+
 |status      |1               |
 +------------+----------------+
 |nodes       |10.0.0.1:8080   |
 +------------+----------------+
 |enable-ssl  |false           |
 +------------+----------------+
 |path        |/C:/Git/test    |
 +------------+----------------+

microservice-delete
-------------------

input::

 --service-name test --service-version v1 --host-url http://192.168.17.23:80 --node-ip 23.14.15.156 --node-port 80


vlm-feature-group-list
----------------------

input::

 --vlm-id cf2d907d998e44698ce3b4cded5f66a7 --vlm-version 2.0

output::

 +----------------------------------+--------------+
 |ID                                |name          |
 +----------------------------------+--------------+
 |3a2fb75b52a54e9c8093e7c154210f9e  |kanag-cli-fg  |
 +----------------------------------+--------------+

vlm-submit
----------

input::

 --vlm-id cf2d907d998e44698ce3b4cded5f66a7 --vlm-version 1.1


vlm-revert
----------

input::

 --vlm-id cf2d907d998e44698ce3b4cded5f66a7 --vlm-version 0.1


vlm-entitlement-pool-list
-------------------------

input::

 --vlm-id cf2d907d998e44698ce3b4cded5f66a7 --vlm-version 2.0

output::

 +----------------------------------+--------------------------+
 |ID                                |name                      |
 +----------------------------------+--------------------------+
 |dae0a02f2173444e82bfa765601abcc9  |797153a1-d8f6-4eb0-abfc   |
 +----------------------------------+--------------------------+
 |aa61080fd965455ba5edbf60f4e375ef  |kanag-cli-ep              |
 +----------------------------------+--------------------------+

vlm-checkout
------------

input::

 --vlm-id cf2d907d998e44698ce3b4cded5f66a7 --vlm-version 0.1


vlm-aggreement-create
---------------------

input::

 --name kanag-cli-la --description kanag cli la --vlm-feature-group-id 3a2fb75b52a54e9c8093e7c154210f9e --vlm-id cf2d907d998e44698ce3b4cded5f66a7 --vlm-version 1.1

output::

 +----------+----------------------------------+
 |property  |value                             |
 +----------+----------------------------------+
 |ID        |77e151d0503b45ecb7e40f5f5f1a887e  |
 +----------+----------------------------------+

vlm-key-group-create
--------------------

input::

 --vlm-id cf2d907d998e44698ce3b4cded5f66a7 --name kanag-cli-kg --description Kanag CLI key group -d --vlm-version 0.1

output::

 |property  |value                             |
 +----------+----------------------------------+
 |ID        |c37a1f205f444161a573f55dfec5f170  |
 +----------+----------------------------------+

vlm-feature-group-create
------------------------

input::

 --name kanag-cli-fg --description Kanag cli feature group --vlm-id cf2d907d998e44698ce3b4cded5f66a7 --vlm-version 0.1 --vlm-key-group-id c37a1f205f444161a573f55dfec5f170 --vlm-entitle-pool-id aa61080fd965455ba5edbf60f4e375ef --part-number 123455 --manufacture-reference-number mkr123456

output::

 +----------+----------------------------------+
 |property  |value                             |
 +----------+----------------------------------+
 |ID        |3a2fb75b52a54e9c8093e7c154210f9e  |
 +----------+----------------------------------+

vlm-create
----------

input::

 --vendor-name kanag-cli --description First License created from CLI

output::

 +----------+----------------------------------+
 |property  |value                             |
 +----------+----------------------------------+
 |ID        |cf2d907d998e44698ce3b4cded5f66a7  |
 +----------+----------------------------------+

vlm-entitlement-pool-create
---------------------------

input::

 --name kanag-cli-ep --vlm-id cf2d907d998e44698ce3b4cded5f66a7 --description kanag vlm ep --manufacture-reference-number mkr123456 -d --vlm-version 0.1

output::

 +----------+----------------------------------+
 |property  |value                             |
 +----------+----------------------------------+
 |ID        |aa61080fd965455ba5edbf60f4e375ef  |
 +----------+----------------------------------+

vlm-checkin
-----------

input::

 --vlm-id cf2d907d998e44698ce3b4cded5f66a7 --vlm-version 1.1


vlm-key-group-list
------------------

input::

 --vlm-id cf2d907d998e44698ce3b4cded5f66a7 --vlm-version 2.0

output::

 +----------------------------------+----------------------+
 |ID                                |name                  |
 +----------------------------------+----------------------+
 |c37a1f205f444161a573f55dfec5f170  |kanag-cli-kg          |
 +----------------------------------+----------------------+
 |f0a684fa680b44979edee03fcc12ca85  |kanag-cli-key-group   |
 +----------------------------------+----------------------+

vlm-aggreement-list
-------------------

input::

 --vlm-id cf2d907d998e44698ce3b4cded5f66a7 --vlm-version 2.0

output::

 +----------------------------------+--------------+
 |ID                                |name          |
 +----------------------------------+--------------+
 |1e2edfccaca847f896070d0fac26667a  |sf            |
 +----------------------------------+--------------+
 |77e151d0503b45ecb7e40f5f5f1a887e  |kanag-cli-la  |
 +----------------------------------+--------------+

vlm-list
--------

input::

 --long

output::

 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |id                                |vendor-name               |vlm-version   |status  |description                     |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |b5ea95a60e3b483da03d0911968cd778  |ciLicensef008e06a         |1.0           |Final   |new vendor license model        |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |84352b5d014c4d5382ce856d7597aebf  |ciLicense5c11752c         |1.0           |Final   |new vendor license model        |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |8e13a8b2e1f34374ad578edc9c912f11  |ciLicenseaf880546         |1.0           |Final   |new vendor license model        |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |9f7053ae1aa04b8c9fa3d991f944a49b  |ciLicensecce293bb         |1.0           |Final   |new vendor license model        |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |3f47950121bf4e31a058b4870020bc2f  |ciLicense7d28e221         |1.0           |Final   |new vendor license model        |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |6fc132eca87d4e49b56357b9d83843a5  |ciLicense02ddba7e         |1.0           |Final   |new vendor license model        |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |0094601590ec4e709e560e928c44232a  |ciLicense9acc959f         |1.0           |Final   |new vendor license model        |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |8f82813eb6304957911955e077d9be6f  |ciLicensee5394ee2         |1.0           |Final   |new vendor license model        |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |b620898b5e5e4231a30a2ccecd39927e  |ciLicense3eed3665         |1.0           |Final   |new vendor license model        |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |12cce4998b874d5e8096070f9c5d7395  |ciLicense372060ea         |1.0           |Final   |new vendor license model        |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |78fd596a39534d51953e867adaef78f6  |ciLicense36e962a4         |1.0           |Final   |new vendor license model        |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |651180d666c54887880b673884e03481  |ciLicensef9a1b52b         |1.0           |Final   |new vendor license model        |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |dd10e18e3af54234a20897ad65bfa311  |ciLicense76f62092         |1.0           |Final   |new vendor license model        |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |cf2d907d998e44698ce3b4cded5f66a7  |kanag-cli                 |2.0           |Final   |First License created from CLI  |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |144497a1b7924e0fa73004573730e1b8  |Test                      |0.1           |Locked  |test                            |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |9af398f516da4e63b4ec8d344866533b  |4718de22-00d3-4607-b666   |1.0           |Final   |vendor license model            |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |1173c7be5fea4db799b1a5ef9512e57e  |Kanag                     |4.0           |Final   |Kanagaraj M @ HTIPL             |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |fc0fdcc825a54ca3b08e40f473b72d05  |test-vendor               |1.0           |Final   |test                            |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |b66c5e1b4af3432ca2f6cd05adf72340  |0138a2e2-52bf-4f0b-81cd   |1.0           |Final   |vendor license model            |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |34c2c72e992742e3b7ceb78bfcd21ebb  |48fa02ef-e79b-4707-895e   |1.0           |Final   |vendor license model            |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |4bbd11c581ce4bb187a0a37131e5bb60  |1e5d1422-1f5f-42fe-a98e   |1.0           |Final   |vendor license model            |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |1329476d73014587839fd3ede08c3103  |3029be5e-9135-4083-bd2e   |1.0           |Final   |vendor license model            |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |2ca684a9805b40f9993239e77b82fb52  |c6ba2ef6-fe82-4f32-ad50   |1.0           |Final   |vendor license model            |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |1a49df7b78654777a71f64f2c6c2468f  |01eb54a1-f1ff-41a2-aafc   |1.0           |Final   |vendor license model            |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |5e571e8a25c8404da04f2a0ec179f576  |a920b10d-c516-4380-835a   |1.0           |Final   |vendor license model            |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |4b1e1efd8bb944bdbc0c3e74a9402967  |ciLicense7d8bbcab         |1.0           |Final   |new vendor license model        |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |816c04fd4ee849f2b80435e0944189fa  |ciLicense09c55d35         |1.0           |Final   |new vendor license model        |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |9408208f5b6d4eb997dff1b901f1fb95  |ciLicense6bfd9421         |1.0           |Final   |new vendor license model        |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |eda4e9d1cae14cad95befc1728629574  |ciLicense81acf730         |1.0           |Final   |new vendor license model        |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |022140c2dc4e40bbae096aa1fb5cfbe9  |ciLicensef3f5a4fa         |1.0           |Final   |new vendor license model        |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |19f92b345cae423ab4ea6c5527d55ef6  |ciLicense9fddd8db         |1.0           |Final   |new vendor license model        |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |492d9259fc3e493d8fa6afd488054508  |ciLicense9a46fd22         |1.0           |Final   |new vendor license model        |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |a5da3e50ed72483fbfb134bac84b31f6  |ciLicensed955b6d7         |1.0           |Final   |new vendor license model        |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+
 |9ff65b0b943141a7b99481bbcaedc294  |ciLicensef21d8db3         |1.0           |Final   |new vendor license model        |
 +----------------------------------+--------------------------+--------------+--------+--------------------------------+

vsp-show
--------

input::

 --vsp-id a8cd007fa101470e98516cd4549c568f --vsp-version 1.0 --long

output::

 +--------------+----------------------------------+
 |property      |value                             |
 +--------------+----------------------------------+
 |name          |847cb26a-59a6-475a-94dd           |
 +--------------+----------------------------------+
 |ID            |a8cd007fa101470e98516cd4549c568f  |
 +--------------+----------------------------------+
 |description   |vendor software product           |
 +--------------+----------------------------------+
 |vendor-name   |01eb54a1-f1ff-41a2-aafc           |
 +--------------+----------------------------------+
 |vendor-id     |1a49df7b78654777a71f64f2c6c2468f  |
 +--------------+----------------------------------+
 |version       |1.0                               |
 +--------------+----------------------------------+
 |status        |Final                             |
 +--------------+----------------------------------+
 |license-id    |99e3783033de443db69d05996341e28d  |
 +--------------+----------------------------------+

vsp-checkin
-----------

input::

 --vsp-id f19cad8343794e93acb9cda2e4126281 --vsp-version 0.1


vsp-submit
----------

input::

 --vsp-id f19cad8343794e93acb9cda2e4126281 --vsp-version 0.1


vsp-create
----------

input::

 --vsp-name kanag-cli-VLB --vsp-description VLB created from CLI --vlm-agreement-id 77e151d0503b45ecb7e40f5f5f1a887e --vlm-version 2.0 --vlm-feature-group-id 3a2fb75b52a54e9c8093e7c154210f9e --vlm-id cf2d907d998e44698ce3b4cded5f66a7 --vlm-vendor Kanag-cli

output::

 +----------+----------------------------------+
 |property  |value                             |
 +----------+----------------------------------+
 |ID        |f19cad8343794e93acb9cda2e4126281  |
 +----------+----------------------------------+

vsp-list
--------

output::

 +----------------------------------+----------------------------------------------------+----------+------------+
 |ID                                |name                                                |version   |status      |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |f19cad8343794e93acb9cda2e4126281  |kanag-cli-VLB                                       |2.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |ff5bba2672a44654b186d70cf6bc9d95  |kanagVLB                                            |0.1       |Locked      |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |aa1f969cf1ae4897aed5fe08d4d19a5a  |ciVFOnboarded-vCSCF_aligned-08dc1256                |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |f22e285e6b354033bd9a2c1cf9268a6e  |ciVFOnboarded-Huawei_vMME-2b29f653                  |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |3430c70e504c45d59cd7ccb4a388f26d  |ciVFOnboarded-Huawei_vPCRF_aligned_fixed-51f1da14   |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |c1ec9ea4fbd240cd9e69070a7ac17ee8  |ciVFOnboarded-vSBC_aligned-7260da5f                 |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |4668d80cbca64beb98423c924b35d3ac  |ciVFOnboarded-Huawei_vHSS-79402346                  |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |10e8667c8b3d4e86a406e806430b989e  |ciVFOnboarded-vLB-6265cbc3                          |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |9de86126015f4349a41e5a5f5e3eacf4  |ciVFOnboarded-base_vfw-199667fb                     |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |9641f81b61504fa8af6885818b1ee34b  |ciVFOnboarded-vgmux-a195f793                        |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |dea92da0ad90419c8f437222680a2333  |ciVFOnboarded-vgw-abaa9d6d                          |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |9e4654364fe04d9ebe2a2485d67d6676  |ciVFOnboarded-infra-fceb5908                        |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |93b5df6c2f3d4a7dae362b111b0ed047  |ciVFOnboarded-vbrgemu-bcfb002c                      |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |9c9a9000fc714e9d8a6baf495418ab96  |ciVFOnboarded-base_vvg-07839bb9                     |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |63898b542cdd46b6b15ac771abda86cb  |ciVFOnboarded-vbng-008f4205                         |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |5ca119e2326045d1857ae3f04a816434  |kanag-cli-vfw                                       |0.2       |Available   |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |e65baf44883e4868ba96f9faed9ba97a  |600a2ebf-1f94-4a4c-b18d                             |0.3       |Available   |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |61bad2139ee742cf891ca6ecc5f39972  |test-vsp-123                                        |0.2       |Locked      |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |77527347f94947589431cb7c1938da2e  |05a0dd09-c3d0-4534-93ab                             |0.3       |Locked      |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |8f08a17b9a4c4538b51a3064468baec0  |test-vsp                                            |0.3       |Locked      |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |b1caa2ec31ba4b738cbe5aab362b35aa  |Kanag-VSP                                           |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |03774c7cfcac4054bdab346142214533  |ef35d3c9-a8c6-457c-a115                             |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |54bc478b7a9847db82156edad5d1f79f  |5d11dda4-fb32-4df6-86eb                             |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |5f5121f701df4fe588c966002a342fdf  |136ab241-88ff-443a-88e8                             |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |0cefd6ef5ad84d2995d66d0a24d2e92e  |8fd2e5c8-981d-4a14-ba77                             |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |c212437049004e74b4ef0afb25ba41b8  |74361ede-ef8c-43f1-9d82                             |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |a8cd007fa101470e98516cd4549c568f  |847cb26a-59a6-475a-94dd                             |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |59c07e069c7642e9afbc6117965a6c2f  |ciVFOnboarded-vLB-3fbbe6d0                          |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |65b7b4b564f34b5689b3786386600e5a  |ciVFOnboarded-vCSCF_aligned-a5e83f2c                |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |a75d123c802e465db80ae7c8e5a0b4d0  |ciVFOnboarded-base_vfw-548fb561                     |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |1f33fcc682cb484a952b96326f549aff  |ciVFOnboarded-vgmux-5e7cab8c                        |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |bafdf7192a73436588044296aa225ed4  |ciVFOnboarded-vgw-8b2ea35e                          |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |c34167a92e5c4c3392badd5a2da2a267  |ciVFOnboarded-infra-0766a3d1                        |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |b160564a4b754a9e8a19d2fa924f3f96  |ciVFOnboarded-vbrgemu-806fb59e                      |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |c5ccbc48510240318b698a4f1e1cb620  |ciVFOnboarded-vbng-c9fa1c07                         |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+
 |34ac9b3e990f4ce093d2dd1b8e0f73d6  |ciVFOnboarded-base_vvg-e8b8c6ca                     |1.0       |Final       |
 +----------------------------------+----------------------------------------------------+----------+------------+

vsp-upload
----------

input::

 --vsp-id E563CB23A6BE49AF9A84CF579DAFB929  --vsp-file /home/user/vFW.zip


vsp-package
-----------

input::

 --vsp-id f19cad8343794e93acb9cda2e4126281 --vsp-version 0.2


vsp-checkout
------------

input::

 --onap-username cs0008 --onap-password demo123456!  --host-url http://localhost:8080 --vsp-id E563CB23A6BE49AF9A84CF579DAFB929


vsp-validate
------------

input::

 --vsp-id f19cad8343794e93acb9cda2e4126281 --vsp-version 0.1

output::

 +----------+----------------------------------------------------+
 |property  |value                                               |
 +----------+----------------------------------------------------+
 |status    |Success                                             |
 +----------+----------------------------------------------------+
 |errors    |{dnsscaling.yaml=[{"level":"WARNING","message":"WA  |
 |          |RNING: Port 'Fixed_IPS' Parameter Name not          |
 |          |aligned with Guidelines, Parameter Name             |
 |          |[vlb_private_net_id], Resource ID                   |
 |          |[vdns_2_private_0_port]. As a result, VF\/VFC       |
 |          |Profile may miss this information"},{"level":"WARN  |
 |          |ING","message":"WARNING: Port 'Fixed_IPS'           |
 |          |Parameter Name not aligned with Guidelines,         |
 |          |Parameter Name [onap_private_subnet_id], Resource   |
 |          |ID [vdns_2_private_1_port]. As a result, VF\/VFC    |
 |          |Profile may miss this information"},{"level":"WARN  |
 |          |ING","message":"WARNING: Nova Server naming         |
 |          |convention in image, flavor and name properties     |
 |          |is not consistent, Resource ID [vdns_2]"}], base_v  |
 |          |lb.yaml=[{"level":"WARNING","message":"WARNING:     |
 |          |Port 'Fixed_IPS' Parameter Name not aligned with    |
 |          |Guidelines, Parameter Name                          |
 |          |[onap_private_subnet_id], Resource ID               |
 |          |[vlb_private_1_port]. As a result, VF\/VFC          |
 |          |Profile may miss this information"},{"level":"WARN  |
 |          |ING","message":"WARNING: Port 'Fixed_IPS'           |
 |          |Parameter Name not aligned with Guidelines,         |
 |          |Parameter Name [onap_private_subnet_id], Resource   |
 |          |ID [vdns_private_1_port]. As a result, VF\/VFC      |
 |          |Profile may miss this information"},{"level":"WARN  |
 |          |ING","message":"WARNING: Port 'Fixed_IPS'           |
 |          |Parameter Name not aligned with Guidelines,         |
 |          |Parameter Name [onap_private_subnet_id], Resource   |
 |          |ID [vpg_private_1_port]. As a result, VF\/VFC       |
 |          |Profile may miss this information"},{"level":"WARN  |
 |          |ING","message":"WARNING: A resource is connected    |
 |          |twice to the same network role, Network Role        |
 |          |[vdns_0], Resource ID [onap_private]"},{"level":"W  |
 |          |ARNING","message":"WARNING: Nova Server naming      |
 |          |convention in image, flavor and name properties     |
 |          |is not consistent, Resource ID                      |
 |          |[vdns_0]"},{"level":"WARNING","message":"WARNING:   |
 |          |Missing Nova Server Metadata property, Resource     |
 |          |ID                                                  |
 |          |[vpg_0]"},{"level":"WARNING","message":"WARNING:    |
 |          |A resource is connected twice to the same network   |
 |          |role, Network Role [vpg_0], Resource ID [onap_priv  |
 |          |ate]"},{"level":"WARNING","message":"WARNING:       |
 |          |Nova Server naming convention in image, flavor      |
 |          |and name properties is not consistent, Resource     |
 |          |ID [vpg_0]"}]}                                      |
 +----------+----------------------------------------------------+

vsp-revert
----------

input::

 --vsp-id e65baf44883e4868ba96f9faed9ba97a --vsp-version 0.2


vsp-checkout
------------

input::

 --vsp-id f19cad8343794e93acb9cda2e4126281 --vsp-version 0.1


service-model-checkin
---------------------

input::

 --service-model-id 7b427dbf-685b-4ba9-8838-a9b3b3c8e584


service-model-certify-request
-----------------------------

input::

 --service-model-id 7b427dbf-685b-4ba9-8838-a9b3b3c8e584


service2vf-model-list
---------------------

input::

 --service-model-id 0f4203a8-a314-47bb-9a7d-28157652cec4

output::

 +--------------------------------------+--------------------------+--------------------------------------+------------+
 |vf-uuid                               |vf-name                   |vf-customization-uuid                 |vf-version  |
 +--------------------------------------+--------------------------+--------------------------------------+------------+
 |047b9ff8-2414-45b7-b753-26342369f160  |847cb26a-59a6-475a-94dd   |cf893f5a-1bb1-4e32-a92b-2456e12178f8  |1.0         |
 +--------------------------------------+--------------------------+--------------------------------------+------------+

service-model-certify-start
---------------------------

input::

 --service-model-id 7b427dbf-685b-4ba9-8838-a9b3b3c8e584


service-model-add-vf
--------------------

input::

 --service-model-id 7b427dbf-685b-4ba9-8838-a9b3b3c8e584 --vf-id 828be6cf-c11b-4759-ac37-b1b79f86a4b4 --vf-name kanag-cli-VLB --vf-version 1.0 -d

output::

 +----------+----------------------------------------------------+
 |property  |value                                               |
 +----------+----------------------------------------------------+
 |ID        |7b427dbf-685b-4ba9-8838-a9b3b3c8e584.828be6cf-c11b  |
 |          |-4759-ac37-b1b79f86a4b4.kanagclivlb0                |
 +----------+----------------------------------------------------+

service-model-certify-complete
------------------------------

input::

 --service-model-id 7b427dbf-685b-4ba9-8838-a9b3b3c8e584


service-model-list
------------------

output::

 +--------------------------------------+--------------------------------------+--------------------------+----------+------------------------+----------------------------+
 |uuid                                  |invariant-uuid                        |name                      |version   |status                  |distribution-status         |
 +--------------------------------------+--------------------------------------+--------------------------+----------+------------------------+----------------------------+
 |0f4203a8-a314-47bb-9a7d-28157652cec4  |1de901ed-17af-4b03-bc1f-41659cfa27cb  |demoVLB                   |1.0       |CERTIFIED               |DISTRIBUTED                 |
 +--------------------------------------+--------------------------------------+--------------------------+----------+------------------------+----------------------------+
 |5ca7c6cb-78dc-4cf5-ab02-52c9ffb8c884  |9288833a-5dd6-4f9d-84ff-b34de06011c6  |kanagVLB                  |0.1       |NOT_CERTIFIED_CHECKOUT  |DISTRIBUTION_NOT_APPROVED   |
 +--------------------------------------+--------------------------------------+--------------------------+----------+------------------------+----------------------------+
 |75caf010-9f14-424d-93c4-9f8fe8be7970  |b51013b7-e2bb-4abb-8f45-8e32113264b3  |demoVFW                   |1.0       |CERTIFIED               |DISTRIBUTION_APPROVED       |
 +--------------------------------------+--------------------------------------+--------------------------+----------+------------------------+----------------------------+
 |fa9d6078-2d59-4c03-b97e-b57436680513  |5790901b-c109-4fc3-947a-ab71aa064251  |vLB-kanag                 |0.1       |NOT_CERTIFIED_CHECKOUT  |DISTRIBUTION_NOT_APPROVED   |
 +--------------------------------------+--------------------------------------+--------------------------+----------+------------------------+----------------------------+
 |ba5a19b1-3219-4f30-bfd3-3b2f700c0157  |c4425f23-fc9a-4cbf-a3b7-12e69054806b  |kanag-cli-VLB             |1.0       |CERTIFIED               |DISTRIBUTION_APPROVED       |
 +--------------------------------------+--------------------------------------+--------------------------+----------+------------------------+----------------------------+
 |5b054e09-9cc3-49bd-8962-e014465e295b  |3a6a08c8-9bbe-4650-a1c5-687fb1012b98  |Kanag-vFW-Service         |1.0       |CERTIFIED               |DISTRIBUTED                 |
 +--------------------------------------+--------------------------------------+--------------------------+----------+------------------------+----------------------------+
 |c9aa6a9c-dddd-4019-8f7b-70c09de68e96  |dd04c1c2-beb2-4b6c-997d-c94fae54fb57  |demoVCPE                  |1.0       |CERTIFIED               |DISTRIBUTED                 |
 +--------------------------------------+--------------------------------------+--------------------------+----------+------------------------+----------------------------+
 |f2a9f7e3-ead9-4585-8f5f-665acc6cff1c  |b51013b7-e2bb-4abb-8f45-8e32113264b3  |demoVFW                   |1.1       |NOT_CERTIFIED_CHECKOUT  |DISTRIBUTION_NOT_APPROVED   |
 +--------------------------------------+--------------------------------------+--------------------------+----------+------------------------+----------------------------+
 |d2df45ed-89c1-4d23-a605-bae03ee1f14f  |566c6ab2-f32e-4022-acd3-cf2bf17ae6fc  |a6484bba-671f-49c2-92fc   |0.1       |NOT_CERTIFIED_CHECKOUT  |DISTRIBUTION_NOT_APPROVED   |
 +--------------------------------------+--------------------------------------+--------------------------+----------+------------------------+----------------------------+

service-model-create
--------------------

input::

 --name kanag-cli-VLB --description VLB created from CLI --project-code kanag-123456

output::

 +----------+--------------------------------------+
 |property  |value                                 |
 +----------+--------------------------------------+
 |ID        |7b427dbf-685b-4ba9-8838-a9b3b3c8e584  |
 +----------+--------------------------------------+

service-model-distribute
------------------------

input::

 --service-model-id 7b427dbf-685b-4ba9-8838-a9b3b3c8e584


vf2vfmodule-model-list
----------------------

input::

 --vf-id 66269482-0b27-40e3-9c4d-6a26fb67d9ff

output::

 +----------------------------------+--------------+--------------------------------------+--------------------------------------+------------------------------------+----------------+
 |vsp-uuid                          |vsp-version   |module-uuid                           |module-invariant-uuid                 |module-name                         |module-version  |
 +----------------------------------+--------------+--------------------------------------+--------------------------------------+------------------------------------+----------------+
 |f19cad8343794e93acb9cda2e4126281  |2.0           |f2fbc712-7adc-4a62-aa24-485ae076bdc7  |a610a6b9-adfb-4f9f-ada2-c054194092ad  |KanagCliVlb..base_vlb..module-0     |1               |
 +----------------------------------+--------------+--------------------------------------+--------------------------------------+------------------------------------+----------------+
 |                                  |              |c420e361-900a-4705-9329-868e7fa6d9a5  |cde91552-bdb8-4cae-b4c2-c63069d77fe1  |KanagCliVlb..dnsscaling..module-1   |1               |
 +----------------------------------+--------------+--------------------------------------+--------------------------------------+------------------------------------+----------------+

vf-model-certify-request
------------------------

input::

 --vf-id 66269482-0b27-40e3-9c4d-6a26fb67d9ff


vf-model-create
---------------

input::

 --name kanag-cli-VLB --description VF created from CLI --vendor-name Kanag-cli --vsp-id f19cad8343794e93acb9cda2e4126281 --vsp-version 2.0

output::

 +----------+--------------------------------------+
 |property  |value                                 |
 +----------+--------------------------------------+
 |ID        |66269482-0b27-40e3-9c4d-6a26fb67d9ff  |
 +----------+--------------------------------------+

vf-model-certify-start
----------------------

input::

 --vf-id 66269482-0b27-40e3-9c4d-6a26fb67d9ff


vf-model-list
-------------

output::

 +--------------------------------------+--------------------------------------+--------------------------------------+--------------------------+----------+------------+
 |uuid                                  |uniqueid                              |invariant-uuid                        |name                      |version   |status      |
 +--------------------------------------+--------------------------------------+--------------------------------------+--------------------------+----------+------------+
 |9859e26c-2af2-427b-a837-04a47996d52a  |dac5b070-e53b-44b3-8034-46c9cf797de3  |d3d50449-a81a-497f-97b3-4eb770ea67e7  |Kanag-VSP                 |1.0       |CERTIFIED   |
 +--------------------------------------+--------------------------------------+--------------------------------------+--------------------------+----------+------------+
 |8b1f63f3-e0cc-4c27-8903-fafe2f25bfbe  |047b9ff8-2414-45b7-b753-26342369f160  |cc34cd54-dd7c-44cd-8847-f9577c6f1a49  |847cb26a-59a6-475a-94dd   |1.0       |CERTIFIED   |
 +--------------------------------------+--------------------------------------+--------------------------------------+--------------------------+----------+------------+
 |46c89121-b37f-4192-8841-25c93165b843  |828be6cf-c11b-4759-ac37-b1b79f86a4b4  |2d455337-57eb-4edf-a8b9-9f87fd85bc0e  |kanag-cli-VLB             |1.0       |CERTIFIED   |
 +--------------------------------------+--------------------------------------+--------------------------------------+--------------------------+----------+------------+
 |c763b7f8-6bc3-42a2-afa7-04157f79b629  |6e29f979-6f36-4c0d-8605-e59da8d62cb7  |1bd7f899-01dc-4d7f-97d8-f38ba6b40dd9  |74361ede-ef8c-43f1-9d82   |1.0       |CERTIFIED   |
 +--------------------------------------+--------------------------------------+--------------------------------------+--------------------------+----------+------------+
 |94d78d38-d5ae-4a92-9d9e-fb79fc55195a  |3a3fb778-1c0e-41a1-9a04-f7ddaaf93d73  |414da4ea-e482-4ed2-9941-bd90108376fa  |136ab241-88ff-443a-88e8   |1.0       |CERTIFIED   |
 +--------------------------------------+--------------------------------------+--------------------------------------+--------------------------+----------+------------+
 |3575fbff-614c-4418-93c7-133dc4fc59b6  |f4be1629-c9a1-4f32-8f34-11eddabffc13  |7fd3788f-a065-4270-bb95-852eae3a94b3  |ef35d3c9-a8c6-457c-a115   |1.0       |CERTIFIED   |
 +--------------------------------------+--------------------------------------+--------------------------------------+--------------------------+----------+------------+
 |87c5f870-809f-4488-aae5-80ef0fd9e085  |372e2c66-ee59-4488-a6a6-546c28b3a151  |244b380b-acf1-4545-8d35-d6d01bc32fd6  |5d11dda4-fb32-4df6-86eb   |1.0       |CERTIFIED   |
 +--------------------------------------+--------------------------------------+--------------------------------------+--------------------------+----------+------------+
 |d49dd5ee-bc53-44d7-a067-e4cba9a3be1a  |23018f7f-fbce-479e-a77b-6b98ebf03266  |6bc22345-395d-4358-8954-45963761f968  |8fd2e5c8-981d-4a14-ba77   |1.0       |CERTIFIED   |
 +--------------------------------------+--------------------------------------+--------------------------------------+--------------------------+----------+------------+

vf-model-certify-complete
-------------------------

input::

 --vf-id 66269482-0b27-40e3-9c4d-6a26fb67d9ff


vf-model-checkin
----------------

input::

 --vf-id 66269482-0b27-40e3-9c4d-6a26fb67d9ff


service-create
--------------

input::

 --cloud-region RegionOne --tenant-id onap --model-invariant-id 1de901ed-17af-4b03-bc1f-41659cfa27cb --model-uuid ace39141-09ec-4068-b06d-ac6b23bdc6e0 --model-name demoVLB --model-version 1.0 -c Demonstration --instance-name sample-service-onap-cli-13 --service-type vLB

output::

 +--------------+--------------------------------------+
 |property      |value                                 |
 +--------------+--------------------------------------+
 |service-id    |957949b4-f857-497c-81b0-832ce7bb9434  |
 +--------------+--------------------------------------+

vf-create
---------

input::

 --cloud-region RegionOne --tenant-id onap --product-family vLB --instance-name vlb-cli-sample-11 --service-instance-id 2ad87511-4289-4bd7-ab0b-0b29d3d4c8ee --vf-model-invariant-id cc34cd54-dd7c-44cd-8847-f9577c6f1a49 --vf-model-uuid 8b1f63f3-e0cc-4c27-8903-fafe2f25bfbe --vf-model-name 847cb26a-59a6-475a-94dd --vf-model-version 1.0 --vf-model-customization-id cf893f5a-1bb1-4e32-a92b-2456e12178f8 --service-model-invariant-id 1de901ed-17af-4b03-bc1f-41659cfa27cb --service-model-uuid ace39141-09ec-4068-b06d-ac6b23bdc6e0 --service-model-name demoVLB --service-model-version 1.0 -m http://192.168.17.121:8080 -u InfraPortalClient -p password1$

output::

 +--------------+--------------------------------------+
 |property      |value                                 |
 +--------------+--------------------------------------+
 |vf-id         |048c2c4a-ee30-41a1-bb55-c4e7fe1a9a0d  |
 +--------------+--------------------------------------+
onap-1.0
========



vsp-create
----------

input::

 --onap-username cs0008 --onap-password demo123456! --host-url http://locahost:8080 --vsp-name demo-vsp2 --vsp-vendor-name 5aa8a88c --vsp-vendor-id DBB202617952486691C1E35C9    621CD4E --license-agreement-id E19DBDDB137B494385F9535325BFD585 --feature-group-id 94835F096DAF4ED78781A394A4F22AD1

output::

 +----------+----------------------------------+
 |property  |value                             |
 +----------+----------------------------------+
 |ID        |6897DFFF8E864F84AD17A34B7FB936A3  |
 +----------+----------------------------------+

vsp-submit
----------

input::

 --onap-username cs0008 --onap-password demo123456!  --host-url http://localhost:8080 --vsp-id E563CB23A6BE49AF9A84CF579DAFB929


vsp-list
--------

input::

 --onap-username cs0008 --onap-password demo123456!  --host-url http://localhost:8080

output::

 +----------------------------------+------------+
 |ID                                |name        |
 +----------------------------------+------------+
 |E563CB23A6BE49AF9A84CF579DAFB929  |demo-vsp2   |
 +----------------------------------+------------+
 |79E62AA736C34E359B869E757D3DDBBE  |demo-vsp1   |
 +----------------------------------+------------+
 |928B828EE3CC46B99B92D7B9A2AB2118  |demo-vsp    |
 +----------------------------------+------------+

vsp-checkin
-----------

input::

 --onap-username cs0008 --onap-password demo123456!  --host-url http://localhost:8080 --vsp-id E563CB23A6BE49AF9A84CF579DAFB929


vsp-upload
----------

input::

 --onap-username cs0008 --onap-password demo123456! --host-url http://localhost:8080 --vsp-id E563CB23A6BE49AF9A84CF579DAFB929  --vsp-file /home/user/vFW.zip


vsp-show
--------

input::

 --onap-username cs0008 --onap-password demo123456!  --host-url http://localhost:8080 --vsp-id 2DEB6CB4B082415BB7A697C9CD1273BA

output::

 +----------+----------------------------------+--------------------------+
 |name      |ID                                |description               |
 +----------+----------------------------------+--------------------------+
 |test-vsp  |2DEB6CB4B082415BB7A697C9CD1273BA  |vendor software product   |
 +----------+----------------------------------+--------------------------+

cli-1.0
========

schema-validate
----------------

input::

 -l /tmp/hello-world.yaml

output::

  +--------+--------+
  |sl-no   |error   |
  +--------+--------+
  |        |        |
  +--------+--------+


 schema-refresh
----------------

output::

  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |sl-no   |command                         |product-version   |schema                                          |version   |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |1       |vfmodule-create                 |onap-1.1          |vfmodule-create-schema-1.1.yaml                 |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |2       |schema-validate                 |cli-1.0           |schema-validate.yaml                            |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |3       |schema-refresh                  |cli-1.0           |schema-refresh.yaml                             |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |4       |cloud-list                      |onap-1.1          |cloud-list-schema-1.1.yaml                      |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |5       |sdnc-list                       |onap-1.1          |sdnc-list-schema-1.1.yaml                       |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |6       |sdnc-register                   |onap-1.1          |sdnc-create-schema-1.1.yaml                     |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |7       |sdnc-unregister                 |onap-1.1          |sdnc-delete-schema-1.1.yaml                     |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |8       |vnfm-show                       |onap-1.1          |vnfm-show-schema-1.1.yaml                       |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |9       |vnfm-unregister                 |onap-1.1          |vnfm-delete-schema-1.1.yaml                     |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |10      |vnfm-register                   |onap-1.1          |vnfm-create-schema-1.1.yaml                     |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |11      |vnfm-list                       |onap-1.1          |vnfm-list-schema-1.1.yaml                       |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |12      |vim-register                    |onap-1.1          |vim-create-schema-1.1.yaml                      |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |13      |vim-unregister                  |onap-1.1          |vim-delete-schema-1.1.yaml                      |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |14      |vim-list                        |onap-1.1          |vim-list-schema-1.1.yaml                        |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |15      |ems-list                        |onap-1.1          |ems-list-schema-1.1.yaml                        |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |16      |ems-register                    |onap-1.1          |ems-create-schema-1.1.yaml                      |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |17      |ems-show                        |onap-1.1          |ems-show-schema-1.1.yaml                        |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |18      |cloud-delete                    |onap-1.1          |cloud-delete-schema-1.1.yaml                    |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |19      |ems-unregister                  |onap-1.1          |ems-delete-schema-1.1.yaml                      |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |20      |subscription-list               |onap-1.0          |subscription-list-schema.yaml                   |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |21      |subscription-create             |onap-1.0          |subscription-create-schema.yaml                 |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |22      |subscription-list               |onap-1.1          |subscription-list-schema-1.1.yaml               |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |23      |subscription-create             |onap-1.1          |subscription-create-schema-1.1.yaml             |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |24      |subscription-delete             |onap-1.1          |subscription-delete-schema-1.1.yaml             |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |25      |customer-show                   |onap-1.0          |customer-show-schema.yaml                       |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |26      |customer-show                   |onap-1.1          |customer-show-schema-1.1.yaml                   |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |27      |customer-list                   |onap-1.0          |customer-list-schema.yaml                       |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |28      |customer-delete                 |onap-1.0          |customer-delete-schema.yaml                     |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |29      |customer-create                 |onap-1.0          |customer-create-schema.yaml                     |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |30      |customer-create                 |onap-1.1          |customer-create-schema-1.1.yaml                 |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |31      |customer-delete                 |onap-1.1          |customer-delete-schema-1.1.yaml                 |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |32      |customer-list                   |onap-1.1          |customer-list-schema-1.1.yaml                   |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |33      |vf-list                         |onap-1.1          |vf-list-schema-1.1.yaml                         |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |34      |service-list                    |onap-1.1          |service-list-schema-1.1.yaml                    |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |35      |vf-show                         |onap-1.1          |vf-show-schema-1.1.yaml                         |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |36      |tenant-create                   |onap-1.1          |tenant-create-schema-1.1.yaml                   |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |37      |tenant-list                     |onap-1.1          |tenant-list-schema-1.1.yaml                     |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |38      |tenant-delete                   |onap-1.1          |tenant-delete-schema-1.1.yaml                   |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |39      |service-type-create             |onap-1.0          |service-type-create-schema.yaml                 |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |40      |service-type-list               |onap-1.1          |service-type-list-schema-1.1.yaml               |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |41      |service-type-create             |onap-1.1          |service-type-create-schema-1.1.yaml             |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |42      |service-type-delete             |onap-1.0          |service-type-delete-schema.yaml                 |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |43      |service-type-list               |onap-1.0          |service-type-list-schema.yaml                   |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |44      |service-type-delete             |onap-1.1          |service-type-delete-schema-1.1.yaml             |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |45      |cloud-create                    |onap-1.1          |cloud-create-schema-1.1.yaml                    |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |46      |cloud-list                      |onap-1.0          |cloud-list-schema.yaml                          |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |47      |microservice-delete             |onap-1.1          |microservice-delete-schema.yaml                 |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |48      |microservice-list               |onap-1.1          |microservice-list-schema.yaml                   |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |49      |microservice-show               |onap-1.1          |microservice-show-schema.yaml                   |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |50      |microservice-create             |onap-1.1          |microservice-create-schema.yaml                 |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |51      |hello-world                     |sample-1.0        |hello-world.yaml                                |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |52      |hello-world-http                |sample-1.0        |hello-world-http.yaml                           |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |53      |vlm-checkin                     |onap-1.1          |vlm-checkin-schema-1.1.yaml                     |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |54      |license-group-create            |onap-1.0          |license-group-create-schema.yaml                |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |55      |vlm-key-group-create            |onap-1.1          |vlm-key-group-create-schema-1.1.yaml            |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |56      |vlm-aggreement-list             |onap-1.1          |vlm-aggreement-list-schema-1.1.yaml             |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |57      |vlm-key-group-list              |onap-1.1          |vlm-key-group-list-schema-1.1.yaml              |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |58      |vlm-create                      |onap-1.1          |vlm-create-schema-1.1.yaml                      |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |59      |vlm-entitlement-pool-create     |onap-1.1          |vlm-entitlement-pool-create-schema-1.1.yaml     |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |60      |ep-show                         |onap-1.0          |license-entitlement-pool-show-schema.yaml       |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |61      |license-model-create            |onap-1.0          |license-model-create-schema.yaml                |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |62      |license-group-show              |onap-1.0          |license-group-show-schema.yaml                  |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |63      |vsp-upload                      |onap-1.0          |vsp-upload-schema.yaml                          |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |64      |vsp-package                     |onap-1.1          |vsp-package-schema-1.1.yaml                     |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |65      |vsp-submit                      |onap-1.1          |vsp-submit-schema-1.1.yaml                      |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |66      |vsp-checkout                    |onap-1.1          |vsp-checkout-schema-1.1.yaml                    |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |67      |vsp-create                      |onap-1.0          |vsp-create-schema.yaml                          |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |68      |vsp-list                        |onap-1.0          |vsp-list-schema.yaml                            |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |69      |vsp-show                        |onap-1.1          |vsp-show-schema-1.1.yaml                        |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |70      |vsp-show                        |onap-1.0          |vsp-show-schema.yaml                            |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |71      |vsp-submit                      |onap-1.0          |vsp-submit-schema.yaml                          |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |72      |vsp-create                      |onap-1.1          |vsp-create-schema-1.1.yaml                      |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |73      |vsp-add-artifact                |onap-1.1          |vsp-add-artifact-schema-1.1.yaml                |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |74      |vsp-revert                      |onap-1.1          |vsp-revert-schema-1.1.yaml                      |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |75      |vsp-checkin                     |onap-1.0          |vsp-checkin-schema.yaml                         |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |76      |vsp-checkout                    |onap-1.1          |vsp-checkout-schema.yaml                        |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |77      |vsp-validate                    |onap-1.1          |vsp-validate-schema-1.1.yaml                    |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |78      |vsp-list                        |onap-1.1          |vsp-list-schema-1.1.yaml                        |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |79      |vsp-checkin                     |onap-1.1          |vsp-checkin-schema-1.1.yaml                     |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |80      |service-model-checkin           |onap-1.1          |service-model-checkin-schema-1.1.yaml           |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |81      |service-model-distribute        |onap-1.1          |service-model-distribute-schema-1.1.yaml        |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |82      |service-model-list              |onap-1.1          |service-model-list-schema-1.1.yaml              |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |83      |service-model-certify-start     |onap-1.1          |service-model-certify-start-schema-1.1.yaml     |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |84      |service-model-add-vf            |onap-1.1          |service-model-add-vf-schema-1.1.yaml            |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |85      |service-model-certify-request   |onap-1.1          |service-model-certify-request-schema-1.1.yaml   |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |86      |service-model-revert            |onap-1.1          |service-model-checkout-schema-1.1.yaml          |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |87      |service-model-checkout          |onap-1.1          |service-model-revert-schema-1.1.yaml            |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |88      |service-model-certify-complete  |onap-1.1          |service-model-certify-complete-schema-1.1.yaml  |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |89      |service2vf-model-list           |onap-1.1          |service2vf-model-list-schema-1.1.yaml           |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |90      |service-model-create            |onap-1.1          |service-model-create-schema-1.1.yaml            |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |91      |service-model-approve           |onap-1.1          |service-model-approve-schema-1.1.yaml           |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |92      |vf-model-create                 |onap-1.1          |vf-model-create-schema-1.1.yaml                 |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |93      |vf-model-checkin                |onap-1.1          |vf-model-checkin-schema-1.1.yaml                |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |94      |vlm-revert                      |onap-1.1          |vlm-revert-schema-1.1.yaml                      |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |95      |vlm-feature-group-create        |onap-1.1          |vlm-feature-group-create-schema-1.1.yaml        |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |96      |vlm-submit                      |onap-1.1          |vlm-submit-schema-1.1.yaml                      |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |97      |license-model-show              |onap-1.0          |license-model-show-schema.yaml                  |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |98      |vf-model-certify-start          |onap-1.1          |vf-model-certify-start-schema-1.1.yaml          |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |99      |vf-model-list                   |onap-1.1          |vf-model-list-schema-1.1.yaml                   |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |100     |vlm-entitlement-pool-list       |onap-1.1          |vlm-entitlement-pool-list-schema-1.1.yaml       |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |101     |vlm-feature-group-list          |onap-1.1          |vlm-feature-group-list-schema-1.1.yaml          |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |102     |vlm-checkout                    |onap-1.1          |vlm-checkout-schema-1.1.yaml                    |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |103     |vlm-list                        |onap-1.1          |vlm-list-schema-1.1.yaml                        |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |104     |vlm-aggreement-create           |onap-1.1          |vlm-aggreement-create-schema-1.1.yaml           |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |105     |vf-model-certify-request        |onap-1.1          |vf-model-certify-request-schema-1.1.yaml        |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |106     |ep-create                       |onap-1.0          |license-entitlement-pool-create-schema.yaml     |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |107     |vf2vfmodule-model-list          |onap-1.1          |vf2vfmodule-model-list-schema-1.1.yaml          |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |108     |vf-model-certify-complete       |onap-1.1          |vf-model-certify-complete-schema-1.1.yaml       |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |109     |service-delete                  |onap-1.1          |service-delete-schema-1.1.yaml                  |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |110     |vfmodule-delete                 |onap-1.1          |vf-module-delete-schema-1.1.yaml                |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |111     |vfmodule-create                 |onap-1.1          |vfmodule-create-schema-1.1.yaml                 |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |112     |service-create                  |onap-1.1          |service-create-schema-1.1.yaml                  |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |113     |vf-delete                       |onap-1.1          |vf-delete-schema-1.1.yaml                       |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+
  |114     |vf-create                       |onap-1.1          |vf-create-schema-1.1.yaml                       |1.0       |
  +--------+--------------------------------+------------------+------------------------------------------------+----------+