aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-reference/bp-processor.rst
blob: 2789825e0ab153ef2a008c47ff9d59e5e2946cae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
.. This work is licensed under a Creative Commons Attribution 4.0
.. International License. http://creativecommons.org/licenses/by/4.0
.. Copyright (C) 2020 Deutsche Telekom AG.

Blueprint Processor API Reference
==================================

Introduction
--------------

This section shows all resources and endpoints which CDS BP processor currently provides with sample requests/responses,
parameter description and other information. If there is a new API and you want do document it, you can use this template
:download:`rst <api-doc-template.rst>`.

Authentification
-----------------

Use Basic athentification with `ccsdkapps` as a username and password, in Header ``Authorization: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==``.

Download
------------

You can find a postman collection including sample requests here: :download:`JSON <media/bp-processor.postman_collection.json>`

General Setup
--------------

All endpoints are accessable under ``http://{{host}}:{{port}}/api/v1/``. Host and port depends on your CDS BP processor
deployment.


List all endpoints
-------------------

Lists all available endpoints from blueprints processor API.


Request
~~~~~~~~~~

GET ``http://{{host}}:{{port}}/actuator/mappings``
....................................................

Lists all endpoints from blueprints processor.

.. code-block:: curl
   :caption: **request**

   curl --location --request GET 'http://localhost:8081/actuator/mappings' \
   --header 'Authorization: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw=='


Success Response
~~~~~~~~~~~~~~~~~

HTTP Status 202 OK

.. code-block:: json
   :caption: **sample response body**

   {
      "contexts": {
         "application": {
               "mappings": {
                  "dispatcherHandlers": {
                     "webHandler": [

                           ...

                           {
                              "predicate": "{GET /api/v1/blueprint-model, produces [application/json]}",
                              "handler": "org.onap.ccsdk.cds.blueprintsprocessor.designer.api.BlueprintModelController#allBlueprintModel()",
                              "details": {
                                 "handlerMethod": {
                                       "className": "org.onap.ccsdk.cds.blueprintsprocessor.designer.api.BlueprintModelController",
                                       "name": "allBlueprintModel",
                                       "descriptor": "()Ljava/util/List;"
                                 },
                                 "handlerFunction": null,
                                 "requestMappingConditions": {
                                       "consumes": [],
                                       "headers": [],
                                       "methods": [
                                          "GET"
                                       ],
                                       "params": [],
                                       "patterns": [
                                          "/api/v1/blueprint-model"
                                       ],
                                       "produces": [
                                          {
                                             "mediaType": "application/json",
                                             "negated": false
                                          }
                                       ]
                                 }
                              }
                           },
                           {
                              "predicate": "{GET /api/v1/blueprint-model/meta-data/{keyword}, produces [application/json]}",
                              "handler": "org.onap.ccsdk.cds.blueprintsprocessor.designer.api.BlueprintModelController#allBlueprintModelMetaData(String, Continuation)",
                              "details": {
                                 "handlerMethod": {
                                       "className": "org.onap.ccsdk.cds.blueprintsprocessor.designer.api.BlueprintModelController",
                                       "name": "allBlueprintModelMetaData",
                                       "descriptor": "(Ljava/lang/String;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;"
                                 },
                                 "handlerFunction": null,
                                 "requestMappingConditions": {
                                       "consumes": [],
                                       "headers": [],
                                       "methods": [
                                          "GET"
                                       ],
                                       "params": [],
                                       "patterns": [
                                          "/api/v1/blueprint-model/meta-data/{keyword}"
                                       ],
                                       "produces": [
                                          {
                                             "mediaType": "application/json",
                                             "negated": false
                                          }
                                       ]
                                 }
                              }
                           }

                           ...

                     ]
                  }
               },
               "parentId": null
         }
      }
   }

Blueprint Model Catalog API
----------------------------

Blueprint-model resource contains all Controller Blueprints Archive (CBA) packages which are available in CDS.
With blueprint-model API you can manage your CBAs.

