shivasubedi | 8df61a9 | 2021-06-16 14:43:18 +0100 | [diff] [blame] | 1 | # ============LICENSE_START======================================================= |
puthuparambil.aditya | cc17ae5 | 2022-02-25 13:24:03 +0000 | [diff] [blame] | 2 | # Copyright (c) 2021-2022 Bell Canada. |
JosephKeenan | 909a850 | 2022-01-28 10:02:24 +0000 | [diff] [blame] | 3 | # Modifications Copyright (C) 2021-2022 Nordix Foundation |
rajesh.kumar | cc21a02 | 2022-12-06 11:47:24 +0000 | [diff] [blame] | 4 | # Modifications Copyright (C) 2022-2023 TechMahindra Ltd. |
Michal Jagiello | 6ce84d9 | 2022-12-13 07:40:19 +0000 | [diff] [blame] | 5 | # Modifications Copyright (C) 2022 Deutsche Telekom AG |
shivasubedi | 8df61a9 | 2021-06-16 14:43:18 +0100 | [diff] [blame] | 6 | # ================================================================================ |
| 7 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | # you may not use this file except in compliance with the License. |
| 9 | # You may obtain a copy of the License at |
| 10 | # |
| 11 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | # |
| 13 | # Unless required by applicable law or agreed to in writing, software |
| 14 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | # See the License for the specific language governing permissions and |
| 17 | # limitations under the License. |
Renu Kumari | 4d52001 | 2021-08-30 11:50:43 -0400 | [diff] [blame] | 18 | # |
| 19 | # SPDX-License-Identifier: Apache-2.0 |
shivasubedi | 8df61a9 | 2021-06-16 14:43:18 +0100 | [diff] [blame] | 20 | # ============LICENSE_END========================================================= |
| 21 | |
DylanB95EST | a79c9f1 | 2021-10-29 17:33:06 +0100 | [diff] [blame] | 22 | listElementByDataspaceAndAnchor: |
Ruslan Kashapov | 0905ac1 | 2021-05-05 13:11:50 +0300 | [diff] [blame] | 23 | post: |
DylanB95EST | a79c9f1 | 2021-10-29 17:33:06 +0100 | [diff] [blame] | 24 | description: Add list element(s) to a list for a given anchor and dataspace |
Ruslan Kashapov | 0905ac1 | 2021-05-05 13:11:50 +0300 | [diff] [blame] | 25 | tags: |
| 26 | - cps-data |
DylanB95EST | a79c9f1 | 2021-10-29 17:33:06 +0100 | [diff] [blame] | 27 | summary: Add list element(s) |
| 28 | operationId: addListElements |
Ruslan Kashapov | 0905ac1 | 2021-05-05 13:11:50 +0300 | [diff] [blame] | 29 | parameters: |
rajesh.kumar | 897686f | 2022-12-14 08:13:29 +0000 | [diff] [blame] | 30 | - $ref: 'components.yml#/components/parameters/apiVersionInPath' |
Ruslan Kashapov | 0905ac1 | 2021-05-05 13:11:50 +0300 | [diff] [blame] | 31 | - $ref: 'components.yml#/components/parameters/dataspaceNameInPath' |
| 32 | - $ref: 'components.yml#/components/parameters/anchorNameInPath' |
| 33 | - $ref: 'components.yml#/components/parameters/requiredXpathInQuery' |
aditya puthuparambil | 673c6d9 | 2021-08-24 17:44:34 +0100 | [diff] [blame] | 34 | - $ref: 'components.yml#/components/parameters/observedTimestampInQuery' |
Ruslan Kashapov | 0905ac1 | 2021-05-05 13:11:50 +0300 | [diff] [blame] | 35 | requestBody: |
| 36 | required: true |
| 37 | content: |
| 38 | application/json: |
| 39 | schema: |
puthuparambil.aditya | 5d8b241 | 2021-11-24 13:35:10 +0000 | [diff] [blame] | 40 | type: object |
| 41 | examples: |
puthuparambil.aditya | cc17ae5 | 2022-02-25 13:24:03 +0000 | [diff] [blame] | 42 | dataSample: |
| 43 | $ref: 'components.yml#/components/examples/dataSample' |
Ruslan Kashapov | 0905ac1 | 2021-05-05 13:11:50 +0300 | [diff] [blame] | 44 | responses: |
| 45 | '201': |
| 46 | $ref: 'components.yml#/components/responses/Created' |
| 47 | '400': |
| 48 | $ref: 'components.yml#/components/responses/BadRequest' |
| 49 | '401': |
| 50 | $ref: 'components.yml#/components/responses/Unauthorized' |
| 51 | '403': |
| 52 | $ref: 'components.yml#/components/responses/Forbidden' |
JosephKeenan | 909a850 | 2022-01-28 10:02:24 +0000 | [diff] [blame] | 53 | '500': |
| 54 | $ref: 'components.yml#/components/responses/InternalServerError' |
Renu Kumari | 7edbeb6 | 2021-08-30 07:45:52 -0400 | [diff] [blame] | 55 | put: |
DylanB95EST | a79c9f1 | 2021-10-29 17:33:06 +0100 | [diff] [blame] | 56 | description: Replace list content under a given parent, anchor and dataspace |
Ruslan Kashapov | 576f48e | 2021-05-14 14:41:05 +0300 | [diff] [blame] | 57 | tags: |
| 58 | - cps-data |
DylanB95EST | a79c9f1 | 2021-10-29 17:33:06 +0100 | [diff] [blame] | 59 | summary: Replace list content |
| 60 | operationId: replaceListContent |
Ruslan Kashapov | 576f48e | 2021-05-14 14:41:05 +0300 | [diff] [blame] | 61 | parameters: |
rajesh.kumar | 897686f | 2022-12-14 08:13:29 +0000 | [diff] [blame] | 62 | - $ref: 'components.yml#/components/parameters/apiVersionInPath' |
Ruslan Kashapov | 576f48e | 2021-05-14 14:41:05 +0300 | [diff] [blame] | 63 | - $ref: 'components.yml#/components/parameters/dataspaceNameInPath' |
| 64 | - $ref: 'components.yml#/components/parameters/anchorNameInPath' |
| 65 | - $ref: 'components.yml#/components/parameters/requiredXpathInQuery' |
aditya puthuparambil | 673c6d9 | 2021-08-24 17:44:34 +0100 | [diff] [blame] | 66 | - $ref: 'components.yml#/components/parameters/observedTimestampInQuery' |
Ruslan Kashapov | 576f48e | 2021-05-14 14:41:05 +0300 | [diff] [blame] | 67 | requestBody: |
| 68 | required: true |
| 69 | content: |
| 70 | application/json: |
| 71 | schema: |
puthuparambil.aditya | 5d8b241 | 2021-11-24 13:35:10 +0000 | [diff] [blame] | 72 | type: object |
| 73 | examples: |
puthuparambil.aditya | cc17ae5 | 2022-02-25 13:24:03 +0000 | [diff] [blame] | 74 | dataSample: |
| 75 | $ref: 'components.yml#/components/examples/dataSample' |
Ruslan Kashapov | 576f48e | 2021-05-14 14:41:05 +0300 | [diff] [blame] | 76 | responses: |
| 77 | '200': |
puthuparambil.aditya | 5d8b241 | 2021-11-24 13:35:10 +0000 | [diff] [blame] | 78 | $ref: 'components.yml#/components/responses/Ok' |
Ruslan Kashapov | 576f48e | 2021-05-14 14:41:05 +0300 | [diff] [blame] | 79 | '400': |
| 80 | $ref: 'components.yml#/components/responses/BadRequest' |
| 81 | '401': |
| 82 | $ref: 'components.yml#/components/responses/Unauthorized' |
| 83 | '403': |
| 84 | $ref: 'components.yml#/components/responses/Forbidden' |
JosephKeenan | 909a850 | 2022-01-28 10:02:24 +0000 | [diff] [blame] | 85 | '500': |
| 86 | $ref: 'components.yml#/components/responses/InternalServerError' |
lukegleeson | 05701dd | 2021-08-18 09:49:32 +0100 | [diff] [blame] | 87 | |
Rishi.Chail | dacc663 | 2021-01-27 04:27:34 +0000 | [diff] [blame] | 88 | nodesByDataspaceAndAnchor: |
niamhcore | 74753d9 | 2021-01-28 16:11:52 +0000 | [diff] [blame] | 89 | post: |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 90 | description: Create a node for a given anchor and dataspace |
niamhcore | 74753d9 | 2021-01-28 16:11:52 +0000 | [diff] [blame] | 91 | tags: |
| 92 | - cps-data |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 93 | summary: Create a node |
niamhcore | 74753d9 | 2021-01-28 16:11:52 +0000 | [diff] [blame] | 94 | operationId: createNode |
| 95 | parameters: |
rajesh.kumar | 897686f | 2022-12-14 08:13:29 +0000 | [diff] [blame] | 96 | - $ref: 'components.yml#/components/parameters/apiVersionInPath' |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 97 | - $ref: 'components.yml#/components/parameters/dataspaceNameInPath' |
| 98 | - $ref: 'components.yml#/components/parameters/anchorNameInPath' |
Ruslan Kashapov | 24bf350 | 2021-04-19 12:40:01 +0300 | [diff] [blame] | 99 | - $ref: 'components.yml#/components/parameters/xpathInQuery' |
aditya puthuparambil | 673c6d9 | 2021-08-24 17:44:34 +0100 | [diff] [blame] | 100 | - $ref: 'components.yml#/components/parameters/observedTimestampInQuery' |
Michal Jagiello | 6ce84d9 | 2022-12-13 07:40:19 +0000 | [diff] [blame] | 101 | - $ref: 'components.yml#/components/parameters/contentTypeHeader' |
niamhcore | 74753d9 | 2021-01-28 16:11:52 +0000 | [diff] [blame] | 102 | requestBody: |
| 103 | required: true |
| 104 | content: |
| 105 | application/json: |
| 106 | schema: |
Michal Jagiello | 6ce84d9 | 2022-12-13 07:40:19 +0000 | [diff] [blame] | 107 | type: string |
puthuparambil.aditya | 5d8b241 | 2021-11-24 13:35:10 +0000 | [diff] [blame] | 108 | examples: |
puthuparambil.aditya | cc17ae5 | 2022-02-25 13:24:03 +0000 | [diff] [blame] | 109 | dataSample: |
| 110 | $ref: 'components.yml#/components/examples/dataSample' |
Michal Jagiello | 6ce84d9 | 2022-12-13 07:40:19 +0000 | [diff] [blame] | 111 | application/xml: |
| 112 | schema: |
| 113 | type: object # Workaround to show example |
| 114 | xml: |
| 115 | name: stores |
| 116 | examples: |
| 117 | dataSample: |
| 118 | $ref: 'components.yml#/components/examples/dataSampleXml' |
| 119 | |
niamhcore | 74753d9 | 2021-01-28 16:11:52 +0000 | [diff] [blame] | 120 | responses: |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 121 | '201': |
| 122 | $ref: 'components.yml#/components/responses/Created' |
| 123 | '400': |
| 124 | $ref: 'components.yml#/components/responses/BadRequest' |
| 125 | '401': |
| 126 | $ref: 'components.yml#/components/responses/Unauthorized' |
| 127 | '403': |
| 128 | $ref: 'components.yml#/components/responses/Forbidden' |
JosephKeenan | 909a850 | 2022-01-28 10:02:24 +0000 | [diff] [blame] | 129 | '409': |
| 130 | $ref: 'components.yml#/components/responses/Conflict' |
| 131 | '500': |
| 132 | $ref: 'components.yml#/components/responses/InternalServerError' |
Ruslan Kashapov | 24c72db | 2021-02-09 17:25:18 +0200 | [diff] [blame] | 133 | patch: |
arpitsingh | 2b4c488 | 2023-03-03 21:38:57 +0530 | [diff] [blame] | 134 | description: Update a data node leaves for a given dataspace and anchor and a parent node xpath. This operation |
| 135 | is currently supported for one top level data node only. |
Ruslan Kashapov | 24c72db | 2021-02-09 17:25:18 +0200 | [diff] [blame] | 136 | tags: |
| 137 | - cps-data |
| 138 | summary: Update node leaves |
| 139 | operationId: updateNodeLeaves |
| 140 | parameters: |
rajesh.kumar | 897686f | 2022-12-14 08:13:29 +0000 | [diff] [blame] | 141 | - $ref: 'components.yml#/components/parameters/apiVersionInPath' |
Ruslan Kashapov | 24c72db | 2021-02-09 17:25:18 +0200 | [diff] [blame] | 142 | - $ref: 'components.yml#/components/parameters/dataspaceNameInPath' |
| 143 | - $ref: 'components.yml#/components/parameters/anchorNameInPath' |
| 144 | - $ref: 'components.yml#/components/parameters/xpathInQuery' |
aditya puthuparambil | 673c6d9 | 2021-08-24 17:44:34 +0100 | [diff] [blame] | 145 | - $ref: 'components.yml#/components/parameters/observedTimestampInQuery' |
Ruslan Kashapov | 24c72db | 2021-02-09 17:25:18 +0200 | [diff] [blame] | 146 | requestBody: |
| 147 | required: true |
| 148 | content: |
| 149 | application/json: |
| 150 | schema: |
puthuparambil.aditya | 5d8b241 | 2021-11-24 13:35:10 +0000 | [diff] [blame] | 151 | type: object |
| 152 | examples: |
puthuparambil.aditya | cc17ae5 | 2022-02-25 13:24:03 +0000 | [diff] [blame] | 153 | dataSample: |
| 154 | $ref: 'components.yml#/components/examples/dataSample' |
Ruslan Kashapov | 24c72db | 2021-02-09 17:25:18 +0200 | [diff] [blame] | 155 | responses: |
| 156 | '200': |
| 157 | $ref: 'components.yml#/components/responses/Ok' |
| 158 | '400': |
| 159 | $ref: 'components.yml#/components/responses/BadRequest' |
| 160 | '401': |
| 161 | $ref: 'components.yml#/components/responses/Unauthorized' |
| 162 | '403': |
| 163 | $ref: 'components.yml#/components/responses/Forbidden' |
JosephKeenan | 909a850 | 2022-01-28 10:02:24 +0000 | [diff] [blame] | 164 | '500': |
| 165 | $ref: 'components.yml#/components/responses/InternalServerError' |
DylanB95EST | 30a59dd | 2021-11-02 17:25:18 +0000 | [diff] [blame] | 166 | delete: |
| 167 | description: Delete a datanode for a given dataspace and anchor given a node xpath. |
| 168 | tags: |
| 169 | - cps-data |
| 170 | summary: Delete a data node |
| 171 | operationId: deleteDataNode |
| 172 | parameters: |
rajesh.kumar | 897686f | 2022-12-14 08:13:29 +0000 | [diff] [blame] | 173 | - $ref: 'components.yml#/components/parameters/apiVersionInPath' |
DylanB95EST | 30a59dd | 2021-11-02 17:25:18 +0000 | [diff] [blame] | 174 | - $ref: 'components.yml#/components/parameters/dataspaceNameInPath' |
| 175 | - $ref: 'components.yml#/components/parameters/anchorNameInPath' |
| 176 | - $ref: 'components.yml#/components/parameters/xpathInQuery' |
| 177 | - $ref: 'components.yml#/components/parameters/observedTimestampInQuery' |
| 178 | responses: |
| 179 | '204': |
| 180 | $ref: 'components.yml#/components/responses/NoContent' |
| 181 | '400': |
| 182 | $ref: 'components.yml#/components/responses/BadRequest' |
| 183 | '401': |
| 184 | $ref: 'components.yml#/components/responses/Unauthorized' |
| 185 | '403': |
| 186 | $ref: 'components.yml#/components/responses/Forbidden' |
JosephKeenan | 909a850 | 2022-01-28 10:02:24 +0000 | [diff] [blame] | 187 | '500': |
| 188 | $ref: 'components.yml#/components/responses/InternalServerError' |
Ruslan Kashapov | 24c72db | 2021-02-09 17:25:18 +0200 | [diff] [blame] | 189 | put: |
| 190 | description: Replace a node with descendants for a given dataspace, anchor and a parent node xpath |
| 191 | tags: |
| 192 | - cps-data |
| 193 | summary: Replace a node with descendants |
| 194 | operationId: replaceNode |
| 195 | parameters: |
rajesh.kumar | 897686f | 2022-12-14 08:13:29 +0000 | [diff] [blame] | 196 | - $ref: 'components.yml#/components/parameters/apiVersionInPath' |
Ruslan Kashapov | 24c72db | 2021-02-09 17:25:18 +0200 | [diff] [blame] | 197 | - $ref: 'components.yml#/components/parameters/dataspaceNameInPath' |
| 198 | - $ref: 'components.yml#/components/parameters/anchorNameInPath' |
| 199 | - $ref: 'components.yml#/components/parameters/xpathInQuery' |
aditya puthuparambil | 673c6d9 | 2021-08-24 17:44:34 +0100 | [diff] [blame] | 200 | - $ref: 'components.yml#/components/parameters/observedTimestampInQuery' |
Ruslan Kashapov | 24c72db | 2021-02-09 17:25:18 +0200 | [diff] [blame] | 201 | requestBody: |
| 202 | required: true |
| 203 | content: |
| 204 | application/json: |
| 205 | schema: |
puthuparambil.aditya | 5d8b241 | 2021-11-24 13:35:10 +0000 | [diff] [blame] | 206 | type: object |
| 207 | examples: |
puthuparambil.aditya | cc17ae5 | 2022-02-25 13:24:03 +0000 | [diff] [blame] | 208 | dataSample: |
| 209 | $ref: 'components.yml#/components/examples/dataSample' |
Ruslan Kashapov | 24c72db | 2021-02-09 17:25:18 +0200 | [diff] [blame] | 210 | responses: |
| 211 | '200': |
| 212 | $ref: 'components.yml#/components/responses/Ok' |
| 213 | '400': |
| 214 | $ref: 'components.yml#/components/responses/BadRequest' |
| 215 | '401': |
| 216 | $ref: 'components.yml#/components/responses/Unauthorized' |
| 217 | '403': |
DylanB95EST | a79c9f1 | 2021-10-29 17:33:06 +0100 | [diff] [blame] | 218 | $ref: 'components.yml#/components/responses/Forbidden' |
JosephKeenan | 909a850 | 2022-01-28 10:02:24 +0000 | [diff] [blame] | 219 | '500': |
| 220 | $ref: 'components.yml#/components/responses/InternalServerError' |