Table of Contents |
---|
...
DMI notifies NCMP of new , deleted or changed cmhandles DMI Plugin NCMP. Including initial registration | Scenario : DMI notifies NCMP of new cmhandles Request Body
json attributes:
|
openAPI Updates
To support this the equivalent openAPI will be similar to the below in bold.
...
Code Block | ||||
---|---|---|---|---|
| ||||
RestCmHandle: required: - cmHandle type: object properties: cmHandle: type: string example: cmHandle123 cmHandleProperties: $ref: '#/components/schemas/RestCmHandleAdditionalProperties' RestCmHandleAdditionalProperties: type: object additionalProperties: type: string example: system-001 RestDmiPluginRegistration: type: object properties: dmiPlugin: type: string required: false example: onap-dmi-plugin dmiDataPlugin: type: string required: false example: onap-dmi-data-plugin dmiModelPlugin: type: string required: false example: onap-dmi-model-plugin createdCmHandles: type: array items: $ref: '#/components/schemas/RestCmHandle' updatedCmHandles: type: array items: $ref: '#/components/schemas/RestCmHandle' removedCmHandles: type: array items: type: string |
...