f2a9f14376d818fbfc42c6de8a9a22f15020abe4
[ccsdk/cds.git] / docs / api-reference / media / bp-processor.postman_collection.json
1 {
2         "info": {
3                 "_postman_id": "481808a1-8f9d-47b3-8e03-9302d22731d9",
4                 "name": " CDS Blueprint Processor API Reference",
5                 "description": "Shows all resources and endpoints which CDS BP processor currently provides with sample requests/responses, parameter description and other information.",
6                 "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
7         },
8         "item": [
9                 {
10                         "name": "Blueprint Model Catalog API",
11                         "item": [
12                                 {
13                                         "name": "List all Blueprint Models",
14                                         "request": {
15                                                 "auth": {
16                                                         "type": "basic",
17                                                         "basic": [
18                                                                 {
19                                                                         "key": "username",
20                                                                         "value": "ccsdkapps",
21                                                                         "type": "string"
22                                                                 },
23                                                                 {
24                                                                         "key": "password",
25                                                                         "value": "ccsdkapps",
26                                                                         "type": "string"
27                                                                 },
28                                                                 {
29                                                                         "key": "showPassword",
30                                                                         "value": false,
31                                                                         "type": "boolean"
32                                                                 }
33                                                         ]
34                                                 },
35                                                 "method": "GET",
36                                                 "header": [],
37                                                 "url": {
38                                                         "raw": "http://{{host}}:{{port}}/api/v1/blueprint-model",
39                                                         "protocol": "http",
40                                                         "host": [
41                                                                 "{{host}}"
42                                                         ],
43                                                         "port": "{{port}}",
44                                                         "path": [
45                                                                 "api",
46                                                                 "v1",
47                                                                 "blueprint-model"
48                                                         ]
49                                                 },
50                                                 "description": "Lists all blueprint models which are saved in CDS."
51                                         },
52                                         "response": []
53                                 },
54                                 {
55                                         "name": "Save a Blueprint Model",
56                                         "request": {
57                                                 "auth": {
58                                                         "type": "basic",
59                                                         "basic": [
60                                                                 {
61                                                                         "key": "username",
62                                                                         "value": "ccsdkapps",
63                                                                         "type": "string"
64                                                                 },
65                                                                 {
66                                                                         "key": "password",
67                                                                         "value": "ccsdkapps",
68                                                                         "type": "string"
69                                                                 },
70                                                                 {
71                                                                         "key": "showPassword",
72                                                                         "value": false,
73                                                                         "type": "boolean"
74                                                                 }
75                                                         ]
76                                                 },
77                                                 "method": "POST",
78                                                 "header": [],
79                                                 "body": {
80                                                         "mode": "formdata",
81                                                         "formdata": [
82                                                                 {
83                                                                         "key": "file",
84                                                                         "type": "file",
85                                                                         "src": "/home/jakob/Downloads/cba.zip"
86                                                                 }
87                                                         ]
88                                                 },
89                                                 "url": {
90                                                         "raw": "http://{{host}}:{{port}}/api/v1/blueprint-model",
91                                                         "protocol": "http",
92                                                         "host": [
93                                                                 "{{host}}"
94                                                         ],
95                                                         "port": "{{port}}",
96                                                         "path": [
97                                                                 "api",
98                                                                 "v1",
99                                                                 "blueprint-model"
100                                                         ]
101                                                 },
102                                                 "description": "Saves a blueprint model by the given file input. There is no validation of the attached CBA happening when this API is called."
103                                         },
104                                         "response": []
105                                 },
106                                 {
107                                         "name": "Bootstrap CDS",
108                                         "protocolProfileBehavior": {
109                                                 "disabledSystemHeaders": {}
110                                         },
111                                         "request": {
112                                                 "auth": {
113                                                         "type": "basic",
114                                                         "basic": [
115                                                                 {
116                                                                         "key": "username",
117                                                                         "value": "ccsdkapps",
118                                                                         "type": "string"
119                                                                 },
120                                                                 {
121                                                                         "key": "password",
122                                                                         "value": "ccsdkapps",
123                                                                         "type": "string"
124                                                                 }
125                                                         ]
126                                                 },
127                                                 "method": "POST",
128                                                 "header": [
129                                                         {
130                                                                 "key": "Content-Type",
131                                                                 "value": "application/json",
132                                                                 "disabled": true
133                                                         },
134                                                         {
135                                                                 "key": "",
136                                                                 "type": "text",
137                                                                 "value": "",
138                                                                 "disabled": true
139                                                         }
140                                                 ],
141                                                 "body": {
142                                                         "mode": "raw",
143                                                         "raw": "{\r\n\"loadModelType\" : true,\r\n\"loadResourceDictionary\" : true,\r\n\"loadCBA\" : true\r\n}",
144                                                         "options": {
145                                                                 "raw": {
146                                                                         "language": "json"
147                                                                 }
148                                                         }
149                                                 },
150                                                 "url": {
151                                                         "raw": "http://{{host}}:{{port}}/api/v1/blueprint-model/bootstrap",
152                                                         "protocol": "http",
153                                                         "host": [
154                                                                 "{{host}}"
155                                                         ],
156                                                         "port": "{{port}}",
157                                                         "path": [
158                                                                 "api",
159                                                                 "v1",
160                                                                 "blueprint-model",
161                                                                 "bootstrap"
162                                                         ]
163                                                 },
164                                                 "description": "Loads all Model Types, Resource Dictionaries and blueprint models which are included in CDS by default.Before starting to work with CDS, bootstrap should be called to load all the basic models that each orginization might support.Parameter values can be set as false to skip loading e.g. the Resource Dictionaries but this is not recommended."
165                                         },
166                                         "response": [
167                                                 {
168                                                         "name": "CDS Bootstrap",
169                                                         "originalRequest": {
170                                                                 "method": "POST",
171                                                                 "header": [
172                                                                         {
173                                                                                 "key": "Content-Type",
174                                                                                 "value": "application/json"
175                                                                         },
176                                                                         {
177                                                                                 "key": "",
178                                                                                 "value": "",
179                                                                                 "type": "text",
180                                                                                 "disabled": true
181                                                                         }
182                                                                 ],
183                                                                 "body": {
184                                                                         "mode": "raw",
185                                                                         "raw": "{\r\n\"loadModelType\" : false,\r\n\"loadResourceDictionary\" : true,\r\n\"loadCBA\" : false\r\n}",
186                                                                         "options": {
187                                                                                 "raw": {}
188                                                                         }
189                                                                 },
190                                                                 "url": {
191                                                                         "raw": "http://localhost:8081/api/v1/blueprint-model/bootstrap",
192                                                                         "protocol": "http",
193                                                                         "host": [
194                                                                                 "localhost"
195                                                                         ],
196                                                                         "port": "8081",
197                                                                         "path": [
198                                                                                 "api",
199                                                                                 "v1",
200                                                                                 "blueprint-model",
201                                                                                 "bootstrap"
202                                                                         ]
203                                                                 }
204                                                         },
205                                                         "status": "OK",
206                                                         "code": 200,
207                                                         "_postman_previewlanguage": "json",
208                                                         "header": [
209                                                                 {
210                                                                         "key": "X-ONAP-RequestID",
211                                                                         "value": "b73253b6-d2be-4701-bdb2-31fa66b79a01"
212                                                                 },
213                                                                 {
214                                                                         "key": "X-ONAP-InvocationID",
215                                                                         "value": "b1a59296-fcf2-4435-b8de-9a2e9b9f4077"
216                                                                 },
217                                                                 {
218                                                                         "key": "X-ONAP-PartnerName",
219                                                                         "value": "cds-controller"
220                                                                 },
221                                                                 {
222                                                                         "key": "Vary",
223                                                                         "value": "Origin"
224                                                                 },
225                                                                 {
226                                                                         "key": "Vary",
227                                                                         "value": "Access-Control-Request-Method"
228                                                                 },
229                                                                 {
230                                                                         "key": "Vary",
231                                                                         "value": "Access-Control-Request-Headers"
232                                                                 },
233                                                                 {
234                                                                         "key": "Content-Type",
235                                                                         "value": "application/json"
236                                                                 },
237                                                                 {
238                                                                         "key": "Content-Length",
239                                                                         "value": "0"
240                                                                 },
241                                                                 {
242                                                                         "key": "Cache-Control",
243                                                                         "value": "no-cache, no-store, max-age=0, must-revalidate"
244                                                                 },
245                                                                 {
246                                                                         "key": "Pragma",
247                                                                         "value": "no-cache"
248                                                                 },
249                                                                 {
250                                                                         "key": "Expires",
251                                                                         "value": "0"
252                                                                 },
253                                                                 {
254                                                                         "key": "X-Content-Type-Options",
255                                                                         "value": "nosniff"
256                                                                 },
257                                                                 {
258                                                                         "key": "X-Frame-Options",
259                                                                         "value": "DENY"
260                                                                 },
261                                                                 {
262                                                                         "key": "X-XSS-Protection",
263                                                                         "value": "1 ; mode=block"
264                                                                 },
265                                                                 {
266                                                                         "key": "Referrer-Policy",
267                                                                         "value": "no-referrer"
268                                                                 }
269                                                         ],
270                                                         "cookie": [],
271                                                         "body": ""
272                                                 }
273                                         ]
274                                 },
275                                 {
276                                         "name": "Get a Blueprint Model by Name and Version",
277                                         "protocolProfileBehavior": {
278                                                 "disabledSystemHeaders": {},
279                                                 "disableBodyPruning": true
280                                         },
281                                         "request": {
282                                                 "auth": {
283                                                         "type": "basic",
284                                                         "basic": [
285                                                                 {
286                                                                         "key": "password",
287                                                                         "value": "ccsdkapps",
288                                                                         "type": "string"
289                                                                 },
290                                                                 {
291                                                                         "key": "username",
292                                                                         "value": "ccsdkapps",
293                                                                         "type": "string"
294                                                                 }
295                                                         ]
296                                                 },
297                                                 "method": "GET",
298                                                 "header": [
299                                                         {
300                                                                 "key": "Content-Type",
301                                                                 "value": "application/json",
302                                                                 "disabled": true
303                                                         },
304                                                         {
305                                                                 "key": "",
306                                                                 "type": "text",
307                                                                 "value": "",
308                                                                 "disabled": true
309                                                         }
310                                                 ],
311                                                 "body": {
312                                                         "mode": "raw",
313                                                         "raw": "{\r\n\"loadModelType\" : true,\r\n\"loadResourceDictionary\" : true,\r\n\"loadCBA\" : true\r\n}",
314                                                         "options": {
315                                                                 "raw": {
316                                                                         "language": "json"
317                                                                 }
318                                                         }
319                                                 },
320                                                 "url": {
321                                                         "raw": "http://{{host}}:{{port}}/api/v1/blueprint-model/download/by-name/pnf_netconf/version/1.0.0",
322                                                         "protocol": "http",
323                                                         "host": [
324                                                                 "{{host}}"
325                                                         ],
326                                                         "port": "{{port}}",
327                                                         "path": [
328                                                                 "api",
329                                                                 "v1",
330                                                                 "blueprint-model",
331                                                                 "download",
332                                                                 "by-name",
333                                                                 "pnf_netconf",
334                                                                 "version",
335                                                                 "1.0.0"
336                                                         ]
337                                                 },
338                                                 "description": "Get Meta-Data of a Blueprint Model by its name and version."
339                                         },
340                                         "response": [
341                                                 {
342                                                         "name": "CDS Bootstrap",
343                                                         "originalRequest": {
344                                                                 "method": "POST",
345                                                                 "header": [
346                                                                         {
347                                                                                 "key": "Content-Type",
348                                                                                 "value": "application/json"
349                                                                         },
350                                                                         {
351                                                                                 "key": "",
352                                                                                 "value": "",
353                                                                                 "type": "text",
354                                                                                 "disabled": true
355                                                                         }
356                                                                 ],
357                                                                 "body": {
358                                                                         "mode": "raw",
359                                                                         "raw": "{\r\n\"loadModelType\" : false,\r\n\"loadResourceDictionary\" : true,\r\n\"loadCBA\" : false\r\n}",
360                                                                         "options": {
361                                                                                 "raw": {}
362                                                                         }
363                                                                 },
364                                                                 "url": {
365                                                                         "raw": "http://localhost:8081/api/v1/blueprint-model/bootstrap",
366                                                                         "protocol": "http",
367                                                                         "host": [
368                                                                                 "localhost"
369                                                                         ],
370                                                                         "port": "8081",
371                                                                         "path": [
372                                                                                 "api",
373                                                                                 "v1",
374                                                                                 "blueprint-model",
375                                                                                 "bootstrap"
376                                                                         ]
377                                                                 }
378                                                         },
379                                                         "status": "OK",
380                                                         "code": 200,
381                                                         "_postman_previewlanguage": "json",
382                                                         "header": [
383                                                                 {
384                                                                         "key": "X-ONAP-RequestID",
385                                                                         "value": "b73253b6-d2be-4701-bdb2-31fa66b79a01"
386                                                                 },
387                                                                 {
388                                                                         "key": "X-ONAP-InvocationID",
389                                                                         "value": "b1a59296-fcf2-4435-b8de-9a2e9b9f4077"
390                                                                 },
391                                                                 {
392                                                                         "key": "X-ONAP-PartnerName",
393                                                                         "value": "cds-controller"
394                                                                 },
395                                                                 {
396                                                                         "key": "Vary",
397                                                                         "value": "Origin"
398                                                                 },
399                                                                 {
400                                                                         "key": "Vary",
401                                                                         "value": "Access-Control-Request-Method"
402                                                                 },
403                                                                 {
404                                                                         "key": "Vary",
405                                                                         "value": "Access-Control-Request-Headers"
406                                                                 },
407                                                                 {
408                                                                         "key": "Content-Type",
409                                                                         "value": "application/json"
410                                                                 },
411                                                                 {
412                                                                         "key": "Content-Length",
413                                                                         "value": "0"
414                                                                 },
415                                                                 {
416                                                                         "key": "Cache-Control",
417                                                                         "value": "no-cache, no-store, max-age=0, must-revalidate"
418                                                                 },
419                                                                 {
420                                                                         "key": "Pragma",
421                                                                         "value": "no-cache"
422                                                                 },
423                                                                 {
424                                                                         "key": "Expires",
425                                                                         "value": "0"
426                                                                 },
427                                                                 {
428                                                                         "key": "X-Content-Type-Options",
429                                                                         "value": "nosniff"
430                                                                 },
431                                                                 {
432                                                                         "key": "X-Frame-Options",
433                                                                         "value": "DENY"
434                                                                 },
435                                                                 {
436                                                                         "key": "X-XSS-Protection",
437                                                                         "value": "1 ; mode=block"
438                                                                 },
439                                                                 {
440                                                                         "key": "Referrer-Policy",
441                                                                         "value": "no-referrer"
442                                                                 }
443                                                         ],
444                                                         "cookie": [],
445                                                         "body": ""
446                                                 }
447                                         ]
448                                 },
449                                 {
450                                         "name": "Download a Blueprint Model by ID",
451                                         "protocolProfileBehavior": {
452                                                 "disabledSystemHeaders": {}
453                                         },
454                                         "request": {
455                                                 "auth": {
456                                                         "type": "basic",
457                                                         "basic": [
458                                                                 {
459                                                                         "key": "password",
460                                                                         "value": "ccsdkapps",
461                                                                         "type": "string"
462                                                                 },
463                                                                 {
464                                                                         "key": "username",
465                                                                         "value": "ccsdkapps",
466                                                                         "type": "string"
467                                                                 }
468                                                         ]
469                                                 },
470                                                 "method": "GET",
471                                                 "header": [
472                                                         {
473                                                                 "key": "Content-Type",
474                                                                 "value": "application/json",
475                                                                 "disabled": true
476                                                         },
477                                                         {
478                                                                 "key": "",
479                                                                 "type": "text",
480                                                                 "value": "",
481                                                                 "disabled": true
482                                                         }
483                                                 ],
484                                                 "url": {
485                                                         "raw": "http://{{host}}:{{port}}/api/v1/blueprint-model/download/416f241d-3ef9-4cb6-8834-956ae4f70b07",
486                                                         "protocol": "http",
487                                                         "host": [
488                                                                 "{{host}}"
489                                                         ],
490                                                         "port": "{{port}}",
491                                                         "path": [
492                                                                 "api",
493                                                                 "v1",
494                                                                 "blueprint-model",
495                                                                 "download",
496                                                                 "416f241d-3ef9-4cb6-8834-956ae4f70b07"
497                                                         ]
498                                                 },
499                                                 "description": "Gets the CBA of a blueprint model by its ID. Response can be saved to a file to download the CBA."
500                                         },
501                                         "response": [
502                                                 {
503                                                         "name": "CDS Bootstrap",
504                                                         "originalRequest": {
505                                                                 "method": "POST",
506                                                                 "header": [
507                                                                         {
508                                                                                 "key": "Content-Type",
509                                                                                 "value": "application/json"
510                                                                         },
511                                                                         {
512                                                                                 "key": "",
513                                                                                 "value": "",
514                                                                                 "type": "text",
515                                                                                 "disabled": true
516                                                                         }
517                                                                 ],
518                                                                 "body": {
519                                                                         "mode": "raw",
520                                                                         "raw": "{\r\n\"loadModelType\" : false,\r\n\"loadResourceDictionary\" : true,\r\n\"loadCBA\" : false\r\n}",
521                                                                         "options": {
522                                                                                 "raw": {}
523                                                                         }
524                                                                 },
525                                                                 "url": {
526                                                                         "raw": "http://localhost:8081/api/v1/blueprint-model/bootstrap",
527                                                                         "protocol": "http",
528                                                                         "host": [
529                                                                                 "localhost"
530                                                                         ],
531                                                                         "port": "8081",
532                                                                         "path": [
533                                                                                 "api",
534                                                                                 "v1",
535                                                                                 "blueprint-model",
536                                                                                 "bootstrap"
537                                                                         ]
538                                                                 }
539                                                         },
540                                                         "status": "OK",
541                                                         "code": 200,
542                                                         "_postman_previewlanguage": "json",
543                                                         "header": [
544                                                                 {
545                                                                         "key": "X-ONAP-RequestID",
546                                                                         "value": "b73253b6-d2be-4701-bdb2-31fa66b79a01"
547                                                                 },
548                                                                 {
549                                                                         "key": "X-ONAP-InvocationID",
550                                                                         "value": "b1a59296-fcf2-4435-b8de-9a2e9b9f4077"
551                                                                 },
552                                                                 {
553                                                                         "key": "X-ONAP-PartnerName",
554                                                                         "value": "cds-controller"
555                                                                 },
556                                                                 {
557                                                                         "key": "Vary",
558                                                                         "value": "Origin"
559                                                                 },
560                                                                 {
561                                                                         "key": "Vary",
562                                                                         "value": "Access-Control-Request-Method"
563                                                                 },
564                                                                 {
565                                                                         "key": "Vary",
566                                                                         "value": "Access-Control-Request-Headers"
567                                                                 },
568                                                                 {
569                                                                         "key": "Content-Type",
570                                                                         "value": "application/json"
571                                                                 },
572                                                                 {
573                                                                         "key": "Content-Length",
574                                                                         "value": "0"
575                                                                 },
576                                                                 {
577                                                                         "key": "Cache-Control",
578                                                                         "value": "no-cache, no-store, max-age=0, must-revalidate"
579                                                                 },
580                                                                 {
581                                                                         "key": "Pragma",
582                                                                         "value": "no-cache"
583                                                                 },
584                                                                 {
585                                                                         "key": "Expires",
586                                                                         "value": "0"
587                                                                 },
588                                                                 {
589                                                                         "key": "X-Content-Type-Options",
590                                                                         "value": "nosniff"
591                                                                 },
592                                                                 {
593                                                                         "key": "X-Frame-Options",
594                                                                         "value": "DENY"
595                                                                 },
596                                                                 {
597                                                                         "key": "X-XSS-Protection",
598                                                                         "value": "1 ; mode=block"
599                                                                 },
600                                                                 {
601                                                                         "key": "Referrer-Policy",
602                                                                         "value": "no-referrer"
603                                                                 }
604                                                         ],
605                                                         "cookie": [],
606                                                         "body": ""
607                                                 }
608                                         ]
609                                 },
610                                 {
611                                         "name": "Enrich a Blueprint Model",
612                                         "protocolProfileBehavior": {
613                                                 "disabledSystemHeaders": {}
614                                         },
615                                         "request": {
616                                                 "auth": {
617                                                         "type": "basic",
618                                                         "basic": [
619                                                                 {
620                                                                         "key": "password",
621                                                                         "value": "ccsdkapps",
622                                                                         "type": "string"
623                                                                 },
624                                                                 {
625                                                                         "key": "username",
626                                                                         "value": "ccsdkapps",
627                                                                         "type": "string"
628                                                                 }
629                                                         ]
630                                                 },
631                                                 "method": "POST",
632                                                 "header": [
633                                                         {
634                                                                 "key": "Content-Type",
635                                                                 "value": "application/json",
636                                                                 "disabled": true
637                                                         },
638                                                         {
639                                                                 "key": "",
640                                                                 "type": "text",
641                                                                 "value": "",
642                                                                 "disabled": true
643                                                         }
644                                                 ],
645                                                 "body": {
646                                                         "mode": "formdata",
647                                                         "formdata": [
648                                                                 {
649                                                                         "key": "file",
650                                                                         "type": "file",
651                                                                         "src": "/home/jakob/Downloads/PNF_DEMO.zip"
652                                                                 }
653                                                         ],
654                                                         "options": {
655                                                                 "raw": {
656                                                                         "language": "json"
657                                                                 }
658                                                         }
659                                                 },
660                                                 "url": {
661                                                         "raw": "http://{{host}}:{{port}}/api/v1/blueprint-model/enrich",
662                                                         "protocol": "http",
663                                                         "host": [
664                                                                 "{{host}}"
665                                                         ],
666                                                         "port": "{{port}}",
667                                                         "path": [
668                                                                 "api",
669                                                                 "v1",
670                                                                 "blueprint-model",
671                                                                 "enrich"
672                                                         ]
673                                                 },
674                                                 "description": "Enriches the attached CBA and returns the enriched CBA zip file in the response.The enrichment process will complete the package by providing all the definition of types used."
675                                         },
676                                         "response": [
677                                                 {
678                                                         "name": "CDS Bootstrap",
679                                                         "originalRequest": {
680                                                                 "method": "POST",
681                                                                 "header": [
682                                                                         {
683                                                                                 "key": "Content-Type",
684                                                                                 "value": "application/json"
685                                                                         },
686                                                                         {
687                                                                                 "key": "",
688                                                                                 "value": "",
689                                                                                 "type": "text",
690                                                                                 "disabled": true
691                                                                         }
692                                                                 ],
693                                                                 "body": {
694                                                                         "mode": "raw",
695                                                                         "raw": "{\r\n\"loadModelType\" : false,\r\n\"loadResourceDictionary\" : true,\r\n\"loadCBA\" : false\r\n}",
696                                                                         "options": {
697                                                                                 "raw": {}
698                                                                         }
699                                                                 },
700                                                                 "url": {
701                                                                         "raw": "http://localhost:8081/api/v1/blueprint-model/bootstrap",
702                                                                         "protocol": "http",
703                                                                         "host": [
704                                                                                 "localhost"
705                                                                         ],
706                                                                         "port": "8081",
707                                                                         "path": [
708                                                                                 "api",
709                                                                                 "v1",
710                                                                                 "blueprint-model",
711                                                                                 "bootstrap"
712                                                                         ]
713                                                                 }
714                                                         },
715                                                         "status": "OK",
716                                                         "code": 200,
717                                                         "_postman_previewlanguage": "json",
718                                                         "header": [
719                                                                 {
720                                                                         "key": "X-ONAP-RequestID",
721                                                                         "value": "b73253b6-d2be-4701-bdb2-31fa66b79a01"
722                                                                 },
723                                                                 {
724                                                                         "key": "X-ONAP-InvocationID",
725                                                                         "value": "b1a59296-fcf2-4435-b8de-9a2e9b9f4077"
726                                                                 },
727                                                                 {
728                                                                         "key": "X-ONAP-PartnerName",
729                                                                         "value": "cds-controller"
730                                                                 },
731                                                                 {
732                                                                         "key": "Vary",
733                                                                         "value": "Origin"
734                                                                 },
735                                                                 {
736                                                                         "key": "Vary",
737                                                                         "value": "Access-Control-Request-Method"
738                                                                 },
739                                                                 {
740                                                                         "key": "Vary",
741                                                                         "value": "Access-Control-Request-Headers"
742                                                                 },
743                                                                 {
744                                                                         "key": "Content-Type",
745                                                                         "value": "application/json"
746                                                                 },
747                                                                 {
748                                                                         "key": "Content-Length",
749                                                                         "value": "0"
750                                                                 },
751                                                                 {
752                                                                         "key": "Cache-Control",
753                                                                         "value": "no-cache, no-store, max-age=0, must-revalidate"
754                                                                 },
755                                                                 {
756                                                                         "key": "Pragma",
757                                                                         "value": "no-cache"
758                                                                 },
759                                                                 {
760                                                                         "key": "Expires",
761                                                                         "value": "0"
762                                                                 },
763                                                                 {
764                                                                         "key": "X-Content-Type-Options",
765                                                                         "value": "nosniff"
766                                                                 },
767                                                                 {
768                                                                         "key": "X-Frame-Options",
769                                                                         "value": "DENY"
770                                                                 },
771                                                                 {
772                                                                         "key": "X-XSS-Protection",
773                                                                         "value": "1 ; mode=block"
774                                                                 },
775                                                                 {
776                                                                         "key": "Referrer-Policy",
777                                                                         "value": "no-referrer"
778                                                                 }
779                                                         ],
780                                                         "cookie": [],
781                                                         "body": ""
782                                                 }
783                                         ]
784                                 },
785                                 {
786                                         "name": "Enrich and publish a Blueprint Model",
787                                         "protocolProfileBehavior": {
788                                                 "disabledSystemHeaders": {}
789                                         },
790                                         "request": {
791                                                 "auth": {
792                                                         "type": "basic",
793                                                         "basic": [
794                                                                 {
795                                                                         "key": "password",
796                                                                         "value": "ccsdkapps",
797                                                                         "type": "string"
798                                                                 },
799                                                                 {
800                                                                         "key": "username",
801                                                                         "value": "ccsdkapps",
802                                                                         "type": "string"
803                                                                 }
804                                                         ]
805                                                 },
806                                                 "method": "POST",
807                                                 "header": [
808                                                         {
809                                                                 "key": "Content-Type",
810                                                                 "value": "application/json",
811                                                                 "disabled": true
812                                                         },
813                                                         {
814                                                                 "key": "",
815                                                                 "type": "text",
816                                                                 "value": "",
817                                                                 "disabled": true
818                                                         }
819                                                 ],
820                                                 "body": {
821                                                         "mode": "formdata",
822                                                         "formdata": [
823                                                                 {
824                                                                         "key": "file",
825                                                                         "type": "file",
826                                                                         "src": "/home/jakob/Downloads/PNF_DEMO.zip"
827                                                                 }
828                                                         ],
829                                                         "options": {
830                                                                 "raw": {
831                                                                         "language": "json"
832                                                                 }
833                                                         }
834                                                 },
835                                                 "url": {
836                                                         "raw": "http://{{host}}:{{port}}/api/v1/blueprint-model/enrichandpublish",
837                                                         "protocol": "http",
838                                                         "host": [
839                                                                 "{{host}}"
840                                                         ],
841                                                         "port": "{{port}}",
842                                                         "path": [
843                                                                 "api",
844                                                                 "v1",
845                                                                 "blueprint-model",
846                                                                 "enrichandpublish"
847                                                         ]
848                                                 },
849                                                 "description": "Enriches the attached CBA, validates it and saves it in CDS if validation was successful."
850                                         },
851                                         "response": [
852                                                 {
853                                                         "name": "CDS Bootstrap",
854                                                         "originalRequest": {
855                                                                 "method": "POST",
856                                                                 "header": [
857                                                                         {
858                                                                                 "key": "Content-Type",
859                                                                                 "value": "application/json"
860                                                                         },
861                                                                         {
862                                                                                 "key": "",
863                                                                                 "value": "",
864                                                                                 "type": "text",
865                                                                                 "disabled": true
866                                                                         }
867                                                                 ],
868                                                                 "body": {
869                                                                         "mode": "raw",
870                                                                         "raw": "{\r\n\"loadModelType\" : false,\r\n\"loadResourceDictionary\" : true,\r\n\"loadCBA\" : false\r\n}",
871                                                                         "options": {
872                                                                                 "raw": {}
873                                                                         }
874                                                                 },
875                                                                 "url": {
876                                                                         "raw": "http://localhost:8081/api/v1/blueprint-model/bootstrap",
877                                                                         "protocol": "http",
878                                                                         "host": [
879                                                                                 "localhost"
880                                                                         ],
881                                                                         "port": "8081",
882                                                                         "path": [
883                                                                                 "api",
884                                                                                 "v1",
885                                                                                 "blueprint-model",
886                                                                                 "bootstrap"
887                                                                         ]
888                                                                 }
889                                                         },
890                                                         "status": "OK",
891                                                         "code": 200,
892                                                         "_postman_previewlanguage": "json",
893                                                         "header": [
894                                                                 {
895                                                                         "key": "X-ONAP-RequestID",
896                                                                         "value": "b73253b6-d2be-4701-bdb2-31fa66b79a01"
897                                                                 },
898                                                                 {
899                                                                         "key": "X-ONAP-InvocationID",
900                                                                         "value": "b1a59296-fcf2-4435-b8de-9a2e9b9f4077"
901                                                                 },
902                                                                 {
903                                                                         "key": "X-ONAP-PartnerName",
904                                                                         "value": "cds-controller"
905                                                                 },
906                                                                 {
907                                                                         "key": "Vary",
908                                                                         "value": "Origin"
909                                                                 },
910                                                                 {
911                                                                         "key": "Vary",
912                                                                         "value": "Access-Control-Request-Method"
913                                                                 },
914                                                                 {
915                                                                         "key": "Vary",
916                                                                         "value": "Access-Control-Request-Headers"
917                                                                 },
918                                                                 {
919                                                                         "key": "Content-Type",
920                                                                         "value": "application/json"
921                                                                 },
922                                                                 {
923                                                                         "key": "Content-Length",
924                                                                         "value": "0"
925                                                                 },
926                                                                 {
927                                                                         "key": "Cache-Control",
928                                                                         "value": "no-cache, no-store, max-age=0, must-revalidate"
929                                                                 },
930                                                                 {
931                                                                         "key": "Pragma",
932                                                                         "value": "no-cache"
933                                                                 },
934                                                                 {
935                                                                         "key": "Expires",
936                                                                         "value": "0"
937                                                                 },
938                                                                 {
939                                                                         "key": "X-Content-Type-Options",
940                                                                         "value": "nosniff"
941                                                                 },
942                                                                 {
943                                                                         "key": "X-Frame-Options",
944                                                                         "value": "DENY"
945                                                                 },
946                                                                 {
947                                                                         "key": "X-XSS-Protection",
948                                                                         "value": "1 ; mode=block"
949                                                                 },
950                                                                 {
951                                                                         "key": "Referrer-Policy",
952                                                                         "value": "no-referrer"
953                                                                 }
954                                                         ],
955                                                         "cookie": [],
956                                                         "body": ""
957                                                 }
958                                         ]
959                                 },
960                                 {
961                                         "name": "Search for Blueprints by a Keyword",
962                                         "protocolProfileBehavior": {
963                                                 "disabledSystemHeaders": {}
964                                         },
965                                         "request": {
966                                                 "auth": {
967                                                         "type": "basic",
968                                                         "basic": [
969                                                                 {
970                                                                         "key": "password",
971                                                                         "value": "ccsdkapps",
972                                                                         "type": "string"
973                                                                 },
974                                                                 {
975                                                                         "key": "username",
976                                                                         "value": "ccsdkapps",
977                                                                         "type": "string"
978                                                                 }
979                                                         ]
980                                                 },
981                                                 "method": "GET",
982                                                 "header": [
983                                                         {
984                                                                 "key": "Content-Type",
985                                                                 "value": "application/json",
986                                                                 "disabled": true
987                                                         },
988                                                         {
989                                                                 "key": "",
990                                                                 "type": "text",
991                                                                 "value": "",
992                                                                 "disabled": true
993                                                         }
994                                                 ],
995                                                 "url": {
996                                                         "raw": "http://{{host}}:{{port}}/api/v1/blueprint-model/meta-data/pnf_netconf",
997                                                         "protocol": "http",
998                                                         "host": [
999                                                                 "{{host}}"
1000                                                         ],
1001                                                         "port": "{{port}}",
1002                                                         "path": [
1003                                                                 "api",
1004                                                                 "v1",
1005                                                                 "blueprint-model",
1006                                                                 "meta-data",
1007                                                                 "pnf_netconf"
1008                                                         ]
1009                                                 },
1010                                                 "description": "Lists all blueprint models by a matching keyword in any of the meta-data of the blueprint models.Blueprint models are just returned if a whole keyword is matching, not just parts of it. Not case-sensitive.Used by CDS UI."
1011                                         },
1012                                         "response": [
1013                                                 {
1014                                                         "name": "CDS Bootstrap",
1015                                                         "originalRequest": {
1016                                                                 "method": "POST",
1017                                                                 "header": [
1018                                                                         {
1019                                                                                 "key": "Content-Type",
1020                                                                                 "value": "application/json"
1021                                                                         },
1022                                                                         {
1023                                                                                 "key": "",
1024                                                                                 "value": "",
1025                                                                                 "type": "text",
1026                                                                                 "disabled": true
1027                                                                         }
1028                                                                 ],
1029                                                                 "body": {
1030                                                                         "mode": "raw",
1031                                                                         "raw": "{\r\n\"loadModelType\" : false,\r\n\"loadResourceDictionary\" : true,\r\n\"loadCBA\" : false\r\n}",
1032                                                                         "options": {
1033                                                                                 "raw": {}
1034                                                                         }
1035                                                                 },
1036                                                                 "url": {
1037                                                                         "raw": "http://localhost:8081/api/v1/blueprint-model/bootstrap",
1038                                                                         "protocol": "http",
1039                                                                         "host": [
1040                                                                                 "localhost"
1041                                                                         ],
1042                                                                         "port": "8081",
1043                                                                         "path": [
1044                                                                                 "api",
1045                                                                                 "v1",
1046                                                                                 "blueprint-model",
1047                                                                                 "bootstrap"
1048                                                                         ]
1049                                                                 }
1050                                                         },
1051                                                         "status": "OK",
1052                                                         "code": 200,
1053                                                         "_postman_previewlanguage": "json",
1054                                                         "header": [
1055                                                                 {
1056                                                                         "key": "X-ONAP-RequestID",
1057                                                                         "value": "b73253b6-d2be-4701-bdb2-31fa66b79a01"
1058                                                                 },
1059                                                                 {
1060                                                                         "key": "X-ONAP-InvocationID",
1061                                                                         "value": "b1a59296-fcf2-4435-b8de-9a2e9b9f4077"
1062                                                                 },
1063                                                                 {
1064                                                                         "key": "X-ONAP-PartnerName",
1065                                                                         "value": "cds-controller"
1066                                                                 },
1067                                                                 {
1068                                                                         "key": "Vary",
1069                                                                         "value": "Origin"
1070                                                                 },
1071                                                                 {
1072                                                                         "key": "Vary",
1073                                                                         "value": "Access-Control-Request-Method"
1074                                                                 },
1075                                                                 {
1076                                                                         "key": "Vary",
1077                                                                         "value": "Access-Control-Request-Headers"
1078                                                                 },
1079                                                                 {
1080                                                                         "key": "Content-Type",
1081                                                                         "value": "application/json"
1082                                                                 },
1083                                                                 {
1084                                                                         "key": "Content-Length",
1085                                                                         "value": "0"
1086                                                                 },
1087                                                                 {
1088                                                                         "key": "Cache-Control",
1089                                                                         "value": "no-cache, no-store, max-age=0, must-revalidate"
1090                                                                 },
1091                                                                 {
1092                                                                         "key": "Pragma",
1093                                                                         "value": "no-cache"
1094                                                                 },
1095                                                                 {
1096                                                                         "key": "Expires",
1097                                                                         "value": "0"
1098                                                                 },
1099                                                                 {
1100                                                                         "key": "X-Content-Type-Options",
1101                                                                         "value": "nosniff"
1102                                                                 },
1103                                                                 {
1104                                                                         "key": "X-Frame-Options",
1105                                                                         "value": "DENY"
1106                                                                 },
1107                                                                 {
1108                                                                         "key": "X-XSS-Protection",
1109                                                                         "value": "1 ; mode=block"
1110                                                                 },
1111                                                                 {
1112                                                                         "key": "Referrer-Policy",
1113                                                                         "value": "no-referrer"
1114                                                                 }
1115                                                         ],
1116                                                         "cookie": [],
1117                                                         "body": ""
1118                                                 }
1119                                         ]
1120                                 },
1121                                 {
1122                                         "name": "Delete a Blueprint Model by Name",
1123                                         "protocolProfileBehavior": {
1124                                                 "disabledSystemHeaders": {}
1125                                         },
1126                                         "request": {
1127                                                 "auth": {
1128                                                         "type": "basic",
1129                                                         "basic": [
1130                                                                 {
1131                                                                         "key": "password",
1132                                                                         "value": "ccsdkapps",
1133                                                                         "type": "string"
1134                                                                 },
1135                                                                 {
1136                                                                         "key": "username",
1137                                                                         "value": "ccsdkapps",
1138                                                                         "type": "string"
1139                                                                 }
1140                                                         ]
1141                                                 },
1142                                                 "method": "DELETE",
1143                                                 "header": [
1144                                                         {
1145                                                                 "key": "Content-Type",
1146                                                                 "value": "application/json",
1147                                                                 "disabled": true
1148                                                         },
1149                                                         {
1150                                                                 "key": "",
1151                                                                 "type": "text",
1152                                                                 "value": "",
1153                                                                 "disabled": true
1154                                                         }
1155                                                 ],
1156                                                 "url": {
1157                                                         "raw": "http://{{host}}:{{port}}/api/v1/blueprint-model/name/pnf_netconf/version/1.0.0",
1158                                                         "protocol": "http",
1159                                                         "host": [
1160                                                                 "{{host}}"
1161                                                         ],
1162                                                         "port": "{{port}}",
1163                                                         "path": [
1164                                                                 "api",
1165                                                                 "v1",
1166                                                                 "blueprint-model",
1167                                                                 "name",
1168                                                                 "pnf_netconf",
1169                                                                 "version",
1170                                                                 "1.0.0"
1171                                                         ]
1172                                                 },
1173                                                 "description": "Delete a blueprint model identified by its name and version from CDS."
1174                                         },
1175                                         "response": [
1176                                                 {
1177                                                         "name": "CDS Bootstrap",
1178                                                         "originalRequest": {
1179                                                                 "method": "POST",
1180                                                                 "header": [
1181                                                                         {
1182                                                                                 "key": "Content-Type",
1183                                                                                 "value": "application/json"
1184                                                                         },
1185                                                                         {
1186                                                                                 "key": "",
1187                                                                                 "value": "",
1188                                                                                 "type": "text",
1189                                                                                 "disabled": true
1190                                                                         }
1191                                                                 ],
1192                                                                 "body": {
1193                                                                         "mode": "raw",
1194                                                                         "raw": "{\r\n\"loadModelType\" : false,\r\n\"loadResourceDictionary\" : true,\r\n\"loadCBA\" : false\r\n}",
1195                                                                         "options": {
1196                                                                                 "raw": {}
1197                                                                         }
1198                                                                 },
1199                                                                 "url": {
1200                                                                         "raw": "http://localhost:8081/api/v1/blueprint-model/bootstrap",
1201                                                                         "protocol": "http",
1202                                                                         "host": [
1203                                                                                 "localhost"
1204                                                                         ],
1205                                                                         "port": "8081",
1206                                                                         "path": [
1207                                                                                 "api",
1208                                                                                 "v1",
1209                                                                                 "blueprint-model",
1210                                                                                 "bootstrap"
1211                                                                         ]
1212                                                                 }
1213                                                         },
1214                                                         "status": "OK",
1215                                                         "code": 200,
1216                                                         "_postman_previewlanguage": "json",
1217                                                         "header": [
1218                                                                 {
1219                                                                         "key": "X-ONAP-RequestID",
1220                                                                         "value": "b73253b6-d2be-4701-bdb2-31fa66b79a01"
1221                                                                 },
1222                                                                 {
1223                                                                         "key": "X-ONAP-InvocationID",
1224                                                                         "value": "b1a59296-fcf2-4435-b8de-9a2e9b9f4077"
1225                                                                 },
1226                                                                 {
1227                                                                         "key": "X-ONAP-PartnerName",
1228                                                                         "value": "cds-controller"
1229                                                                 },
1230                                                                 {
1231                                                                         "key": "Vary",
1232                                                                         "value": "Origin"
1233                                                                 },
1234                                                                 {
1235                                                                         "key": "Vary",
1236                                                                         "value": "Access-Control-Request-Method"
1237                                                                 },
1238                                                                 {
1239                                                                         "key": "Vary",
1240                                                                         "value": "Access-Control-Request-Headers"
1241                                                                 },
1242                                                                 {
1243                                                                         "key": "Content-Type",
1244                                                                         "value": "application/json"
1245                                                                 },
1246                                                                 {
1247                                                                         "key": "Content-Length",
1248                                                                         "value": "0"
1249                                                                 },
1250                                                                 {
1251                                                                         "key": "Cache-Control",
1252                                                                         "value": "no-cache, no-store, max-age=0, must-revalidate"
1253                                                                 },
1254                                                                 {
1255                                                                         "key": "Pragma",
1256                                                                         "value": "no-cache"
1257                                                                 },
1258                                                                 {
1259                                                                         "key": "Expires",
1260                                                                         "value": "0"
1261                                                                 },
1262                                                                 {
1263                                                                         "key": "X-Content-Type-Options",
1264                                                                         "value": "nosniff"
1265                                                                 },
1266                                                                 {
1267                                                                         "key": "X-Frame-Options",
1268                                                                         "value": "DENY"
1269                                                                 },
1270                                                                 {
1271                                                                         "key": "X-XSS-Protection",
1272                                                                         "value": "1 ; mode=block"
1273                                                                 },
1274                                                                 {
1275                                                                         "key": "Referrer-Policy",
1276                                                                         "value": "no-referrer"
1277                                                                 }
1278                                                         ],
1279                                                         "cookie": [],
1280                                                         "body": ""
1281                                                 }
1282                                         ]
1283                                 },
1284                                 {
1285                                         "name": "Get Blueprints ordered",
1286                                         "protocolProfileBehavior": {
1287                                                 "disabledSystemHeaders": {}
1288                                         },
1289                                         "request": {
1290                                                 "auth": {
1291                                                         "type": "basic",
1292                                                         "basic": [
1293                                                                 {
1294                                                                         "key": "password",
1295                                                                         "value": "ccsdkapps",
1296                                                                         "type": "string"
1297                                                                 },
1298                                                                 {
1299                                                                         "key": "username",
1300                                                                         "value": "ccsdkapps",
1301                                                                         "type": "string"
1302                                                                 }
1303                                                         ]
1304                                                 },
1305                                                 "method": "GET",
1306                                                 "header": [
1307                                                         {
1308                                                                 "key": "Content-Type",
1309                                                                 "value": "application/json",
1310                                                                 "disabled": true
1311                                                         },
1312                                                         {
1313                                                                 "key": "",
1314                                                                 "type": "text",
1315                                                                 "value": "",
1316                                                                 "disabled": true
1317                                                         }
1318                                                 ],
1319                                                 "url": {
1320                                                         "raw": "http://{{host}}:{{port}}/api/v1/blueprint-model/paged?limit=5&sort=DATE",
1321                                                         "protocol": "http",
1322                                                         "host": [
1323                                                                 "{{host}}"
1324                                                         ],
1325                                                         "port": "{{port}}",
1326                                                         "path": [
1327                                                                 "api",
1328                                                                 "v1",
1329                                                                 "blueprint-model",
1330                                                                 "paged"
1331                                                         ],
1332                                                         "query": [
1333                                                                 {
1334                                                                         "key": "limit",
1335                                                                         "value": "5"
1336                                                                 },
1337                                                                 {
1338                                                                         "key": "sort",
1339                                                                         "value": "DATE"
1340                                                                 }
1341                                                         ]
1342                                                 },
1343                                                 "description": "Lists all blueprint models which are saved in CDS in an ordered mode."
1344                                         },
1345                                         "response": [
1346                                                 {
1347                                                         "name": "CDS Bootstrap",
1348                                                         "originalRequest": {
1349                                                                 "method": "POST",
1350                                                                 "header": [
1351                                                                         {
1352                                                                                 "key": "Content-Type",
1353                                                                                 "value": "application/json"
1354                                                                         },
1355                                                                         {
1356                                                                                 "key": "",
1357                                                                                 "value": "",
1358                                                                                 "type": "text",
1359                                                                                 "disabled": true
1360                                                                         }
1361                                                                 ],
1362                                                                 "body": {
1363                                                                         "mode": "raw",
1364                                                                         "raw": "{\r\n\"loadModelType\" : false,\r\n\"loadResourceDictionary\" : true,\r\n\"loadCBA\" : false\r\n}",
1365                                                                         "options": {
1366                                                                                 "raw": {}
1367                                                                         }
1368                                                                 },
1369                                                                 "url": {
1370                                                                         "raw": "http://localhost:8081/api/v1/blueprint-model/bootstrap",
1371                                                                         "protocol": "http",
1372                                                                         "host": [
1373                                                                                 "localhost"
1374                                                                         ],
1375                                                                         "port": "8081",
1376                                                                         "path": [
1377                                                                                 "api",
1378                                                                                 "v1",
1379                                                                                 "blueprint-model",
1380                                                                                 "bootstrap"
1381                                                                         ]
1382                                                                 }
1383                                                         },
1384                                                         "status": "OK",
1385                                                         "code": 200,
1386                                                         "_postman_previewlanguage": "json",
1387                                                         "header": [
1388                                                                 {
1389                                                                         "key": "X-ONAP-RequestID",
1390                                                                         "value": "b73253b6-d2be-4701-bdb2-31fa66b79a01"
1391                                                                 },
1392                                                                 {
1393                                                                         "key": "X-ONAP-InvocationID",
1394                                                                         "value": "b1a59296-fcf2-4435-b8de-9a2e9b9f4077"
1395                                                                 },
1396                                                                 {
1397                                                                         "key": "X-ONAP-PartnerName",
1398                                                                         "value": "cds-controller"
1399                                                                 },
1400                                                                 {
1401                                                                         "key": "Vary",
1402                                                                         "value": "Origin"
1403                                                                 },
1404                                                                 {
1405                                                                         "key": "Vary",
1406                                                                         "value": "Access-Control-Request-Method"
1407                                                                 },
1408                                                                 {
1409                                                                         "key": "Vary",
1410                                                                         "value": "Access-Control-Request-Headers"
1411                                                                 },
1412                                                                 {
1413                                                                         "key": "Content-Type",
1414                                                                         "value": "application/json"
1415                                                                 },
1416                                                                 {
1417                                                                         "key": "Content-Length",
1418                                                                         "value": "0"
1419                                                                 },
1420                                                                 {
1421                                                                         "key": "Cache-Control",
1422                                                                         "value": "no-cache, no-store, max-age=0, must-revalidate"
1423                                                                 },
1424                                                                 {
1425                                                                         "key": "Pragma",
1426                                                                         "value": "no-cache"
1427                                                                 },
1428                                                                 {
1429                                                                         "key": "Expires",
1430                                                                         "value": "0"
1431                                                                 },
1432                                                                 {
1433                                                                         "key": "X-Content-Type-Options",
1434                                                                         "value": "nosniff"
1435                                                                 },
1436                                                                 {
1437                                                                         "key": "X-Frame-Options",
1438                                                                         "value": "DENY"
1439                                                                 },
1440                                                                 {
1441                                                                         "key": "X-XSS-Protection",
1442                                                                         "value": "1 ; mode=block"
1443                                                                 },
1444                                                                 {
1445                                                                         "key": "Referrer-Policy",
1446                                                                         "value": "no-referrer"
1447                                                                 }
1448                                                         ],
1449                                                         "cookie": [],
1450                                                         "body": ""
1451                                                 }
1452                                         ]
1453                                 },
1454                                 {
1455                                         "name": "Search for Blueprints by a Keyword in an ordered mode",
1456                                         "protocolProfileBehavior": {
1457                                                 "disabledSystemHeaders": {}
1458                                         },
1459                                         "request": {
1460                                                 "auth": {
1461                                                         "type": "basic",
1462                                                         "basic": [
1463                                                                 {
1464                                                                         "key": "password",
1465                                                                         "value": "ccsdkapps",
1466                                                                         "type": "string"
1467                                                                 },
1468                                                                 {
1469                                                                         "key": "username",
1470                                                                         "value": "ccsdkapps",
1471                                                                         "type": "string"
1472                                                                 }
1473                                                         ]
1474                                                 },
1475                                                 "method": "GET",
1476                                                 "header": [
1477                                                         {
1478                                                                 "key": "Content-Type",
1479                                                                 "value": "application/json",
1480                                                                 "disabled": true
1481                                                         },
1482                                                         {
1483                                                                 "key": "",
1484                                                                 "type": "text",
1485                                                                 "value": "",
1486                                                                 "disabled": true
1487                                                         }
1488                                                 ],
1489                                                 "url": {
1490                                                         "raw": "http://{{host}}:{{port}}/api/v1/blueprint-model/paged/meta-data/test?limit=5&sort=DATE",
1491                                                         "protocol": "http",
1492                                                         "host": [
1493                                                                 "{{host}}"
1494                                                         ],
1495                                                         "port": "{{port}}",
1496                                                         "path": [
1497                                                                 "api",
1498                                                                 "v1",
1499                                                                 "blueprint-model",
1500                                                                 "paged",
1501                                                                 "meta-data",
1502                                                                 "test"
1503                                                         ],
1504                                                         "query": [
1505                                                                 {
1506                                                                         "key": "limit",
1507                                                                         "value": "5"
1508                                                                 },
1509                                                                 {
1510                                                                         "key": "sort",
1511                                                                         "value": "DATE"
1512                                                                 }
1513                                                         ]
1514                                                 },
1515                                                 "description": "Lists all blueprint models by a matching keyword in any of the meta-data of the blueprint models in an ordered mode. Blueprint models are just returned if a whole keyword is matching, not just parts of it. Not case-sensitive. Used by CDS UI."
1516                                         },
1517                                         "response": [
1518                                                 {
1519                                                         "name": "CDS Bootstrap",
1520                                                         "originalRequest": {
1521                                                                 "method": "POST",
1522                                                                 "header": [
1523                                                                         {
1524                                                                                 "key": "Content-Type",
1525                                                                                 "value": "application/json"
1526                                                                         },
1527                                                                         {
1528                                                                                 "key": "",
1529                                                                                 "value": "",
1530                                                                                 "type": "text",
1531                                                                                 "disabled": true
1532                                                                         }
1533                                                                 ],
1534                                                                 "body": {
1535                                                                         "mode": "raw",
1536                                                                         "raw": "{\r\n\"loadModelType\" : false,\r\n\"loadResourceDictionary\" : true,\r\n\"loadCBA\" : false\r\n}",
1537                                                                         "options": {
1538                                                                                 "raw": {}
1539                                                                         }
1540                                                                 },
1541                                                                 "url": {
1542                                                                         "raw": "http://localhost:8081/api/v1/blueprint-model/bootstrap",
1543                                                                         "protocol": "http",
1544                                                                         "host": [
1545                                                                                 "localhost"
1546                                                                         ],
1547                                                                         "port": "8081",
1548                                                                         "path": [
1549                                                                                 "api",
1550                                                                                 "v1",
1551                                                                                 "blueprint-model",
1552                                                                                 "bootstrap"
1553                                                                         ]
1554                                                                 }
1555                                                         },
1556                                                         "status": "OK",
1557                                                         "code": 200,
1558                                                         "_postman_previewlanguage": "json",
1559                                                         "header": [
1560                                                                 {
1561                                                                         "key": "X-ONAP-RequestID",
1562                                                                         "value": "b73253b6-d2be-4701-bdb2-31fa66b79a01"
1563                                                                 },
1564                                                                 {
1565                                                                         "key": "X-ONAP-InvocationID",
1566                                                                         "value": "b1a59296-fcf2-4435-b8de-9a2e9b9f4077"
1567                                                                 },
1568                                                                 {
1569                                                                         "key": "X-ONAP-PartnerName",
1570                                                                         "value": "cds-controller"
1571                                                                 },
1572                                                                 {
1573                                                                         "key": "Vary",
1574                                                                         "value": "Origin"
1575                                                                 },
1576                                                                 {
1577                                                                         "key": "Vary",
1578                                                                         "value": "Access-Control-Request-Method"
1579                                                                 },
1580                                                                 {
1581                                                                         "key": "Vary",
1582                                                                         "value": "Access-Control-Request-Headers"
1583                                                                 },
1584                                                                 {
1585                                                                         "key": "Content-Type",
1586                                                                         "value": "application/json"
1587                                                                 },
1588                                                                 {
1589                                                                         "key": "Content-Length",
1590                                                                         "value": "0"
1591                                                                 },
1592                                                                 {
1593                                                                         "key": "Cache-Control",
1594                                                                         "value": "no-cache, no-store, max-age=0, must-revalidate"
1595                                                                 },
1596                                                                 {
1597                                                                         "key": "Pragma",
1598                                                                         "value": "no-cache"
1599                                                                 },
1600                                                                 {
1601                                                                         "key": "Expires",
1602                                                                         "value": "0"
1603                                                                 },
1604                                                                 {
1605                                                                         "key": "X-Content-Type-Options",
1606                                                                         "value": "nosniff"
1607                                                                 },
1608                                                                 {
1609                                                                         "key": "X-Frame-Options",
1610                                                                         "value": "DENY"
1611                                                                 },
1612                                                                 {
1613                                                                         "key": "X-XSS-Protection",
1614                                                                         "value": "1 ; mode=block"
1615                                                                 },
1616                                                                 {
1617                                                                         "key": "Referrer-Policy",
1618                                                                         "value": "no-referrer"
1619                                                                 }
1620                                                         ],
1621                                                         "cookie": [],
1622                                                         "body": ""
1623                                                 }
1624                                         ]
1625                                 },
1626                                 {
1627                                         "name": "Publish a Blueprint Model",
1628                                         "protocolProfileBehavior": {
1629                                                 "disabledSystemHeaders": {}
1630                                         },
1631                                         "request": {
1632                                                 "auth": {
1633                                                         "type": "basic",
1634                                                         "basic": [
1635                                                                 {
1636                                                                         "key": "password",
1637                                                                         "value": "ccsdkapps",
1638                                                                         "type": "string"
1639                                                                 },
1640                                                                 {
1641                                                                         "key": "username",
1642                                                                         "value": "ccsdkapps",
1643                                                                         "type": "string"
1644                                                                 }
1645                                                         ]
1646                                                 },
1647                                                 "method": "POST",
1648                                                 "header": [
1649                                                         {
1650                                                                 "key": "Content-Type",
1651                                                                 "value": "application/json",
1652                                                                 "disabled": true
1653                                                         },
1654                                                         {
1655                                                                 "key": "",
1656                                                                 "type": "text",
1657                                                                 "value": "",
1658                                                                 "disabled": true
1659                                                         }
1660                                                 ],
1661                                                 "body": {
1662                                                         "mode": "formdata",
1663                                                         "formdata": [
1664                                                                 {
1665                                                                         "key": "file",
1666                                                                         "type": "file",
1667                                                                         "src": "/home/jakob/Downloads/cba.zip"
1668                                                                 }
1669                                                         ],
1670                                                         "options": {
1671                                                                 "raw": {
1672                                                                         "language": "json"
1673                                                                 }
1674                                                         }
1675                                                 },
1676                                                 "url": {
1677                                                         "raw": "http://{{host}}:{{port}}/api/v1/blueprint-model/publish",
1678                                                         "protocol": "http",
1679                                                         "host": [
1680                                                                 "{{host}}"
1681                                                         ],
1682                                                         "port": "{{port}}",
1683                                                         "path": [
1684                                                                 "api",
1685                                                                 "v1",
1686                                                                 "blueprint-model",
1687                                                                 "publish"
1688                                                         ]
1689                                                 },
1690                                                 "description": "Validates the attached CBA file and saves it in CDS if validation was successful. CBA needs to be already enriched."
1691                                         },
1692                                         "response": [
1693                                                 {
1694                                                         "name": "CDS Bootstrap",
1695                                                         "originalRequest": {
1696                                                                 "method": "POST",
1697                                                                 "header": [
1698                                                                         {
1699                                                                                 "key": "Content-Type",
1700                                                                                 "value": "application/json"
1701                                                                         },
1702                                                                         {
1703                                                                                 "key": "",
1704                                                                                 "value": "",
1705                                                                                 "type": "text",
1706                                                                                 "disabled": true
1707                                                                         }
1708                                                                 ],
1709                                                                 "body": {
1710                                                                         "mode": "raw",
1711                                                                         "raw": "{\r\n\"loadModelType\" : false,\r\n\"loadResourceDictionary\" : true,\r\n\"loadCBA\" : false\r\n}",
1712                                                                         "options": {
1713                                                                                 "raw": {}
1714                                                                         }
1715                                                                 },
1716                                                                 "url": {
1717                                                                         "raw": "http://localhost:8081/api/v1/blueprint-model/bootstrap",
1718                                                                         "protocol": "http",
1719                                                                         "host": [
1720                                                                                 "localhost"
1721                                                                         ],
1722                                                                         "port": "8081",
1723                                                                         "path": [
1724                                                                                 "api",
1725                                                                                 "v1",
1726                                                                                 "blueprint-model",
1727                                                                                 "bootstrap"
1728                                                                         ]
1729                                                                 }
1730                                                         },
1731                                                         "status": "OK",
1732                                                         "code": 200,
1733                                                         "_postman_previewlanguage": "json",
1734                                                         "header": [
1735                                                                 {
1736                                                                         "key": "X-ONAP-RequestID",
1737                                                                         "value": "b73253b6-d2be-4701-bdb2-31fa66b79a01"
1738                                                                 },
1739                                                                 {
1740                                                                         "key": "X-ONAP-InvocationID",
1741                                                                         "value": "b1a59296-fcf2-4435-b8de-9a2e9b9f4077"
1742                                                                 },
1743                                                                 {
1744                                                                         "key": "X-ONAP-PartnerName",
1745                                                                         "value": "cds-controller"
1746                                                                 },
1747                                                                 {
1748                                                                         "key": "Vary",
1749                                                                         "value": "Origin"
1750                                                                 },
1751                                                                 {
1752                                                                         "key": "Vary",
1753                                                                         "value": "Access-Control-Request-Method"
1754                                                                 },
1755                                                                 {
1756                                                                         "key": "Vary",
1757                                                                         "value": "Access-Control-Request-Headers"
1758                                                                 },
1759                                                                 {
1760                                                                         "key": "Content-Type",
1761                                                                         "value": "application/json"
1762                                                                 },
1763                                                                 {
1764                                                                         "key": "Content-Length",
1765                                                                         "value": "0"
1766                                                                 },
1767                                                                 {
1768                                                                         "key": "Cache-Control",
1769                                                                         "value": "no-cache, no-store, max-age=0, must-revalidate"
1770                                                                 },
1771                                                                 {
1772                                                                         "key": "Pragma",
1773                                                                         "value": "no-cache"
1774                                                                 },
1775                                                                 {
1776                                                                         "key": "Expires",
1777                                                                         "value": "0"
1778                                                                 },
1779                                                                 {
1780                                                                         "key": "X-Content-Type-Options",
1781                                                                         "value": "nosniff"
1782                                                                 },
1783                                                                 {
1784                                                                         "key": "X-Frame-Options",
1785                                                                         "value": "DENY"
1786                                                                 },
1787                                                                 {
1788                                                                         "key": "X-XSS-Protection",
1789                                                                         "value": "1 ; mode=block"
1790                                                                 },
1791                                                                 {
1792                                                                         "key": "Referrer-Policy",
1793                                                                         "value": "no-referrer"
1794                                                                 }
1795                                                         ],
1796                                                         "cookie": [],
1797                                                         "body": ""
1798                                                 }
1799                                         ]
1800                                 },
1801                                 {
1802                                         "name": "Search for a Blueprint by Tag",
1803                                         "protocolProfileBehavior": {
1804                                                 "disabledSystemHeaders": {}
1805                                         },
1806                                         "request": {
1807                                                 "auth": {
1808                                                         "type": "basic",
1809                                                         "basic": [
1810                                                                 {
1811                                                                         "key": "password",
1812                                                                         "value": "ccsdkapps",
1813                                                                         "type": "string"
1814                                                                 },
1815                                                                 {
1816                                                                         "key": "username",
1817                                                                         "value": "ccsdkapps",
1818                                                                         "type": "string"
1819                                                                 }
1820                                                         ]
1821                                                 },
1822                                                 "method": "GET",
1823                                                 "header": [
1824                                                         {
1825                                                                 "key": "Content-Type",
1826                                                                 "value": "application/json",
1827                                                                 "disabled": true
1828                                                         },
1829                                                         {
1830                                                                 "key": "",
1831                                                                 "type": "text",
1832                                                                 "value": "",
1833                                                                 "disabled": true
1834                                                         }
1835                                                 ],
1836                                                 "url": {
1837                                                         "raw": "http://{{host}}:{{port}}/api/v1/blueprint-model/search/test",
1838                                                         "protocol": "http",
1839                                                         "host": [
1840                                                                 "{{host}}"
1841                                                         ],
1842                                                         "port": "{{port}}",
1843                                                         "path": [
1844                                                                 "api",
1845                                                                 "v1",
1846                                                                 "blueprint-model",
1847                                                                 "search",
1848                                                                 "test"
1849                                                         ]
1850                                                 },
1851                                                 "description": "Searches for all blueprint models which contain the specified input parameter in their tags. Blueprint models which contain just parts of the searched word in their tags are also returned."
1852                                         },
1853                                         "response": [
1854                                                 {
1855                                                         "name": "CDS Bootstrap",
1856                                                         "originalRequest": {
1857                                                                 "method": "POST",
1858                                                                 "header": [
1859                                                                         {
1860                                                                                 "key": "Content-Type",
1861                                                                                 "value": "application/json"
1862                                                                         },
1863                                                                         {
1864                                                                                 "key": "",
1865                                                                                 "value": "",
1866                                                                                 "type": "text",
1867                                                                                 "disabled": true
1868                                                                         }
1869                                                                 ],
1870                                                                 "body": {
1871                                                                         "mode": "raw",
1872                                                                         "raw": "{\r\n\"loadModelType\" : false,\r\n\"loadResourceDictionary\" : true,\r\n\"loadCBA\" : false\r\n}",
1873                                                                         "options": {
1874                                                                                 "raw": {}
1875                                                                         }
1876                                                                 },
1877                                                                 "url": {
1878                                                                         "raw": "http://localhost:8081/api/v1/blueprint-model/bootstrap",
1879                                                                         "protocol": "http",
1880                                                                         "host": [
1881                                                                                 "localhost"
1882                                                                         ],
1883                                                                         "port": "8081",
1884                                                                         "path": [
1885                                                                                 "api",
1886                                                                                 "v1",
1887                                                                                 "blueprint-model",
1888                                                                                 "bootstrap"
1889                                                                         ]
1890                                                                 }
1891                                                         },
1892                                                         "status": "OK",
1893                                                         "code": 200,
1894                                                         "_postman_previewlanguage": "json",
1895                                                         "header": [
1896                                                                 {
1897                                                                         "key": "X-ONAP-RequestID",
1898                                                                         "value": "b73253b6-d2be-4701-bdb2-31fa66b79a01"
1899                                                                 },
1900                                                                 {
1901                                                                         "key": "X-ONAP-InvocationID",
1902                                                                         "value": "b1a59296-fcf2-4435-b8de-9a2e9b9f4077"
1903                                                                 },
1904                                                                 {
1905                                                                         "key": "X-ONAP-PartnerName",
1906                                                                         "value": "cds-controller"
1907                                                                 },
1908                                                                 {
1909                                                                         "key": "Vary",
1910                                                                         "value": "Origin"
1911                                                                 },
1912                                                                 {
1913                                                                         "key": "Vary",
1914                                                                         "value": "Access-Control-Request-Method"
1915                                                                 },
1916                                                                 {
1917                                                                         "key": "Vary",
1918                                                                         "value": "Access-Control-Request-Headers"
1919                                                                 },
1920                                                                 {
1921                                                                         "key": "Content-Type",
1922                                                                         "value": "application/json"
1923                                                                 },
1924                                                                 {
1925                                                                         "key": "Content-Length",
1926                                                                         "value": "0"
1927                                                                 },
1928                                                                 {
1929                                                                         "key": "Cache-Control",
1930                                                                         "value": "no-cache, no-store, max-age=0, must-revalidate"
1931                                                                 },
1932                                                                 {
1933                                                                         "key": "Pragma",
1934                                                                         "value": "no-cache"
1935                                                                 },
1936                                                                 {
1937                                                                         "key": "Expires",
1938                                                                         "value": "0"
1939                                                                 },
1940                                                                 {
1941                                                                         "key": "X-Content-Type-Options",
1942                                                                         "value": "nosniff"
1943                                                                 },
1944                                                                 {
1945                                                                         "key": "X-Frame-Options",
1946                                                                         "value": "DENY"
1947                                                                 },
1948                                                                 {
1949                                                                         "key": "X-XSS-Protection",
1950                                                                         "value": "1 ; mode=block"
1951                                                                 },
1952                                                                 {
1953                                                                         "key": "Referrer-Policy",
1954                                                                         "value": "no-referrer"
1955                                                                 }
1956                                                         ],
1957                                                         "cookie": [],
1958                                                         "body": ""
1959                                                 }
1960                                         ]
1961                                 },
1962                                 {
1963                                         "name": "Get Workflow Specification",
1964                                         "protocolProfileBehavior": {
1965                                                 "disabledSystemHeaders": {}
1966                                         },
1967                                         "request": {
1968                                                 "auth": {
1969                                                         "type": "basic",
1970                                                         "basic": [
1971                                                                 {
1972                                                                         "key": "password",
1973                                                                         "value": "ccsdkapps",
1974                                                                         "type": "string"
1975                                                                 },
1976                                                                 {
1977                                                                         "key": "username",
1978                                                                         "value": "ccsdkapps",
1979                                                                         "type": "string"
1980                                                                 }
1981                                                         ]
1982                                                 },
1983                                                 "method": "POST",
1984                                                 "header": [
1985                                                         {
1986                                                                 "key": "Content-Type",
1987                                                                 "value": "application/json",
1988                                                                 "disabled": true
1989                                                         },
1990                                                         {
1991                                                                 "key": "",
1992                                                                 "type": "text",
1993                                                                 "value": "",
1994                                                                 "disabled": true
1995                                                         }
1996                                                 ],
1997                                                 "body": {
1998                                                         "mode": "raw",
1999                                                         "raw": "{\n    \"blueprintName\" : \"vLB_CDS_KOTLIN\",\n    \"workflowName\": \"config-assign\"\n}",
2000                                                         "options": {
2001                                                                 "raw": {
2002                                                                         "language": "json"
2003                                                                 }
2004                                                         }
2005                                                 },
2006                                                 "url": {
2007                                                         "raw": "http://{{host}}:{{port}}/api/v1/blueprint-model/workflow-spec",
2008                                                         "protocol": "http",
2009                                                         "host": [
2010                                                                 "{{host}}"
2011                                                         ],
2012                                                         "port": "{{port}}",
2013                                                         "path": [
2014                                                                 "api",
2015                                                                 "v1",
2016                                                                 "blueprint-model",
2017                                                                 "workflow-spec"
2018                                                         ]
2019                                                 },
2020                                                 "description": "Get the workflow of a blueprint identified by Blueprint and workflow name. Inputs, outputs and data types of workflow is returned."
2021                                         },
2022                                         "response": [
2023                                                 {
2024                                                         "name": "CDS Bootstrap",
2025                                                         "originalRequest": {
2026                                                                 "method": "POST",
2027                                                                 "header": [
2028                                                                         {
2029                                                                                 "key": "Content-Type",
2030                                                                                 "value": "application/json"
2031                                                                         },
2032                                                                         {
2033                                                                                 "key": "",
2034                                                                                 "value": "",
2035                                                                                 "type": "text",
2036                                                                                 "disabled": true
2037                                                                         }
2038                                                                 ],
2039                                                                 "body": {
2040                                                                         "mode": "raw",
2041                                                                         "raw": "{\r\n\"loadModelType\" : false,\r\n\"loadResourceDictionary\" : true,\r\n\"loadCBA\" : false\r\n}",
2042                                                                         "options": {
2043                                                                                 "raw": {}
2044                                                                         }
2045                                                                 },
2046                                                                 "url": {
2047                                                                         "raw": "http://localhost:8081/api/v1/blueprint-model/bootstrap",
2048                                                                         "protocol": "http",
2049                                                                         "host": [
2050                                                                                 "localhost"
2051                                                                         ],
2052                                                                         "port": "8081",
2053                                                                         "path": [
2054                                                                                 "api",
2055                                                                                 "v1",
2056                                                                                 "blueprint-model",
2057                                                                                 "bootstrap"
2058                                                                         ]
2059                                                                 }
2060                                                         },
2061                                                         "status": "OK",
2062                                                         "code": 200,
2063                                                         "_postman_previewlanguage": "json",
2064                                                         "header": [
2065                                                                 {
2066                                                                         "key": "X-ONAP-RequestID",
2067                                                                         "value": "b73253b6-d2be-4701-bdb2-31fa66b79a01"
2068                                                                 },
2069                                                                 {
2070                                                                         "key": "X-ONAP-InvocationID",
2071                                                                         "value": "b1a59296-fcf2-4435-b8de-9a2e9b9f4077"
2072                                                                 },
2073                                                                 {
2074                                                                         "key": "X-ONAP-PartnerName",
2075                                                                         "value": "cds-controller"
2076                                                                 },
2077                                                                 {
2078                                                                         "key": "Vary",
2079                                                                         "value": "Origin"
2080                                                                 },
2081                                                                 {
2082                                                                         "key": "Vary",
2083                                                                         "value": "Access-Control-Request-Method"
2084                                                                 },
2085                                                                 {
2086                                                                         "key": "Vary",
2087                                                                         "value": "Access-Control-Request-Headers"
2088                                                                 },
2089                                                                 {
2090                                                                         "key": "Content-Type",
2091                                                                         "value": "application/json"
2092                                                                 },
2093                                                                 {
2094                                                                         "key": "Content-Length",
2095                                                                         "value": "0"
2096                                                                 },
2097                                                                 {
2098                                                                         "key": "Cache-Control",
2099                                                                         "value": "no-cache, no-store, max-age=0, must-revalidate"
2100                                                                 },
2101                                                                 {
2102                                                                         "key": "Pragma",
2103                                                                         "value": "no-cache"
2104                                                                 },
2105                                                                 {
2106                                                                         "key": "Expires",
2107                                                                         "value": "0"
2108                                                                 },
2109                                                                 {
2110                                                                         "key": "X-Content-Type-Options",
2111                                                                         "value": "nosniff"
2112                                                                 },
2113                                                                 {
2114                                                                         "key": "X-Frame-Options",
2115                                                                         "value": "DENY"
2116                                                                 },
2117                                                                 {
2118                                                                         "key": "X-XSS-Protection",
2119                                                                         "value": "1 ; mode=block"
2120                                                                 },
2121                                                                 {
2122                                                                         "key": "Referrer-Policy",
2123                                                                         "value": "no-referrer"
2124                                                                 }
2125                                                         ],
2126                                                         "cookie": [],
2127                                                         "body": ""
2128                                                 }
2129                                         ]
2130                                 },
2131                                 {
2132                                         "name": "Get Workflows of a Blueprint",
2133                                         "protocolProfileBehavior": {
2134                                                 "disabledSystemHeaders": {}
2135                                         },
2136                                         "request": {
2137                                                 "auth": {
2138                                                         "type": "basic",
2139                                                         "basic": [
2140                                                                 {
2141                                                                         "key": "password",
2142                                                                         "value": "ccsdkapps",
2143                                                                         "type": "string"
2144                                                                 },
2145                                                                 {
2146                                                                         "key": "username",
2147                                                                         "value": "ccsdkapps",
2148                                                                         "type": "string"
2149                                                                 }
2150                                                         ]
2151                                                 },
2152                                                 "method": "GET",
2153                                                 "header": [
2154                                                         {
2155                                                                 "key": "Content-Type",
2156                                                                 "value": "application/json",
2157                                                                 "disabled": true
2158                                                         },
2159                                                         {
2160                                                                 "key": "",
2161                                                                 "type": "text",
2162                                                                 "value": "",
2163                                                                 "disabled": true
2164                                                         }
2165                                                 ],
2166                                                 "url": {
2167                                                         "raw": "http://{{host}}:{{port}}/api/v1/blueprint-model/workflows/blueprint-name/vLB_CDS_KOTLIN/version/1.0.0",
2168                                                         "protocol": "http",
2169                                                         "host": [
2170                                                                 "{{host}}"
2171                                                         ],
2172                                                         "port": "{{port}}",
2173                                                         "path": [
2174                                                                 "api",
2175                                                                 "v1",
2176                                                                 "blueprint-model",
2177                                                                 "workflows",
2178                                                                 "blueprint-name",
2179                                                                 "vLB_CDS_KOTLIN",
2180                                                                 "version",
2181                                                                 "1.0.0"
2182                                                         ]
2183                                                 },
2184                                                 "description": "Get all available workflows of a Blueprint by its name and version."
2185                                         },
2186                                         "response": [
2187                                                 {
2188                                                         "name": "CDS Bootstrap",
2189                                                         "originalRequest": {
2190                                                                 "method": "POST",
2191                                                                 "header": [
2192                                                                         {
2193                                                                                 "key": "Content-Type",
2194                                                                                 "value": "application/json"
2195                                                                         },
2196                                                                         {
2197                                                                                 "key": "",
2198                                                                                 "value": "",
2199                                                                                 "type": "text",
2200                                                                                 "disabled": true
2201                                                                         }
2202                                                                 ],
2203                                                                 "body": {
2204                                                                         "mode": "raw",
2205                                                                         "raw": "{\r\n\"loadModelType\" : false,\r\n\"loadResourceDictionary\" : true,\r\n\"loadCBA\" : false\r\n}",
2206                                                                         "options": {
2207                                                                                 "raw": {}
2208                                                                         }
2209                                                                 },
2210                                                                 "url": {
2211                                                                         "raw": "http://localhost:8081/api/v1/blueprint-model/bootstrap",
2212                                                                         "protocol": "http",
2213                                                                         "host": [
2214                                                                                 "localhost"
2215                                                                         ],
2216                                                                         "port": "8081",
2217                                                                         "path": [
2218                                                                                 "api",
2219                                                                                 "v1",
2220                                                                                 "blueprint-model",
2221                                                                                 "bootstrap"
2222                                                                         ]
2223                                                                 }
2224                                                         },
2225                                                         "status": "OK",
2226                                                         "code": 200,
2227                                                         "_postman_previewlanguage": "json",
2228                                                         "header": [
2229                                                                 {
2230                                                                         "key": "X-ONAP-RequestID",
2231                                                                         "value": "b73253b6-d2be-4701-bdb2-31fa66b79a01"
2232                                                                 },
2233                                                                 {
2234                                                                         "key": "X-ONAP-InvocationID",
2235                                                                         "value": "b1a59296-fcf2-4435-b8de-9a2e9b9f4077"
2236                                                                 },
2237                                                                 {
2238                                                                         "key": "X-ONAP-PartnerName",
2239                                                                         "value": "cds-controller"
2240                                                                 },
2241                                                                 {
2242                                                                         "key": "Vary",
2243                                                                         "value": "Origin"
2244                                                                 },
2245                                                                 {
2246                                                                         "key": "Vary",
2247                                                                         "value": "Access-Control-Request-Method"
2248                                                                 },
2249                                                                 {
2250                                                                         "key": "Vary",
2251                                                                         "value": "Access-Control-Request-Headers"
2252                                                                 },
2253                                                                 {
2254                                                                         "key": "Content-Type",
2255                                                                         "value": "application/json"
2256                                                                 },
2257                                                                 {
2258                                                                         "key": "Content-Length",
2259                                                                         "value": "0"
2260                                                                 },
2261                                                                 {
2262                                                                         "key": "Cache-Control",
2263                                                                         "value": "no-cache, no-store, max-age=0, must-revalidate"
2264                                                                 },
2265                                                                 {
2266                                                                         "key": "Pragma",
2267                                                                         "value": "no-cache"
2268                                                                 },
2269                                                                 {
2270                                                                         "key": "Expires",
2271                                                                         "value": "0"
2272                                                                 },
2273                                                                 {
2274                                                                         "key": "X-Content-Type-Options",
2275                                                                         "value": "nosniff"
2276                                                                 },
2277                                                                 {
2278                                                                         "key": "X-Frame-Options",
2279                                                                         "value": "DENY"
2280                                                                 },
2281                                                                 {
2282                                                                         "key": "X-XSS-Protection",
2283                                                                         "value": "1 ; mode=block"
2284                                                                 },
2285                                                                 {
2286                                                                         "key": "Referrer-Policy",
2287                                                                         "value": "no-referrer"
2288                                                                 }
2289                                                         ],
2290                                                         "cookie": [],
2291                                                         "body": ""
2292                                                 }
2293                                         ]
2294                                 },
2295                                 {
2296                                         "name": "Get a Blueprint Model by ID",
2297                                         "protocolProfileBehavior": {
2298                                                 "disabledSystemHeaders": {}
2299                                         },
2300                                         "request": {
2301                                                 "auth": {
2302                                                         "type": "basic",
2303                                                         "basic": [
2304                                                                 {
2305                                                                         "key": "password",
2306                                                                         "value": "ccsdkapps",
2307                                                                         "type": "string"
2308                                                                 },
2309                                                                 {
2310                                                                         "key": "username",
2311                                                                         "value": "ccsdkapps",
2312                                                                         "type": "string"
2313                                                                 }
2314                                                         ]
2315                                                 },
2316                                                 "method": "GET",
2317                                                 "header": [
2318                                                         {
2319                                                                 "key": "Content-Type",
2320                                                                 "value": "application/json",
2321                                                                 "disabled": true
2322                                                         },
2323                                                         {
2324                                                                 "key": "",
2325                                                                 "type": "text",
2326                                                                 "value": "",
2327                                                                 "disabled": true
2328                                                         }
2329                                                 ],
2330                                                 "url": {
2331                                                         "raw": "http://{{host}}:{{port}}/api/v1/blueprint-model/416f241d-3ef9-4cb6-8834-956ae4f70b07",
2332                                                         "protocol": "http",
2333                                                         "host": [
2334                                                                 "{{host}}"
2335                                                         ],
2336                                                         "port": "{{port}}",
2337                                                         "path": [
2338                                                                 "api",
2339                                                                 "v1",
2340                                                                 "blueprint-model",
2341                                                                 "416f241d-3ef9-4cb6-8834-956ae4f70b07"
2342                                                         ]
2343                                                 },
2344                                                 "description": "Get a blueprint model by its internally created ID."
2345                                         },
2346                                         "response": [
2347                                                 {
2348                                                         "name": "CDS Bootstrap",
2349                                                         "originalRequest": {
2350                                                                 "method": "POST",
2351                                                                 "header": [
2352                                                                         {
2353                                                                                 "key": "Content-Type",
2354                                                                                 "value": "application/json"
2355                                                                         },
2356                                                                         {
2357                                                                                 "key": "",
2358                                                                                 "value": "",
2359                                                                                 "type": "text",
2360                                                                                 "disabled": true
2361                                                                         }
2362                                                                 ],
2363                                                                 "body": {
2364                                                                         "mode": "raw",
2365                                                                         "raw": "{\r\n\"loadModelType\" : false,\r\n\"loadResourceDictionary\" : true,\r\n\"loadCBA\" : false\r\n}",
2366                                                                         "options": {
2367                                                                                 "raw": {}
2368                                                                         }
2369                                                                 },
2370                                                                 "url": {
2371                                                                         "raw": "http://localhost:8081/api/v1/blueprint-model/bootstrap",
2372                                                                         "protocol": "http",
2373                                                                         "host": [
2374                                                                                 "localhost"
2375                                                                         ],
2376                                                                         "port": "8081",
2377                                                                         "path": [
2378                                                                                 "api",
2379                                                                                 "v1",
2380                                                                                 "blueprint-model",
2381                                                                                 "bootstrap"
2382                                                                         ]
2383                                                                 }
2384                                                         },
2385                                                         "status": "OK",
2386                                                         "code": 200,
2387                                                         "_postman_previewlanguage": "json",
2388                                                         "header": [
2389                                                                 {
2390                                                                         "key": "X-ONAP-RequestID",
2391                                                                         "value": "b73253b6-d2be-4701-bdb2-31fa66b79a01"
2392                                                                 },
2393                                                                 {
2394                                                                         "key": "X-ONAP-InvocationID",
2395                                                                         "value": "b1a59296-fcf2-4435-b8de-9a2e9b9f4077"
2396                                                                 },
2397                                                                 {
2398                                                                         "key": "X-ONAP-PartnerName",
2399                                                                         "value": "cds-controller"
2400                                                                 },
2401                                                                 {
2402                                                                         "key": "Vary",
2403                                                                         "value": "Origin"
2404                                                                 },
2405                                                                 {
2406                                                                         "key": "Vary",
2407                                                                         "value": "Access-Control-Request-Method"
2408                                                                 },
2409                                                                 {
2410                                                                         "key": "Vary",
2411                                                                         "value": "Access-Control-Request-Headers"
2412                                                                 },
2413                                                                 {
2414                                                                         "key": "Content-Type",
2415                                                                         "value": "application/json"
2416                                                                 },
2417                                                                 {
2418                                                                         "key": "Content-Length",
2419                                                                         "value": "0"
2420                                                                 },
2421                                                                 {
2422                                                                         "key": "Cache-Control",
2423                                                                         "value": "no-cache, no-store, max-age=0, must-revalidate"
2424                                                                 },
2425                                                                 {
2426                                                                         "key": "Pragma",
2427                                                                         "value": "no-cache"
2428                                                                 },
2429                                                                 {
2430                                                                         "key": "Expires",
2431                                                                         "value": "0"
2432                                                                 },
2433                                                                 {
2434                                                                         "key": "X-Content-Type-Options",
2435                                                                         "value": "nosniff"
2436                                                                 },
2437                                                                 {
2438                                                                         "key": "X-Frame-Options",
2439                                                                         "value": "DENY"
2440                                                                 },
2441                                                                 {
2442                                                                         "key": "X-XSS-Protection",
2443                                                                         "value": "1 ; mode=block"
2444                                                                 },
2445                                                                 {
2446                                                                         "key": "Referrer-Policy",
2447                                                                         "value": "no-referrer"
2448                                                                 }
2449                                                         ],
2450                                                         "cookie": [],
2451                                                         "body": ""
2452                                                 }
2453                                         ]
2454                                 },
2455                                 {
2456                                         "name": "Delete a Blueprint Model by its ID",
2457                                         "protocolProfileBehavior": {
2458                                                 "disabledSystemHeaders": {}
2459                                         },
2460                                         "request": {
2461                                                 "auth": {
2462                                                         "type": "basic",
2463                                                         "basic": [
2464                                                                 {
2465                                                                         "key": "password",
2466                                                                         "value": "ccsdkapps",
2467                                                                         "type": "string"
2468                                                                 },
2469                                                                 {
2470                                                                         "key": "username",
2471                                                                         "value": "ccsdkapps",
2472                                                                         "type": "string"
2473                                                                 }
2474                                                         ]
2475                                                 },
2476                                                 "method": "DELETE",
2477                                                 "header": [
2478                                                         {
2479                                                                 "key": "Content-Type",
2480                                                                 "value": "application/json",
2481                                                                 "disabled": true
2482                                                         },
2483                                                         {
2484                                                                 "key": "",
2485                                                                 "type": "text",
2486                                                                 "value": "",
2487                                                                 "disabled": true
2488                                                         }
2489                                                 ],
2490                                                 "url": {
2491                                                         "raw": "http://{{host}}:{{port}}/api/v1/blueprint-model/416f241d-3ef9-4cb6-8834-956ae4f70b07",
2492                                                         "protocol": "http",
2493                                                         "host": [
2494                                                                 "{{host}}"
2495                                                         ],
2496                                                         "port": "{{port}}",
2497                                                         "path": [
2498                                                                 "api",
2499                                                                 "v1",
2500                                                                 "blueprint-model",
2501                                                                 "416f241d-3ef9-4cb6-8834-956ae4f70b07"
2502                                                         ]
2503                                                 },
2504                                                 "description": "Delete a blueprint model a a given ID. ID is the internally created ID of blueprint, not the name of blueprint."
2505                                         },
2506                                         "response": [
2507                                                 {
2508                                                         "name": "CDS Bootstrap",
2509                                                         "originalRequest": {
2510                                                                 "method": "POST",
2511                                                                 "header": [
2512                                                                         {
2513                                                                                 "key": "Content-Type",
2514                                                                                 "value": "application/json"
2515                                                                         },
2516                                                                         {
2517                                                                                 "key": "",
2518                                                                                 "value": "",
2519                                                                                 "type": "text",
2520                                                                                 "disabled": true
2521                                                                         }
2522                                                                 ],
2523                                                                 "body": {
2524                                                                         "mode": "raw",
2525                                                                         "raw": "{\r\n\"loadModelType\" : false,\r\n\"loadResourceDictionary\" : true,\r\n\"loadCBA\" : false\r\n}",
2526                                                                         "options": {
2527                                                                                 "raw": {}
2528                                                                         }
2529                                                                 },
2530                                                                 "url": {
2531                                                                         "raw": "http://localhost:8081/api/v1/blueprint-model/bootstrap",
2532                                                                         "protocol": "http",
2533                                                                         "host": [
2534                                                                                 "localhost"
2535                                                                         ],
2536                                                                         "port": "8081",
2537                                                                         "path": [
2538                                                                                 "api",
2539                                                                                 "v1",
2540                                                                                 "blueprint-model",
2541                                                                                 "bootstrap"
2542                                                                         ]
2543                                                                 }
2544                                                         },
2545                                                         "status": "OK",
2546                                                         "code": 200,
2547                                                         "_postman_previewlanguage": "json",
2548                                                         "header": [
2549                                                                 {
2550                                                                         "key": "X-ONAP-RequestID",
2551                                                                         "value": "b73253b6-d2be-4701-bdb2-31fa66b79a01"
2552                                                                 },
2553                                                                 {
2554                                                                         "key": "X-ONAP-InvocationID",
2555                                                                         "value": "b1a59296-fcf2-4435-b8de-9a2e9b9f4077"
2556                                                                 },
2557                                                                 {
2558                                                                         "key": "X-ONAP-PartnerName",
2559                                                                         "value": "cds-controller"
2560                                                                 },
2561                                                                 {
2562                                                                         "key": "Vary",
2563                                                                         "value": "Origin"
2564                                                                 },
2565                                                                 {
2566                                                                         "key": "Vary",
2567                                                                         "value": "Access-Control-Request-Method"
2568                                                                 },
2569                                                                 {
2570                                                                         "key": "Vary",
2571                                                                         "value": "Access-Control-Request-Headers"
2572                                                                 },
2573                                                                 {
2574                                                                         "key": "Content-Type",
2575                                                                         "value": "application/json"
2576                                                                 },
2577                                                                 {
2578                                                                         "key": "Content-Length",
2579                                                                         "value": "0"
2580                                                                 },
2581                                                                 {
2582                                                                         "key": "Cache-Control",
2583                                                                         "value": "no-cache, no-store, max-age=0, must-revalidate"
2584                                                                 },
2585                                                                 {
2586                                                                         "key": "Pragma",
2587                                                                         "value": "no-cache"
2588                                                                 },
2589                                                                 {
2590                                                                         "key": "Expires",
2591                                                                         "value": "0"
2592                                                                 },
2593                                                                 {
2594                                                                         "key": "X-Content-Type-Options",
2595                                                                         "value": "nosniff"
2596                                                                 },
2597                                                                 {
2598                                                                         "key": "X-Frame-Options",
2599                                                                         "value": "DENY"
2600                                                                 },
2601                                                                 {
2602                                                                         "key": "X-XSS-Protection",
2603                                                                         "value": "1 ; mode=block"
2604                                                                 },
2605                                                                 {
2606                                                                         "key": "Referrer-Policy",
2607                                                                         "value": "no-referrer"
2608                                                                 }
2609                                                         ],
2610                                                         "cookie": [],
2611                                                         "body": ""
2612                                                 }
2613                                         ]
2614                                 }
2615                         ],
2616                         "description": "Manages all blueprint models which are available in CDS",
2617                         "protocolProfileBehavior": {}
2618                 },
2619                 {
2620                         "name": "List all endpoints",
2621                         "request": {
2622                                 "auth": {
2623                                         "type": "basic",
2624                                         "basic": [
2625                                                 {
2626                                                         "key": "username",
2627                                                         "value": "ccsdkapps",
2628                                                         "type": "string"
2629                                                 },
2630                                                 {
2631                                                         "key": "password",
2632                                                         "value": "ccsdkapps",
2633                                                         "type": "string"
2634                                                 },
2635                                                 {
2636                                                         "key": "showPassword",
2637                                                         "value": false,
2638                                                         "type": "boolean"
2639                                                 }
2640                                         ]
2641                                 },
2642                                 "method": "GET",
2643                                 "header": [],
2644                                 "url": {
2645                                         "raw": "http://{{host}}:{{port}}/actuator/mappings",
2646                                         "protocol": "http",
2647                                         "host": [
2648                                                 "{{host}}"
2649                                         ],
2650                                         "port": "{{port}}",
2651                                         "path": [
2652                                                 "actuator",
2653                                                 "mappings"
2654                                         ]
2655                                 },
2656                                 "description": "Lists all available endpoints from blueprints processor API."
2657                         },
2658                         "response": []
2659                 }
2660         ],
2661         "event": [
2662                 {
2663                         "listen": "prerequest",
2664                         "script": {
2665                                 "id": "ac0bd38e-a1ae-48ea-9a99-e09c59dada9a",
2666                                 "type": "text/javascript",
2667                                 "exec": [
2668                                         ""
2669                                 ]
2670                         }
2671                 },
2672                 {
2673                         "listen": "test",
2674                         "script": {
2675                                 "id": "ce5f2837-00f5-4dde-9a45-2460c6cebd12",
2676                                 "type": "text/javascript",
2677                                 "exec": [
2678                                         ""
2679                                 ]
2680                         }
2681                 }
2682         ],
2683         "variable": [
2684                 {
2685                         "id": "86d601d8-fded-49c0-8870-545b57019003",
2686                         "key": "host",
2687                         "value": "localhost"
2688                 },
2689                 {
2690                         "id": "b53854bd-6fbb-42bb-a001-9b77a3883cf8",
2691                         "key": "port",
2692                         "value": "8081"
2693                 }
2694         ],
2695         "protocolProfileBehavior": {}
2696 }