[NCMP] Add Basic Auth to OpenAPI Definitions
[cps.git] / cps-ncmp-rest / docs / openapi / openapi.yml
1 #  ============LICENSE_START=======================================================
2 #  Copyright (C) 2021-2022 Nordix Foundation
3 #  Modifications Copyright (C) 2021 Pantheon.tech
4 #  Modifications Copyright (C) 2021 Bell Canada
5 #  ================================================================================
6 #  Licensed under the Apache License, Version 2.0 (the "License");
7 #  you may not use this file except in compliance with the License.
8 #  You may obtain a copy of the License at
9 #
10 #        http://www.apache.org/licenses/LICENSE-2.0
11 #
12 #  Unless required by applicable law or agreed to in writing, software
13 #  distributed under the License is distributed on an "AS IS" BASIS,
14 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 #  See the License for the specific language governing permissions and
16 #  limitations under the License.
17 #
18 #  SPDX-License-Identifier: Apache-2.0
19 #  ============LICENSE_END=========================================================
20
21 openapi: 3.0.1
22 info:
23   title: NCMP to CPS Proxy API
24   description: NCMP to CPS Proxy API
25   version: "1.0"
26 servers:
27   - url: /ncmp
28 components:
29   securitySchemes:
30     basicAuth:
31       type: http
32       scheme: basic
33 paths:
34   /v1/ch/{cm-handle}/data/ds/{ncmp-datastore-name}:
35     $ref: 'ncmp.yml#/resourceDataForCmHandle'
36
37   /v1/ch/{cm-handle}/modules:
38     $ref: 'ncmp.yml#/fetchModuleReferencesByCmHandle'
39
40   /v1/ch/{cm-handle}/modules/definitions:
41     $ref: 'ncmp.yml#/fetchModuleDefinitionsByCmHandle'
42
43   /v1/ch/searches:
44     $ref: 'ncmp.yml#/searchCmHandles'
45
46   /v1/ch/{cm-handle}:
47     $ref: 'ncmp.yml#/retrieveCmHandleDetailsById'
48
49   /v1/ch/{cm-handle}/properties:
50     $ref: 'ncmp.yml#/getCmHandlePropertiesById'
51
52   /v1/ch/id-searches:
53     $ref: 'ncmp.yml#/searchCmHandleIds'
54
55   /v1/ch/{cm-handle}/state:
56     $ref: 'ncmp.yml#/getCmHandleStateById'
57
58   /v1/ch/{cm-handle}/data-sync:
59     $ref: 'ncmp.yml#/setDataSyncEnabledFlag'
60 security:
61   - basicAuth: []