diff options
author | Ramesh Murugan Iyer <ramesh.murugan.iyer@est.tech> | 2022-12-13 09:22:13 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2022-12-13 09:22:13 +0000 |
commit | 06d4bbe578678619be4d948fde42223719e82cf1 (patch) | |
tree | 1dae9a661e6fc54ac017a0eaa404201effcfbf79 /runtime-acm/src/main/resources | |
parent | ea4473217760d9ba62a6b9a05c81f0694590a03e (diff) | |
parent | 5e0f7912ac694eef2d283aab61a659470b4ba3e5 (diff) |
Merge "Link the existing InstantiationController with the generated code"
Diffstat (limited to 'runtime-acm/src/main/resources')
-rw-r--r-- | runtime-acm/src/main/resources/openapi/openapi.yaml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/runtime-acm/src/main/resources/openapi/openapi.yaml b/runtime-acm/src/main/resources/openapi/openapi.yaml index de7b26ead..65d2c6b08 100644 --- a/runtime-acm/src/main/resources/openapi/openapi.yaml +++ b/runtime-acm/src/main/resources/openapi/openapi.yaml @@ -968,14 +968,12 @@ paths: content: application/json: schema: - title: InstantiationUpdate - type: object + $ref: '#/components/schemas/InstantiationUpdate' example: externalValue: 'https://raw.githubusercontent.com/onap/policy-clamp/master/runtime-acm/src/main/resources/openapi/examples/putCompositionInstanceUpdate.json' application/yaml: schema: - title: InstantiationUpdate - type: object + $ref: '#/components/schemas/InstantiationUpdate' example: externalValue: 'https://raw.githubusercontent.com/onap/policy-clamp/master/runtime-acm/src/main/resources/openapi/examples/putCompositionInstanceUpdate.yaml' required: true @@ -1228,6 +1226,9 @@ components: CommissioningResponse: title: CommissioningResponse type: object + InstantiationUpdate: + title: InstantiationUpdate + type: object InstantiationResponse: title: InstantiationResponse type: object |