Teach RFC8040 restconf about actions
[netconf.git] / restconf / restconf-nb-rfc8040 / src / test / resources / instanceidentifier / yang / instance-identifier-module.yang
index ffa5db62ad329c37a3cd9c669b7106f819bbb3e8..6779d00de1ebb1dea6bc7c72c0f5406addc070b8 100644 (file)
@@ -1,12 +1,20 @@
 module instance-identifier-module {
+  yang-version 1.1;
   namespace "instance:identifier:module";
 
   prefix "iimodule";
-  revision 2014-01-17 {
-  }
+  revision 2014-01-17;
 
-    container cont {
-        container cont1 {
+  container cont {
+    container cont1 {
+      action reset {
+        input {
+          leaf delay {
+            type uint32;
+            default 0;
+          }
         }
+      }
     }
-}
\ No newline at end of file
+  }
+}