diff options
author | Renu Kumari <renu.kumari@bell.ca> | 2021-10-06 13:31:43 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-10-06 13:31:43 +0000 |
commit | f3798ee9857edb45243d540606ceac21df1215ab (patch) | |
tree | 95f45aeb28accdde738705f7cf52b4702a628d05 /cps-ncmp-rest/docs/openapi/components.yaml | |
parent | 98e686f3aa8ae8171e850591c1f85433b00c56cf (diff) | |
parent | fd2e6ddde2c2260951e2dfd5e3fd7f4bd04976e1 (diff) |
Merge "Changing resource identifier to a query param"
Diffstat (limited to 'cps-ncmp-rest/docs/openapi/components.yaml')
-rw-r--r-- | cps-ncmp-rest/docs/openapi/components.yaml | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/cps-ncmp-rest/docs/openapi/components.yaml b/cps-ncmp-rest/docs/openapi/components.yaml index ffb8dde113..560c945dd7 100644 --- a/cps-ncmp-rest/docs/openapi/components.yaml +++ b/cps-ncmp-rest/docs/openapi/components.yaml @@ -104,13 +104,27 @@ components: schema: type: string default: / - resourceIdentifierInPath: + resourceIdentifierInQuery: name: resourceIdentifier - in: path - description: Resource identifier to get/set the resource data + in: query + description: The format of resource identifier depend on the associated DMI Plugin implementation. For ONAP DMI Plugin it will be RESTConf paths but it can really be anything. required: true + allowReserved: true schema: type: string + examples: + sample1: + value: + resourceIdentifier: \parent\child + sample2: + value: + resourceIdentifier: \parent\listElement[key=value] + sample3: + value: + resourceIdentifier: \parent\listElement[key=value]\grandChild + sample4: + value: + resourceIdentifier: parent=1,child=abc acceptParamInHeader: name: Accept in: header |