Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The following yang model will be used to store the payload information of subscription data

UpdatedPrevious Update:  

Latest Update:  

Code Block
languagexml
titleSubscription YANG model
linenumberstrue
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;
            }


		            container predicates {
                leaf-list dmi-service-names {
 targets {
                  type string;
                }

                leaf datastore {
                  type string;
                }
            }

            list respondedCmHandle {
              key "cmHandleId status";

              leaf cmHandleId {
                 type string;
              }

              leaf status {
                 type string;
              }
            }

        }
    }
}



Note:

leaf-list dmi-service-names : added as part of

Jira
serverONAP Jira
serverId425b2b0a-557c-3c0c-b515-579789cceedb
keyCPS-1496


Onboarding via docker container

Starting CPS requires running the project via a docker-compose file wherein the following services/containers are set up:

...

POC: init-db container log output




Onboarding via JAVA / Spring boot

Image Added


Image Added


Image Added  Image Added


Image Added


Image Added


Image Added