diff options
author | Toine Siebelink <toine.siebelink@est.tech> | 2022-05-20 15:57:00 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2022-05-20 15:57:00 +0000 |
commit | f564bf5b4523ceb04bec6e866aec664ea57726d5 (patch) | |
tree | fce248d503ae8f8df01ae89ad7eb806a9196fde4 /cps-ncmp-rest/docs/openapi/ncmp.yml | |
parent | c0b1de6357e294dffdf5ce0219950e0b3bf374ce (diff) | |
parent | bed18fd895d1ac240c7fdb361cb0ed994d392ecf (diff) |
Merge "Get cm-handle public properties endpoint"
Diffstat (limited to 'cps-ncmp-rest/docs/openapi/ncmp.yml')
-rwxr-xr-x | cps-ncmp-rest/docs/openapi/ncmp.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/cps-ncmp-rest/docs/openapi/ncmp.yml b/cps-ncmp-rest/docs/openapi/ncmp.yml index 05e4b84853..318e6e66d9 100755 --- a/cps-ncmp-rest/docs/openapi/ncmp.yml +++ b/cps-ncmp-rest/docs/openapi/ncmp.yml @@ -296,6 +296,27 @@ retrieveCmHandleDetailsById: 500: $ref: 'components.yaml#/components/responses/InternalServerError' +getCmHandlePropertiesById: + get: + description: Get CM handle properties by cm handle id + tags: + - network-cm-proxy + summary: Get CM handle properties + operationId: getCmHandlePublicPropertiesByCmHandleId + parameters: + - $ref: 'components.yaml#/components/parameters/cmHandleInPath' + responses: + 200: + description: OK + content: + application/json: + schema: + $ref: 'components.yaml#/components/schemas/RestOutputCmHandlePublicProperties' + 404: + $ref: 'components.yaml#/components/responses/NotFound' + 500: + $ref: 'components.yaml#/components/responses/InternalServerError' + queryCmHandles: post: description: Execute cm handle query search |