puthuparambil.aditya | 39450c5 | 2022-03-29 11:22:31 +0100 | [diff] [blame] | 1 | # ============LICENSE_START======================================================= |
leventecsanyi | fff80c0 | 2023-04-05 11:42:30 +0200 | [diff] [blame] | 2 | # Copyright (C) 2021-2023 Nordix Foundation |
puthuparambil.aditya | 39450c5 | 2022-03-29 11:22:31 +0100 | [diff] [blame] | 3 | # 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 | |
DylanB95EST | b5a2383 | 2021-06-02 19:45:46 +0100 | [diff] [blame] | 20 | components: |
JosephKeenan | dfe45ff | 2022-10-26 15:17:59 +0100 | [diff] [blame] | 21 | securitySchemes: |
| 22 | basicAuth: |
| 23 | type: http |
| 24 | scheme: basic |
DylanB95EST | b5a2383 | 2021-06-02 19:45:46 +0100 | [diff] [blame] | 25 | 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 | |
tragait | 2270d76 | 2021-07-08 15:42:19 +0100 | [diff] [blame] | 37 | CmHandles: |
| 38 | type: object |
| 39 | properties: |
| 40 | cmHandles: |
| 41 | type: array |
lukegleeson | 996152a | 2021-11-30 17:06:03 +0000 | [diff] [blame] | 42 | example: ["cmHandleId1","cmHandleId2","cmHandleId3"] |
tragait | 2270d76 | 2021-07-08 15:42:19 +0100 | [diff] [blame] | 43 | items: |
| 44 | type: string |
| 45 | |
niamhcore | acc0f8b | 2021-10-06 09:49:12 +0100 | [diff] [blame] | 46 | ModuleReferencesRequest: |
niamhcore | 3139ece | 2021-07-30 16:25:16 +0100 | [diff] [blame] | 47 | type: object |
| 48 | properties: |
leventecsanyi | 8db6a30 | 2024-04-02 14:37:57 +0200 | [diff] [blame^] | 49 | moduleSetTag: |
| 50 | type: string |
niamhcore | acc0f8b | 2021-10-06 09:49:12 +0100 | [diff] [blame] | 51 | cmHandleProperties: |
| 52 | $ref: '#/components/schemas/cmHandleProperties' |
| 53 | |
raviteja.karumuri | 9784384 | 2023-06-19 16:43:32 +0100 | [diff] [blame] | 54 | ResourceDataOperationRequests: |
raviteja.karumuri | 7272f11 | 2023-05-24 18:23:38 +0100 | [diff] [blame] | 55 | type: array |
| 56 | items: |
| 57 | type: object |
raviteja.karumuri | 9784384 | 2023-06-19 16:43:32 +0100 | [diff] [blame] | 58 | title: 'DataOperationRequest' |
raviteja.karumuri | 7272f11 | 2023-05-24 18:23:38 +0100 | [diff] [blame] | 59 | 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 | |
niamhcore | acc0f8b | 2021-10-06 09:49:12 +0100 | [diff] [blame] | 101 | ModuleResourcesReadRequest: |
| 102 | type: object |
| 103 | properties: |
niamhcore | 3139ece | 2021-07-30 16:25:16 +0100 | [diff] [blame] | 104 | data: |
| 105 | type: object |
| 106 | properties: |
| 107 | modules: |
| 108 | type: array |
| 109 | items: |
| 110 | type: object |
| 111 | properties: |
| 112 | name: |
lukegleeson | 996152a | 2021-11-30 17:06:03 +0000 | [diff] [blame] | 113 | type: string |
| 114 | example: my-name |
niamhcore | 3139ece | 2021-07-30 16:25:16 +0100 | [diff] [blame] | 115 | revision: |
lukegleeson | 996152a | 2021-11-30 17:06:03 +0000 | [diff] [blame] | 116 | type: string |
| 117 | example: my-revision |
niamhcore | 3139ece | 2021-07-30 16:25:16 +0100 | [diff] [blame] | 118 | cmHandleProperties: |
tragait | 907e378 | 2021-10-04 16:02:57 +0100 | [diff] [blame] | 119 | $ref: '#/components/schemas/cmHandleProperties' |
niamhcore | 3139ece | 2021-07-30 16:25:16 +0100 | [diff] [blame] | 120 | |
niamhcore | 577efb0 | 2021-08-11 16:13:53 +0100 | [diff] [blame] | 121 | ModuleSet: |
| 122 | type: object |
| 123 | properties: |
| 124 | schemas: |
| 125 | type: array |
| 126 | items: |
| 127 | type: object |
| 128 | properties: |
| 129 | moduleName: |
| 130 | type: string |
lukegleeson | 996152a | 2021-11-30 17:06:03 +0000 | [diff] [blame] | 131 | example: my-module-name |
niamhcore | 577efb0 | 2021-08-11 16:13:53 +0100 | [diff] [blame] | 132 | revision: |
lukegleeson | 996152a | 2021-11-30 17:06:03 +0000 | [diff] [blame] | 133 | type: string |
| 134 | example: my-revision |
niamhcore | 577efb0 | 2021-08-11 16:13:53 +0100 | [diff] [blame] | 135 | namespace: |
| 136 | type: string |
lukegleeson | 996152a | 2021-11-30 17:06:03 +0000 | [diff] [blame] | 137 | example: my-namespace |
niamhcore | 577efb0 | 2021-08-11 16:13:53 +0100 | [diff] [blame] | 138 | |
niamhcore | 4f43188 | 2021-09-21 16:08:29 +0100 | [diff] [blame] | 139 | YangResources: |
| 140 | type: array |
| 141 | items: |
niamhcore | 4f43188 | 2021-09-21 16:08:29 +0100 | [diff] [blame] | 142 | $ref: '#/components/schemas/YangResource' |
| 143 | |
| 144 | YangResource: |
| 145 | properties: |
| 146 | yangSource: |
| 147 | type: string |
lukegleeson | 996152a | 2021-11-30 17:06:03 +0000 | [diff] [blame] | 148 | example: my-yang-source |
niamhcore | 4f43188 | 2021-09-21 16:08:29 +0100 | [diff] [blame] | 149 | moduleName: |
| 150 | type: string |
lukegleeson | 996152a | 2021-11-30 17:06:03 +0000 | [diff] [blame] | 151 | example: my-module-name |
niamhcore | 4f43188 | 2021-09-21 16:08:29 +0100 | [diff] [blame] | 152 | revision: |
lukegleeson | 996152a | 2021-11-30 17:06:03 +0000 | [diff] [blame] | 153 | type: string |
| 154 | example: my-revision |
niamhcore | 4f43188 | 2021-09-21 16:08:29 +0100 | [diff] [blame] | 155 | |
DylanB95EST | 5fe0dae | 2021-11-09 13:54:35 +0000 | [diff] [blame] | 156 | DataAccessRequest: |
tragait | e398be5 | 2021-08-06 17:01:31 +0100 | [diff] [blame] | 157 | type: object |
| 158 | properties: |
| 159 | operation: |
| 160 | type: string |
tragait | dffff5d | 2022-01-10 12:16:25 +0000 | [diff] [blame] | 161 | enum: [ read, create, update, patch, delete ] |
lukegleeson | 996152a | 2021-11-30 17:06:03 +0000 | [diff] [blame] | 162 | example: read |
niamhcore | 79e41e0 | 2021-08-20 11:24:06 +0100 | [diff] [blame] | 163 | dataType: |
| 164 | type: string |
lukegleeson | 996152a | 2021-11-30 17:06:03 +0000 | [diff] [blame] | 165 | example: my-data-type |
niamhcore | 79e41e0 | 2021-08-20 11:24:06 +0100 | [diff] [blame] | 166 | data: |
tragait | fa11e9c | 2021-09-14 13:47:52 +0100 | [diff] [blame] | 167 | type: string |
lukegleeson | 996152a | 2021-11-30 17:06:03 +0000 | [diff] [blame] | 168 | example: my-data |
niamhcore | 79e41e0 | 2021-08-20 11:24:06 +0100 | [diff] [blame] | 169 | cmHandleProperties: |
tragait | 907e378 | 2021-10-04 16:02:57 +0100 | [diff] [blame] | 170 | $ref: '#/components/schemas/cmHandleProperties' |
mpriyank | 78e1d06 | 2022-04-08 15:12:22 +0530 | [diff] [blame] | 171 | requestId: |
| 172 | type: string |
JosephKeenan | 2cd8b98 | 2022-05-23 15:43:05 +0100 | [diff] [blame] | 173 | example: 3a9ce55c-e365-4dc9-8da3-a06f07cbc6d7 |
tragait | 907e378 | 2021-10-04 16:02:57 +0100 | [diff] [blame] | 174 | |
| 175 | cmHandleProperties: |
| 176 | type: object |
egernug | 1118bed | 2023-06-28 10:57:53 +0100 | [diff] [blame] | 177 | nullable: true |
tragait | 907e378 | 2021-10-04 16:02:57 +0100 | [diff] [blame] | 178 | additionalProperties: |
| 179 | type: string |
| 180 | example: {"prop1":"value1","prop2":"value2"} |
niamhcore | 79e41e0 | 2021-08-20 11:24:06 +0100 | [diff] [blame] | 181 | |
DylanB95EST | b5a2383 | 2021-06-02 19:45:46 +0100 | [diff] [blame] | 182 | responses: |
lukegleeson | 996152a | 2021-11-30 17:06:03 +0000 | [diff] [blame] | 183 | NoContent: |
| 184 | description: No Content |
| 185 | content: {} |
raviteja.karumuri | 7272f11 | 2023-05-24 18:23:38 +0100 | [diff] [blame] | 186 | |
DylanB95EST | b5a2383 | 2021-06-02 19:45:46 +0100 | [diff] [blame] | 187 | BadRequest: |
| 188 | description: Bad Request |
| 189 | content: |
| 190 | application/json: |
| 191 | schema: |
| 192 | $ref: '#/components/schemas/ErrorMessage' |
lukegleeson | 996152a | 2021-11-30 17:06:03 +0000 | [diff] [blame] | 193 | example: |
| 194 | status: 400 |
| 195 | message: Bad Request |
| 196 | details: The provided request is not valid |
raviteja.karumuri | 7272f11 | 2023-05-24 18:23:38 +0100 | [diff] [blame] | 197 | |
lukegleeson | 996152a | 2021-11-30 17:06:03 +0000 | [diff] [blame] | 198 | NotFound: |
| 199 | description: The specified resource was not found |
| 200 | content: |
| 201 | application/json: |
| 202 | schema: |
| 203 | $ref: '#/components/schemas/ErrorMessage' |
| 204 | example: |
| 205 | status: 404 |
| 206 | message: Resource Not Found |
| 207 | details: The requested resource is not found |
raviteja.karumuri | 7272f11 | 2023-05-24 18:23:38 +0100 | [diff] [blame] | 208 | |
puthuparambil.aditya | bdcccb5 | 2022-01-20 15:26:52 +0000 | [diff] [blame] | 209 | ServerError: |
| 210 | description: Internal Server Error |
DylanB95EST | b5a2383 | 2021-06-02 19:45:46 +0100 | [diff] [blame] | 211 | content: |
| 212 | application/json: |
| 213 | schema: |
| 214 | $ref: '#/components/schemas/ErrorMessage' |
lukegleeson | 996152a | 2021-11-30 17:06:03 +0000 | [diff] [blame] | 215 | example: |
puthuparambil.aditya | bdcccb5 | 2022-01-20 15:26:52 +0000 | [diff] [blame] | 216 | status: 500 |
| 217 | message: Internal Server Error |
| 218 | details: Internal Server Error occured |
raviteja.karumuri | 7272f11 | 2023-05-24 18:23:38 +0100 | [diff] [blame] | 219 | |
leventecsanyi | fff80c0 | 2023-04-05 11:42:30 +0200 | [diff] [blame] | 220 | NotImplemented: |
| 221 | description: Not Implemented |
| 222 | content: |
| 223 | application/json: |
| 224 | schema: |
| 225 | $ref: '#/components/schemas/ErrorMessage' |
| 226 | example: |
| 227 | status: 501 |
| 228 | message: Not Implemented |
| 229 | details: Method Not Implemented |
raviteja.karumuri | 7272f11 | 2023-05-24 18:23:38 +0100 | [diff] [blame] | 230 | |
niamhcore | 3139ece | 2021-07-30 16:25:16 +0100 | [diff] [blame] | 231 | parameters: |
| 232 | cmHandleInPath: |
| 233 | name: cmHandle |
| 234 | in: path |
| 235 | description: The identifier for a network function, network element, subnetwork, or any other cm object by managed Network CM Proxy |
| 236 | required: true |
| 237 | schema: |
tragait | f01d567 | 2021-08-19 11:19:54 +0100 | [diff] [blame] | 238 | type: string |
lukegleeson | 996152a | 2021-11-30 17:06:03 +0000 | [diff] [blame] | 239 | example: my-cm-handle |
tragait | f01d567 | 2021-08-19 11:19:54 +0100 | [diff] [blame] | 240 | |
niamhcore | 2fb3f66 | 2021-09-29 15:32:32 +0100 | [diff] [blame] | 241 | resourceIdentifierInQuery: |
tragait | f01d567 | 2021-08-19 11:19:54 +0100 | [diff] [blame] | 242 | name: resourceIdentifier |
niamhcore | 2fb3f66 | 2021-09-29 15:32:32 +0100 | [diff] [blame] | 243 | in: query |
tragait | f01d567 | 2021-08-19 11:19:54 +0100 | [diff] [blame] | 244 | description: Resource identifier to get/set the resource data |
| 245 | required: true |
niamhcore | 2fb3f66 | 2021-09-29 15:32:32 +0100 | [diff] [blame] | 246 | allowReserved: true |
tragait | f01d567 | 2021-08-19 11:19:54 +0100 | [diff] [blame] | 247 | schema: |
| 248 | type: string |
lukegleeson | 996152a | 2021-11-30 17:06:03 +0000 | [diff] [blame] | 249 | example: my-schema:my-node |
tragait | f01d567 | 2021-08-19 11:19:54 +0100 | [diff] [blame] | 250 | |
tragait | 907e378 | 2021-10-04 16:02:57 +0100 | [diff] [blame] | 251 | optionsParamInQuery: |
| 252 | name: options |
tragait | f01d567 | 2021-08-19 11:19:54 +0100 | [diff] [blame] | 253 | in: query |
tragait | 907e378 | 2021-10-04 16:02:57 +0100 | [diff] [blame] | 254 | description: options parameter in query, it is mandatory to wrap key(s)=value(s) in parenthesis'()'. |
tragait | f01d567 | 2021-08-19 11:19:54 +0100 | [diff] [blame] | 255 | required: false |
| 256 | schema: |
| 257 | type: string |
tragait | 907e378 | 2021-10-04 16:02:57 +0100 | [diff] [blame] | 258 | allowReserved: true |
| 259 | examples: |
| 260 | sample1: |
| 261 | value: |
| 262 | options: (key1=value1,key2=value2) |
| 263 | sample2: |
| 264 | value: |
| 265 | options: (key1=value1,key2=value1/value2) |
| 266 | sample3: |
| 267 | value: |
mpriyank | 78e1d06 | 2022-04-08 15:12:22 +0530 | [diff] [blame] | 268 | options: (key1=10,key2=value2,key3=val31,val32) |
raviteja.karumuri | 7272f11 | 2023-05-24 18:23:38 +0100 | [diff] [blame] | 269 | |
mpriyank | 78e1d06 | 2022-04-08 15:12:22 +0530 | [diff] [blame] | 270 | topicParamInQuery: |
JosephKeenan | 2cd8b98 | 2022-05-23 15:43:05 +0100 | [diff] [blame] | 271 | name: topic |
mpriyank | 78e1d06 | 2022-04-08 15:12:22 +0530 | [diff] [blame] | 272 | in: query |
mpriyank | 7b7297c | 2022-09-14 10:47:45 +0100 | [diff] [blame] | 273 | description: topic name passed from client(NCMP). |
mpriyank | 78e1d06 | 2022-04-08 15:12:22 +0530 | [diff] [blame] | 274 | required: false |
| 275 | schema: |
| 276 | type: string |
| 277 | allowReserved: true |
| 278 | examples: |
| 279 | sample1: |
JosephKeenan | 2cd8b98 | 2022-05-23 15:43:05 +0100 | [diff] [blame] | 280 | value: my-topic-name |
raviteja.karumuri | 7272f11 | 2023-05-24 18:23:38 +0100 | [diff] [blame] | 281 | |
| 282 | requiredTopicParamInQuery: |
| 283 | name: topic |
| 284 | in: query |
| 285 | description: mandatory topic name passed from client(NCMP). |
| 286 | required: true |
| 287 | schema: |
| 288 | type: string |
| 289 | allowReserved: true |
| 290 | examples: |
| 291 | sample1: |
| 292 | value: |
| 293 | topic: my-topic-name |
| 294 | |
| 295 | requiredRequestIdParamInQuery: |
| 296 | name: requestId |
| 297 | in: query |
| 298 | description: request Id generated by NCMP and sent as an acknowledgement for the client request the same including here. |
| 299 | required: true |
| 300 | schema: |
| 301 | type: string |
| 302 | allowReserved: true |
| 303 | examples: |
| 304 | sample1: |
| 305 | value: 4753fc1f-7de2-449a-b306-a6204b5370b3 |
| 306 | |
sourabh_sourabh | e648aba | 2023-03-13 15:49:35 +0000 | [diff] [blame] | 307 | datastoreName: |
| 308 | name: datastore-name |
| 309 | in: path |
| 310 | description: The type of the requested data |
| 311 | required: true |
| 312 | schema: |
| 313 | type: string |
| 314 | example: ncmp-datastore:passthrough-operational or ncmp-datastore:passthrough-running |
JosephKeenan | dfe45ff | 2022-10-26 15:17:59 +0100 | [diff] [blame] | 315 | |
| 316 | security: |
| 317 | - basicAuth: [] |