blob: e011b16d483979579c83823d4101787b642658e9 [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:
79 $ref: '#/components/schemas/cmHandle'
80 required:
81 - operation
82 - operationId
83 - datastore
84 - cmHandles
85
86 cmHandle:
87 type: object
88 title: 'cmHandle'
89 properties:
90 id:
91 type: string
92 cmHandleProperties:
93 additionalProperties:
94 type: string
95 example:
96 id: cmHandle123
97 cmHandleProperties:
98 myProp: some value
99 otherProp: other value
100
niamhcoreacc0f8b2021-10-06 09:49:12 +0100101 ModuleResourcesReadRequest:
102 type: object
103 properties:
david.mcweeneyee0c3be2024-04-30 10:24:41 +0100104 moduleSetTag:
105 type: string
106 description: Module set tag of the given cm handle
107 example: Module-set-tag-1
108 required: false
niamhcore3139ece2021-07-30 16:25:16 +0100109 data:
110 type: object
111 properties:
112 modules:
113 type: array
114 items:
115 type: object
116 properties:
117 name:
lukegleeson996152a2021-11-30 17:06:03 +0000118 type: string
119 example: my-name
niamhcore3139ece2021-07-30 16:25:16 +0100120 revision:
lukegleeson996152a2021-11-30 17:06:03 +0000121 type: string
122 example: my-revision
niamhcore3139ece2021-07-30 16:25:16 +0100123 cmHandleProperties:
tragait907e3782021-10-04 16:02:57 +0100124 $ref: '#/components/schemas/cmHandleProperties'
niamhcore3139ece2021-07-30 16:25:16 +0100125
niamhcore577efb02021-08-11 16:13:53 +0100126 ModuleSet:
127 type: object
128 properties:
129 schemas:
130 type: array
131 items:
132 type: object
133 properties:
134 moduleName:
135 type: string
lukegleeson996152a2021-11-30 17:06:03 +0000136 example: my-module-name
niamhcore577efb02021-08-11 16:13:53 +0100137 revision:
lukegleeson996152a2021-11-30 17:06:03 +0000138 type: string
139 example: my-revision
niamhcore577efb02021-08-11 16:13:53 +0100140 namespace:
141 type: string
lukegleeson996152a2021-11-30 17:06:03 +0000142 example: my-namespace
niamhcore577efb02021-08-11 16:13:53 +0100143
niamhcore4f431882021-09-21 16:08:29 +0100144 YangResources:
145 type: array
146 items:
niamhcore4f431882021-09-21 16:08:29 +0100147 $ref: '#/components/schemas/YangResource'
148
149 YangResource:
150 properties:
151 yangSource:
152 type: string
lukegleeson996152a2021-11-30 17:06:03 +0000153 example: my-yang-source
niamhcore4f431882021-09-21 16:08:29 +0100154 moduleName:
155 type: string
lukegleeson996152a2021-11-30 17:06:03 +0000156 example: my-module-name
niamhcore4f431882021-09-21 16:08:29 +0100157 revision:
lukegleeson996152a2021-11-30 17:06:03 +0000158 type: string
159 example: my-revision
niamhcore4f431882021-09-21 16:08:29 +0100160
DylanB95EST5fe0dae2021-11-09 13:54:35 +0000161 DataAccessRequest:
tragaite398be52021-08-06 17:01:31 +0100162 type: object
163 properties:
164 operation:
165 type: string
tragaitdffff5d2022-01-10 12:16:25 +0000166 enum: [ read, create, update, patch, delete ]
lukegleeson996152a2021-11-30 17:06:03 +0000167 example: read
niamhcore79e41e02021-08-20 11:24:06 +0100168 dataType:
169 type: string
lukegleeson996152a2021-11-30 17:06:03 +0000170 example: my-data-type
niamhcore79e41e02021-08-20 11:24:06 +0100171 data:
tragaitfa11e9c2021-09-14 13:47:52 +0100172 type: string
lukegleeson996152a2021-11-30 17:06:03 +0000173 example: my-data
niamhcore79e41e02021-08-20 11:24:06 +0100174 cmHandleProperties:
tragait907e3782021-10-04 16:02:57 +0100175 $ref: '#/components/schemas/cmHandleProperties'
mpriyank78e1d062022-04-08 15:12:22 +0530176 requestId:
177 type: string
JosephKeenan2cd8b982022-05-23 15:43:05 +0100178 example: 3a9ce55c-e365-4dc9-8da3-a06f07cbc6d7
tragait907e3782021-10-04 16:02:57 +0100179
180 cmHandleProperties:
181 type: object
egernug1118bed2023-06-28 10:57:53 +0100182 nullable: true
tragait907e3782021-10-04 16:02:57 +0100183 additionalProperties:
184 type: string
185 example: {"prop1":"value1","prop2":"value2"}
niamhcore79e41e02021-08-20 11:24:06 +0100186
DylanB95ESTb5a23832021-06-02 19:45:46 +0100187 responses:
lukegleeson996152a2021-11-30 17:06:03 +0000188 NoContent:
189 description: No Content
190 content: {}
raviteja.karumuri7272f112023-05-24 18:23:38 +0100191
DylanB95ESTb5a23832021-06-02 19:45:46 +0100192 BadRequest:
193 description: Bad Request
194 content:
195 application/json:
196 schema:
197 $ref: '#/components/schemas/ErrorMessage'
lukegleeson996152a2021-11-30 17:06:03 +0000198 example:
199 status: 400
200 message: Bad Request
201 details: The provided request is not valid
raviteja.karumuri7272f112023-05-24 18:23:38 +0100202
lukegleeson996152a2021-11-30 17:06:03 +0000203 NotFound:
204 description: The specified resource was not found
205 content:
206 application/json:
207 schema:
208 $ref: '#/components/schemas/ErrorMessage'
209 example:
210 status: 404
211 message: Resource Not Found
212 details: The requested resource is not found
raviteja.karumuri7272f112023-05-24 18:23:38 +0100213
puthuparambil.adityabdcccb52022-01-20 15:26:52 +0000214 ServerError:
215 description: Internal Server Error
DylanB95ESTb5a23832021-06-02 19:45:46 +0100216 content:
217 application/json:
218 schema:
219 $ref: '#/components/schemas/ErrorMessage'
lukegleeson996152a2021-11-30 17:06:03 +0000220 example:
puthuparambil.adityabdcccb52022-01-20 15:26:52 +0000221 status: 500
222 message: Internal Server Error
223 details: Internal Server Error occured
raviteja.karumuri7272f112023-05-24 18:23:38 +0100224
leventecsanyifff80c02023-04-05 11:42:30 +0200225 NotImplemented:
226 description: Not Implemented
227 content:
228 application/json:
229 schema:
230 $ref: '#/components/schemas/ErrorMessage'
231 example:
232 status: 501
233 message: Not Implemented
234 details: Method Not Implemented
raviteja.karumuri7272f112023-05-24 18:23:38 +0100235
niamhcore3139ece2021-07-30 16:25:16 +0100236 parameters:
237 cmHandleInPath:
238 name: cmHandle
239 in: path
240 description: The identifier for a network function, network element, subnetwork, or any other cm object by managed Network CM Proxy
241 required: true
242 schema:
tragaitf01d5672021-08-19 11:19:54 +0100243 type: string
lukegleeson996152a2021-11-30 17:06:03 +0000244 example: my-cm-handle
tragaitf01d5672021-08-19 11:19:54 +0100245
niamhcore2fb3f662021-09-29 15:32:32 +0100246 resourceIdentifierInQuery:
tragaitf01d5672021-08-19 11:19:54 +0100247 name: resourceIdentifier
niamhcore2fb3f662021-09-29 15:32:32 +0100248 in: query
tragaitf01d5672021-08-19 11:19:54 +0100249 description: Resource identifier to get/set the resource data
250 required: true
niamhcore2fb3f662021-09-29 15:32:32 +0100251 allowReserved: true
tragaitf01d5672021-08-19 11:19:54 +0100252 schema:
253 type: string
lukegleeson996152a2021-11-30 17:06:03 +0000254 example: my-schema:my-node
tragaitf01d5672021-08-19 11:19:54 +0100255
tragait907e3782021-10-04 16:02:57 +0100256 optionsParamInQuery:
257 name: options
tragaitf01d5672021-08-19 11:19:54 +0100258 in: query
tragait907e3782021-10-04 16:02:57 +0100259 description: options parameter in query, it is mandatory to wrap key(s)=value(s) in parenthesis'()'.
tragaitf01d5672021-08-19 11:19:54 +0100260 required: false
261 schema:
262 type: string
tragait907e3782021-10-04 16:02:57 +0100263 allowReserved: true
264 examples:
265 sample1:
266 value:
267 options: (key1=value1,key2=value2)
268 sample2:
269 value:
270 options: (key1=value1,key2=value1/value2)
271 sample3:
272 value:
mpriyank78e1d062022-04-08 15:12:22 +0530273 options: (key1=10,key2=value2,key3=val31,val32)
raviteja.karumuri7272f112023-05-24 18:23:38 +0100274
mpriyank78e1d062022-04-08 15:12:22 +0530275 topicParamInQuery:
JosephKeenan2cd8b982022-05-23 15:43:05 +0100276 name: topic
mpriyank78e1d062022-04-08 15:12:22 +0530277 in: query
mpriyank7b7297c2022-09-14 10:47:45 +0100278 description: topic name passed from client(NCMP).
mpriyank78e1d062022-04-08 15:12:22 +0530279 required: false
280 schema:
281 type: string
282 allowReserved: true
283 examples:
284 sample1:
JosephKeenan2cd8b982022-05-23 15:43:05 +0100285 value: my-topic-name
raviteja.karumuri7272f112023-05-24 18:23:38 +0100286
287 requiredTopicParamInQuery:
288 name: topic
289 in: query
290 description: mandatory topic name passed from client(NCMP).
291 required: true
292 schema:
293 type: string
294 allowReserved: true
295 examples:
296 sample1:
297 value:
298 topic: my-topic-name
299
david.mcweeney184b6812024-05-02 15:14:52 +0100300 moduleSetTagParamInQuery:
301 name: moduleSetTag
302 in: query
303 description: Module set tag of the given cm handle.
304 required: false
305 schema:
306 type: string
307 examples:
308 sample1:
309 value: tag1
310
raviteja.karumuri7272f112023-05-24 18:23:38 +0100311 requiredRequestIdParamInQuery:
312 name: requestId
313 in: query
314 description: request Id generated by NCMP and sent as an acknowledgement for the client request the same including here.
315 required: true
316 schema:
317 type: string
318 allowReserved: true
319 examples:
320 sample1:
321 value: 4753fc1f-7de2-449a-b306-a6204b5370b3
322
sourabh_sourabhe648aba2023-03-13 15:49:35 +0000323 datastoreName:
324 name: datastore-name
325 in: path
326 description: The type of the requested data
327 required: true
328 schema:
329 type: string
330 example: ncmp-datastore:passthrough-operational or ncmp-datastore:passthrough-running
JosephKeenandfe45ff2022-10-26 15:17:59 +0100331
332security:
333 - basicAuth: []