blob: 4a6d17293e4ae59db418e773592a6898e7d72e23 [file] [log] [blame]
puthuparambil.aditya39450c52022-03-29 11:22:31 +01001# ============LICENSE_START=======================================================
leventecsanyifff80c02023-04-05 11:42:30 +02002# Copyright (C) 2021-2023 Nordix Foundation
puthuparambil.aditya39450c52022-03-29 11:22:31 +01003# Modifications Copyright (C) 2022 Bell Canada
4# ================================================================================
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17# SPDX-License-Identifier: Apache-2.0
18# ============LICENSE_END=========================================================
19
DylanB95ESTb5a23832021-06-02 19:45:46 +010020components:
JosephKeenandfe45ff2022-10-26 15:17:59 +010021 securitySchemes:
22 basicAuth:
23 type: http
24 scheme: basic
DylanB95ESTb5a23832021-06-02 19:45:46 +010025 schemas:
26 ErrorMessage:
27 type: object
28 title: Error
29 properties:
30 status:
31 type: string
32 message:
33 type: string
34 details:
35 type: string
36
tragait2270d762021-07-08 15:42:19 +010037 CmHandles:
38 type: object
39 properties:
40 cmHandles:
41 type: array
lukegleeson996152a2021-11-30 17:06:03 +000042 example: ["cmHandleId1","cmHandleId2","cmHandleId3"]
tragait2270d762021-07-08 15:42:19 +010043 items:
44 type: string
45
niamhcoreacc0f8b2021-10-06 09:49:12 +010046 ModuleReferencesRequest:
niamhcore3139ece2021-07-30 16:25:16 +010047 type: object
48 properties:
leventecsanyi8db6a302024-04-02 14:37:57 +020049 moduleSetTag:
50 type: string
niamhcoreacc0f8b2021-10-06 09:49:12 +010051 cmHandleProperties:
52 $ref: '#/components/schemas/cmHandleProperties'
53
raviteja.karumuri97843842023-06-19 16:43:32 +010054 ResourceDataOperationRequests:
raviteja.karumuri7272f112023-05-24 18:23:38 +010055 type: array
56 items:
57 type: object
raviteja.karumuri97843842023-06-19 16:43:32 +010058 title: 'DataOperationRequest'
raviteja.karumuri7272f112023-05-24 18:23:38 +010059 properties:
60 operation:
61 type: string
62 example: 'read'
63 operationId:
64 description: 'it is recommended that the operationId is unique within the scope of the request'
65 type: string
66 example: '12'
67 datastore:
68 type: string
69 example: 'ncmp-datastore:passthrough-operational'
70 options:
71 type: string
72 example: 'some option'
73 resourceIdentifier:
74 type: string
75 example: 'some resource identifier'
76 cmHandles:
77 type: array
78 items:
david.mcweeney3cadc192024-05-08 12:37:02 +010079 $ref: '#/components/schemas/dmiOperationCmHandle'
raviteja.karumuri7272f112023-05-24 18:23:38 +010080 required:
81 - operation
82 - operationId
83 - datastore
84 - cmHandles
85
david.mcweeney3cadc192024-05-08 12:37:02 +010086 dmiOperationCmHandle:
raviteja.karumuri7272f112023-05-24 18:23:38 +010087 type: object
david.mcweeney3cadc192024-05-08 12:37:02 +010088 title: 'CmHandle with properties for DMI'
raviteja.karumuri7272f112023-05-24 18:23:38 +010089 properties:
90 id:
91 type: string
92 cmHandleProperties:
93 additionalProperties:
94 type: string
david.mcweeney3cadc192024-05-08 12:37:02 +010095 moduleSetTag:
96 type: string
97 example: module-set-tag1
raviteja.karumuri7272f112023-05-24 18:23:38 +010098 example:
99 id: cmHandle123
100 cmHandleProperties:
101 myProp: some value
102 otherProp: other value
david.mcweeney3cadc192024-05-08 12:37:02 +0100103 moduleSetTag: module-set-tag1
raviteja.karumuri7272f112023-05-24 18:23:38 +0100104
niamhcoreacc0f8b2021-10-06 09:49:12 +0100105 ModuleResourcesReadRequest:
106 type: object
107 properties:
david.mcweeneyee0c3be2024-04-30 10:24:41 +0100108 moduleSetTag:
109 type: string
110 description: Module set tag of the given cm handle
111 example: Module-set-tag-1
112 required: false
niamhcore3139ece2021-07-30 16:25:16 +0100113 data:
114 type: object
115 properties:
116 modules:
117 type: array
118 items:
119 type: object
120 properties:
121 name:
lukegleeson996152a2021-11-30 17:06:03 +0000122 type: string
123 example: my-name
niamhcore3139ece2021-07-30 16:25:16 +0100124 revision:
lukegleeson996152a2021-11-30 17:06:03 +0000125 type: string
126 example: my-revision
niamhcore3139ece2021-07-30 16:25:16 +0100127 cmHandleProperties:
tragait907e3782021-10-04 16:02:57 +0100128 $ref: '#/components/schemas/cmHandleProperties'
niamhcore3139ece2021-07-30 16:25:16 +0100129
niamhcore577efb02021-08-11 16:13:53 +0100130 ModuleSet:
131 type: object
132 properties:
133 schemas:
134 type: array
135 items:
136 type: object
137 properties:
138 moduleName:
139 type: string
lukegleeson996152a2021-11-30 17:06:03 +0000140 example: my-module-name
niamhcore577efb02021-08-11 16:13:53 +0100141 revision:
lukegleeson996152a2021-11-30 17:06:03 +0000142 type: string
143 example: my-revision
niamhcore577efb02021-08-11 16:13:53 +0100144 namespace:
145 type: string
lukegleeson996152a2021-11-30 17:06:03 +0000146 example: my-namespace
niamhcore577efb02021-08-11 16:13:53 +0100147
niamhcore4f431882021-09-21 16:08:29 +0100148 YangResources:
149 type: array
150 items:
niamhcore4f431882021-09-21 16:08:29 +0100151 $ref: '#/components/schemas/YangResource'
152
153 YangResource:
154 properties:
155 yangSource:
156 type: string
lukegleeson996152a2021-11-30 17:06:03 +0000157 example: my-yang-source
niamhcore4f431882021-09-21 16:08:29 +0100158 moduleName:
159 type: string
lukegleeson996152a2021-11-30 17:06:03 +0000160 example: my-module-name
niamhcore4f431882021-09-21 16:08:29 +0100161 revision:
lukegleeson996152a2021-11-30 17:06:03 +0000162 type: string
163 example: my-revision
niamhcore4f431882021-09-21 16:08:29 +0100164
DylanB95EST5fe0dae2021-11-09 13:54:35 +0000165 DataAccessRequest:
tragaite398be52021-08-06 17:01:31 +0100166 type: object
167 properties:
168 operation:
169 type: string
tragaitdffff5d2022-01-10 12:16:25 +0000170 enum: [ read, create, update, patch, delete ]
lukegleeson996152a2021-11-30 17:06:03 +0000171 example: read
niamhcore79e41e02021-08-20 11:24:06 +0100172 dataType:
173 type: string
lukegleeson996152a2021-11-30 17:06:03 +0000174 example: my-data-type
niamhcore79e41e02021-08-20 11:24:06 +0100175 data:
tragaitfa11e9c2021-09-14 13:47:52 +0100176 type: string
lukegleeson996152a2021-11-30 17:06:03 +0000177 example: my-data
niamhcore79e41e02021-08-20 11:24:06 +0100178 cmHandleProperties:
tragait907e3782021-10-04 16:02:57 +0100179 $ref: '#/components/schemas/cmHandleProperties'
mpriyank78e1d062022-04-08 15:12:22 +0530180 requestId:
181 type: string
JosephKeenan2cd8b982022-05-23 15:43:05 +0100182 example: 3a9ce55c-e365-4dc9-8da3-a06f07cbc6d7
david.mcweeneyefe96fa2024-05-28 10:45:02 +0100183 moduleSetTag:
184 type: string
185 example: module-set-tag1
tragait907e3782021-10-04 16:02:57 +0100186
187 cmHandleProperties:
188 type: object
egernug1118bed2023-06-28 10:57:53 +0100189 nullable: true
tragait907e3782021-10-04 16:02:57 +0100190 additionalProperties:
191 type: string
192 example: {"prop1":"value1","prop2":"value2"}
niamhcore79e41e02021-08-20 11:24:06 +0100193
DylanB95ESTb5a23832021-06-02 19:45:46 +0100194 responses:
lukegleeson996152a2021-11-30 17:06:03 +0000195 NoContent:
196 description: No Content
197 content: {}
raviteja.karumuri7272f112023-05-24 18:23:38 +0100198
DylanB95ESTb5a23832021-06-02 19:45:46 +0100199 BadRequest:
200 description: Bad Request
201 content:
202 application/json:
203 schema:
204 $ref: '#/components/schemas/ErrorMessage'
lukegleeson996152a2021-11-30 17:06:03 +0000205 example:
206 status: 400
207 message: Bad Request
208 details: The provided request is not valid
raviteja.karumuri7272f112023-05-24 18:23:38 +0100209
lukegleeson996152a2021-11-30 17:06:03 +0000210 NotFound:
211 description: The specified resource was not found
212 content:
213 application/json:
214 schema:
215 $ref: '#/components/schemas/ErrorMessage'
216 example:
217 status: 404
218 message: Resource Not Found
219 details: The requested resource is not found
raviteja.karumuri7272f112023-05-24 18:23:38 +0100220
puthuparambil.adityabdcccb52022-01-20 15:26:52 +0000221 ServerError:
222 description: Internal Server Error
DylanB95ESTb5a23832021-06-02 19:45:46 +0100223 content:
224 application/json:
225 schema:
226 $ref: '#/components/schemas/ErrorMessage'
lukegleeson996152a2021-11-30 17:06:03 +0000227 example:
puthuparambil.adityabdcccb52022-01-20 15:26:52 +0000228 status: 500
229 message: Internal Server Error
230 details: Internal Server Error occured
raviteja.karumuri7272f112023-05-24 18:23:38 +0100231
leventecsanyifff80c02023-04-05 11:42:30 +0200232 NotImplemented:
233 description: Not Implemented
234 content:
235 application/json:
236 schema:
237 $ref: '#/components/schemas/ErrorMessage'
238 example:
239 status: 501
240 message: Not Implemented
241 details: Method Not Implemented
raviteja.karumuri7272f112023-05-24 18:23:38 +0100242
niamhcore3139ece2021-07-30 16:25:16 +0100243 parameters:
244 cmHandleInPath:
245 name: cmHandle
246 in: path
247 description: The identifier for a network function, network element, subnetwork, or any other cm object by managed Network CM Proxy
248 required: true
249 schema:
tragaitf01d5672021-08-19 11:19:54 +0100250 type: string
lukegleeson996152a2021-11-30 17:06:03 +0000251 example: my-cm-handle
tragaitf01d5672021-08-19 11:19:54 +0100252
niamhcore2fb3f662021-09-29 15:32:32 +0100253 resourceIdentifierInQuery:
tragaitf01d5672021-08-19 11:19:54 +0100254 name: resourceIdentifier
niamhcore2fb3f662021-09-29 15:32:32 +0100255 in: query
tragaitf01d5672021-08-19 11:19:54 +0100256 description: Resource identifier to get/set the resource data
257 required: true
258 schema:
259 type: string
lukegleeson996152a2021-11-30 17:06:03 +0000260 example: my-schema:my-node
tragaitf01d5672021-08-19 11:19:54 +0100261
tragait907e3782021-10-04 16:02:57 +0100262 optionsParamInQuery:
263 name: options
tragaitf01d5672021-08-19 11:19:54 +0100264 in: query
tragait907e3782021-10-04 16:02:57 +0100265 description: options parameter in query, it is mandatory to wrap key(s)=value(s) in parenthesis'()'.
tragaitf01d5672021-08-19 11:19:54 +0100266 required: false
267 schema:
268 type: string
tragait907e3782021-10-04 16:02:57 +0100269 examples:
270 sample1:
271 value:
272 options: (key1=value1,key2=value2)
273 sample2:
274 value:
275 options: (key1=value1,key2=value1/value2)
276 sample3:
277 value:
mpriyank78e1d062022-04-08 15:12:22 +0530278 options: (key1=10,key2=value2,key3=val31,val32)
raviteja.karumuri7272f112023-05-24 18:23:38 +0100279
mpriyank78e1d062022-04-08 15:12:22 +0530280 topicParamInQuery:
JosephKeenan2cd8b982022-05-23 15:43:05 +0100281 name: topic
mpriyank78e1d062022-04-08 15:12:22 +0530282 in: query
mpriyank7b7297c2022-09-14 10:47:45 +0100283 description: topic name passed from client(NCMP).
mpriyank78e1d062022-04-08 15:12:22 +0530284 required: false
285 schema:
286 type: string
mpriyank78e1d062022-04-08 15:12:22 +0530287 examples:
288 sample1:
JosephKeenan2cd8b982022-05-23 15:43:05 +0100289 value: my-topic-name
raviteja.karumuri7272f112023-05-24 18:23:38 +0100290
291 requiredTopicParamInQuery:
292 name: topic
293 in: query
294 description: mandatory topic name passed from client(NCMP).
295 required: true
296 schema:
297 type: string
raviteja.karumuri7272f112023-05-24 18:23:38 +0100298 examples:
299 sample1:
300 value:
301 topic: my-topic-name
302
303 requiredRequestIdParamInQuery:
304 name: requestId
305 in: query
306 description: request Id generated by NCMP and sent as an acknowledgement for the client request the same including here.
307 required: true
308 schema:
309 type: string
raviteja.karumuri7272f112023-05-24 18:23:38 +0100310 examples:
311 sample1:
312 value: 4753fc1f-7de2-449a-b306-a6204b5370b3
313
sourabh_sourabhe648aba2023-03-13 15:49:35 +0000314 datastoreName:
315 name: datastore-name
316 in: path
317 description: The type of the requested data
318 required: true
319 schema:
320 type: string
321 example: ncmp-datastore:passthrough-operational or ncmp-datastore:passthrough-running
JosephKeenandfe45ff2022-10-26 15:17:59 +0100322
323security:
ToineSiebelink190c30c2024-05-22 11:54:23 +0100324 - basicAuth: []