blob: 7096c18abcb30d5c57210df1dbf76b4ae096159d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
module subscription {
yang-version 1.1;
namespace "org:onap:ncmp:subscription";
prefix subs;
revision "2023-03-21" {
description
"NCMP subscription model";
}
container subscription-registry {
list subscription {
key "clientID subscriptionName";
leaf clientID {
type string;
}
leaf subscriptionName {
type string;
}
leaf topic {
type string;
}
leaf isTagged {
type boolean;
}
container predicates {
list targetCmHandles {
key "cmHandleId";
leaf cmHandleId {
type string;
}
leaf status {
type string;
}
leaf details {
type string;
}
}
leaf datastore {
type string;
}
}
}
}
}
|