diff options
author | tragait <rahul.tyagi@est.tech> | 2021-08-19 11:19:54 +0100 |
---|---|---|
committer | tragait <rahul.tyagi@est.tech> | 2021-08-19 11:19:59 +0100 |
commit | f01d5674c738e1bc0e485a43f52e5cf19c9d81a7 (patch) | |
tree | 3c3b942445b556db4d531c31b20f7aa92b725e9e /docs/openapi/components.yml | |
parent | 577efb09a39282c608b53a3099b7edc95954f9c2 (diff) |
Get resource data for pass-through running (dmi-impl)
Issue-ID: CPS-561
Signed-off-by: tragait <rahul.tyagi@est.tech>
Change-Id: Ia92a97296e2c3e84d0b6f6d9d1d0daf1e8f46b55
Diffstat (limited to 'docs/openapi/components.yml')
-rw-r--r-- | docs/openapi/components.yml | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/docs/openapi/components.yml b/docs/openapi/components.yml index 3d8aa2cf..cb39fa4e 100644 --- a/docs/openapi/components.yml +++ b/docs/openapi/components.yml @@ -123,4 +123,37 @@ components: description: The identifier for a network function, network element, subnetwork, or any other cm object by managed Network CM Proxy required: true schema: - type: string
\ No newline at end of file + type: string + + resourceIdentifierInPath: + name: resourceIdentifier + in: path + description: Resource identifier to get/set the resource data + required: true + schema: + type: string + + acceptParamInHeader: + 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 ] + + fieldsParamInQuery: + name: fields + in: query + description: Fields parameter to filter resource + required: false + schema: + type: string + + depthParamInQuery: + name: depth + in: query + description: Depth parameter for response + required: false + schema: + type: integer + minimum: 1
\ No newline at end of file |