aboutsummaryrefslogtreecommitdiffstats
path: root/cps-ncmp-service/src/main/resources/model/subscription.yang
blob: 2d4b207e17ffa7e9695f0c31638978f9cdc1e015 (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
module subscription {
    yang-version 1.1;
    namespace "org:onap:ncmp:subscription";

    prefix subs;

    revision "2023-21-03" {
        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;
            }

            container predicates {

                list targetCmHandles {
                    key "cmHandleId";

                    leaf cmHandleId {
                      type string;
                    }

                    leaf status {
                      type string;
                    }
                }

                leaf datastore {
                    type string;
                }
            }

        }
    }
}