summaryrefslogtreecommitdiffstats
path: root/csit
diff options
context:
space:
mode:
authoraditya puthuparambil <aditya.puthuparambil@bell.ca>2022-02-16 06:47:43 +0000
committerGerrit Code Review <gerrit@onap.org>2022-02-16 06:47:43 +0000
commit4e1d5e0a179857bfe14296ae1153b2c1173278c8 (patch)
treef24f35805c709d435589ec7c413cb5b233b99b1a /csit
parent21fa4f207e7d36befc49a3f4926dc4f52678a45e (diff)
parentc76392f0491e357b444b3458cc26649f7dc1e7fb (diff)
Merge "Fragment handling decreasing performance for large number of cmHandles"
Diffstat (limited to 'csit')
-rw-r--r--csit/plans/cps/pnfsim/netconf-config/stores.yang126
1 files changed, 63 insertions, 63 deletions
diff --git a/csit/plans/cps/pnfsim/netconf-config/stores.yang b/csit/plans/cps/pnfsim/netconf-config/stores.yang
index b24ac0e1ac..59051f2a28 100644
--- a/csit/plans/cps/pnfsim/netconf-config/stores.yang
+++ b/csit/plans/cps/pnfsim/netconf-config/stores.yang
@@ -1,63 +1,63 @@
-module stores {
-
- yang-version 1.1;
-
- namespace "org:onap:ccsdk:sample";
-
- prefix book-store;
-
- import ietf-yang-types { prefix yang; }
- import ietf-inet-types { prefix inet; }
-
- revision "2020-09-15" {
- description
- "Sample Model";
- }
-
- typedef year {
- type uint16 {
- range "1000..9999";
- }
- }
-
- container bookstore {
-
- leaf bookstore-name {
- type string;
- }
-
- list categories {
-
- key "code";
-
- leaf code {
- type string;
- }
-
- leaf name {
- type string;
- }
-
- list books {
- key title;
-
- leaf title {
- type string;
- }
- leaf lang {
- type string;
- }
- leaf-list authors {
- type string;
- }
- leaf pub_year {
- type year;
- }
- leaf price {
- type uint64;
- }
- }
- }
- }
-}
-
+module stores {
+
+ yang-version 1.1;
+
+ namespace "org:onap:ccsdk:sample";
+
+ prefix book-store;
+
+ import ietf-yang-types { prefix yang; }
+ import ietf-inet-types { prefix inet; }
+
+ revision "2020-09-15" {
+ description
+ "Sample Model";
+ }
+
+ typedef year {
+ type uint16 {
+ range "1000..9999";
+ }
+ }
+
+ container bookstore {
+
+ leaf bookstore-name {
+ type string;
+ }
+
+ list categories {
+
+ key "code";
+
+ leaf code {
+ type string;
+ }
+
+ leaf name {
+ type string;
+ }
+
+ list books {
+ key title;
+
+ leaf title {
+ type string;
+ }
+ leaf lang {
+ type string;
+ }
+ leaf-list authors {
+ type string;
+ }
+ leaf pub_year {
+ type year;
+ }
+ leaf price {
+ type uint64;
+ }
+ }
+ }
+ }
+}
+