Renu Kumari | 139e822 | 2021-10-04 20:59:18 -0400 | [diff] [blame] | 1 | # ============LICENSE_START======================================================= |
| 2 | # Copyright (C) 2021 Bell Canada |
danielhanrahan | 5574043 | 2024-10-17 14:55:49 +0100 | [diff] [blame^] | 3 | # Modifications Copyright (C) 2022-2024 Nordix Foundation |
Renu Kumari | 139e822 | 2021-10-04 20:59:18 -0400 | [diff] [blame] | 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 | |
egernug | 9426ae8 | 2023-06-21 11:16:02 +0100 | [diff] [blame] | 20 | openapi: 3.0.3 |
Renu Kumari | 139e822 | 2021-10-04 20:59:18 -0400 | [diff] [blame] | 21 | info: |
| 22 | title: NCMP Inventory API |
| 23 | description: NCMP Inventory API |
danielhanrahan | 5574043 | 2024-10-17 14:55:49 +0100 | [diff] [blame^] | 24 | version: "3.5.4" |
Renu Kumari | 139e822 | 2021-10-04 20:59:18 -0400 | [diff] [blame] | 25 | servers: |
| 26 | - url: /ncmpInventory |
JosephKeenan | 1a65023 | 2022-10-20 10:33:24 +0100 | [diff] [blame] | 27 | components: |
| 28 | securitySchemes: |
| 29 | basicAuth: |
| 30 | type: http |
| 31 | scheme: basic |
Renu Kumari | 139e822 | 2021-10-04 20:59:18 -0400 | [diff] [blame] | 32 | paths: |
| 33 | /v1/ch: |
| 34 | $ref: 'ncmp-inventory.yml#/updateDmiRegistration' |
emaclee | d340047 | 2022-08-19 09:26:39 +0100 | [diff] [blame] | 35 | |
| 36 | /v1/ch/cmHandles: |
JosephKeenan | 1a65023 | 2022-10-20 10:33:24 +0100 | [diff] [blame] | 37 | $ref: 'ncmp-inventory.yml#/getAllCmHandleIdsForRegisteredDmi' |
leventecsanyi | 37d7285 | 2022-10-26 10:44:08 +0200 | [diff] [blame] | 38 | |
| 39 | /v1/ch/searches: |
| 40 | $ref: 'ncmp-inventory.yml#/searchCmHandleIds' |
| 41 | |
JosephKeenan | 1a65023 | 2022-10-20 10:33:24 +0100 | [diff] [blame] | 42 | security: |
danielhanrahan | 9002b9f | 2024-08-21 14:51:19 +0100 | [diff] [blame] | 43 | - basicAuth: [] |