diff options
author | Luke Gleeson <luke.gleeson@est.tech> | 2023-01-27 13:37:17 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2023-01-27 13:37:17 +0000 |
commit | 14d561920cf336e6acbfc44460a12946ea26dae7 (patch) | |
tree | 8498447d755cb3d7cbd0198a166ed21eb6c49b08 /cps-ncmp-service/src/main | |
parent | 2dc3da404a245dfb12470372ba183b59b81955ff (diff) | |
parent | f6f16f5bb9910cd5d6ad82d4d9115454914cd535 (diff) |
Merge "Define and onboard model for subscription events"
Diffstat (limited to 'cps-ncmp-service/src/main')
-rw-r--r-- | cps-ncmp-service/src/main/resources/model/subscription.yang | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/cps-ncmp-service/src/main/resources/model/subscription.yang b/cps-ncmp-service/src/main/resources/model/subscription.yang new file mode 100644 index 0000000000..c5dee43802 --- /dev/null +++ b/cps-ncmp-service/src/main/resources/model/subscription.yang @@ -0,0 +1,33 @@ +module subscription { + yang-version 1.1; + namespace "org:onap:ncmp:subscription"; + + prefix subs; + + revision "2022-10-12" { + description + "NCMP subscription model"; + } + + container subscription-registry { + list subscription { + key "clientID clientName"; + + leaf clientID { + type string; + } + + leaf clientName { + type string; + } + + leaf topic { + type string; + } + + leaf isTagged { + type boolean; + } + } + } +}
\ No newline at end of file |