diff options
author | Priyank Maheshwari <priyank.maheshwari@est.tech> | 2023-09-25 16:11:01 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2023-09-25 16:11:01 +0000 |
commit | 44ff493a5e1f32b0566fa6f9826e99da08998faa (patch) | |
tree | 3c72aed14a612fb0056f51b536215bd7c7d8cde8 /integration-test/src/test/resources/data/cm-data-subscriptions/cm-data-subscriptions@2023-09-21.yang | |
parent | 21171253eb47349832e1e1d4952a42051c19be05 (diff) | |
parent | 7cdd659c994607285bc8f5093905938a478d43c6 (diff) |
Merge "CM Data Subscriptions PoC/Performance test"
Diffstat (limited to 'integration-test/src/test/resources/data/cm-data-subscriptions/cm-data-subscriptions@2023-09-21.yang')
-rw-r--r-- | integration-test/src/test/resources/data/cm-data-subscriptions/cm-data-subscriptions@2023-09-21.yang | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/integration-test/src/test/resources/data/cm-data-subscriptions/cm-data-subscriptions@2023-09-21.yang b/integration-test/src/test/resources/data/cm-data-subscriptions/cm-data-subscriptions@2023-09-21.yang new file mode 100644 index 0000000000..552f13715b --- /dev/null +++ b/integration-test/src/test/resources/data/cm-data-subscriptions/cm-data-subscriptions@2023-09-21.yang @@ -0,0 +1,49 @@ +module cm-data-subscriptions { + yang-version 1.1; + namespace "org:onap:cps:ncmp"; + + prefix cmds; + + revision "2023-09-21" { + description + "First release, Proof of Concept & Performance"; + } + + container datastores { + + list datastore { + key "name"; + + leaf name { + type string; + } + + container cm-handles { + + list cm-handle { + key "id"; + + leaf id { + type string; + } + + container filters { + + list filter { + key "xpath"; + + leaf xpath { + type string; + } + + leaf-list subscribers { + type string; + } + + } + } + } + } + } + } +} |