Bootstrap
~~~~~~~~~~~

POST ``/blueprint-model/bootstrap``
....................................

Loads all Model Types, Resource Dictionaries and CBAs which are included in CDS by default.


Request
...........

.. code-block:: curl
   :caption: **sample request**

   curl --location --request POST 'http://localhost:8081/api/v1/blueprint-model/bootstrap' \
   --header 'Authorization: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==' \
   --header 'Content-Type: application/json' \
   --data-raw '{
   "loadModelType" : true,
   "loadResourceDictionary" : true,
   "loadCBA" : true
   }'

**Request Body Parameters:**

.. list-table::
   :widths: 20 20 20 40
   :header-rows: 1

   * - Parameter
     - Type
     - Required
     - Description
   * - loadModelType
     - Boolean
     - yes
     - Specifies if default model types should be loaded
   * - loadResourceDictionary
     - Boolean
     - Yes
     - Specifies if default data dictionaries should be loaded
   * - loadCBA
     - Boolean
     - Yes
     - Specifies if default CBAs should be loaded

Success Response
......................

HTTP Status 202 OK


Consumes
............

``application/json``


Functional Description
..............................

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 Dictioniaries but this is not recommended.
The loaded CBAs are already enriched, that's why CBAs can be loaded even without Data Dictionaries or Model Types. If
validation of a CBA fails the CBA is skipped and the call is still executed successfully. You can find the error logs e.g.
in the console of an IDE.


Technical Description
...........................

All Model Types which are loaded by bootstrap are in folder `/components/model-catalog/definition-type/starter-type`,
all Resource Dictionaries in `components/model-catalog/resource-dictionary/starter-dictionary`, all CBAs in
`model-catalog/blueprint-model/service-blueprint`.

**Called class/method:** ``org.onap.ccsdk.cds.blueprintsprocessor.designer.api.BlueprintModelController#bootstrap``.

Related topics
..................

.. toctree::
   :maxdepth: 1

   ../modelingconcepts/cba
   ../modelingconcepts/data-dictionary
   ../modelingconcepts/data-type


List all blueprint models
~~~~~~~~~~~~~~~~~~~~~~~~~~~


GET ``/blueprint-model``
..............................

Lists all blueprint models which are saved in CDS.

Request
...........

.. code-block:: curl
   :caption: **request**

   curl --location --request GET 'http://{{ip_adress}}:{{port}}/api/v1/blueprint-model' \
   --header 'Authorization: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw=='

Produces
...........

``application/json``


Success Response
......................

HTTP Status 200 OK

.. code-block:: json
   :caption: **example response**

   [
    {
        "blueprintModel": {
            "id": "109e725d-5145-4f70-a2e7-ee6640e2fb5f",
            "artifactUUId": null,
            "artifactType": "SDNC_MODEL",
            "artifactVersion": "1.0.0",
            "artifactDescription": "",
            "internalVersion": null,
            "createdDate": "2020-11-09T19:00:20.000Z",
            "artifactName": "vLB_CDS_RESTCONF",
            "published": "Y",
            "updatedBy": "DanielEmmarts>",
            "tags": "vLB-CDS"
        }
    },
    {
        "blueprintModel": {
            "id": "5cce3804-09eb-473d-b513-81f8547a7240",
            "artifactUUId": null,
            "artifactType": "SDNC_MODEL",
            "artifactVersion": "1.0.0",
            "artifactDescription": "",
            "internalVersion": null,
            "createdDate": "2020-11-09T19:00:20.000Z",
            "artifactName": "vLB_CDS",
            "published": "Y",
            "updatedBy": "TomKennedy>",
            "tags": "vLB_CDS"
        }
    }
   ]

Technical Description
...........................

Loads all Blueprint Models which are saved in the CDS database in table `BLUEPRINT_MODEL`. Unpublished and unproceeded
Blueprint Models are also included.
**Called class/method:** ``org.onap.ccsdk.cds.blueprintsprocessor.designer.api.BlueprintModelController#allBlueprintModel()``.