diff options
author | tragait <rahul.tyagi@est.tech> | 2021-08-06 17:01:31 +0100 |
---|---|---|
committer | tragait <rahul.tyagi@est.tech> | 2021-08-17 13:55:12 +0100 |
commit | e398be5923a47650b109512c795244cdc2b5eb10 (patch) | |
tree | 4d12aa2f7d18785825f4c5b1e9073a68505cf30b /docs/openapi/openapi.yml | |
parent | 3139ece993c68ce7e40d166acdd5d9572a3a8a1e (diff) |
implement passthough operational for dmi
Issue-ID: CPS-486
Signed-off-by: tragait <rahul.tyagi@est.tech>
Change-Id: Icf48fa93ea1f0d8a27d2e7e1ab0cfd6096a765ec
Diffstat (limited to 'docs/openapi/openapi.yml')
-rw-r--r-- | docs/openapi/openapi.yml | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/docs/openapi/openapi.yml b/docs/openapi/openapi.yml index f261c0da..a4a238c4 100644 --- a/docs/openapi/openapi.yml +++ b/docs/openapi/openapi.yml @@ -123,3 +123,53 @@ paths: $ref: 'components.yml#/components/responses/Unauthorized' '403': $ref: 'components.yml#/components/responses/Forbidden' + + /v1/ch/{cmHandle}/data/ds/ncmp-datastore:passthrough-operational/{resourceIdentifier}: + put: + tags: + - dmi-plugin + summary: Get resource data for cm handle + description: Get resource data for given cm handle + operationId: getResourceDataOperationalForCmHandle + parameters: + - $ref: 'components.yml#/components/parameters/cmHandleInPath' + - name: resourceIdentifier + in: path + description: Resource identifier to fetch the resource data + required: true + schema: + type: string + - name: accept + in: header + description: Accept parameter for response, if accept parameter is null, that means client can accept any format. + schema: + type: string + enum: [ application/json, application/yang-data+json ] + - name: fields + in: query + description: Fields parameter to filter resource + required: false + schema: + type: string + - name: depth + in: query + description: Depth parameter for response + required: false + schema: + type: integer + minimum: 1 + requestBody: + description: Operational body + content: + application/json: + schema: + $ref: 'components.yml#/components/schemas/OperationalRequest' + responses: + '200': + $ref: 'components.yml#/components/responses/Ok' + '400': + $ref: 'components.yml#/components/responses/BadRequest' + '401': + $ref: 'components.yml#/components/responses/Unauthorized' + '403': + $ref: 'components.yml#/components/responses/Forbidden' |