RIFT-14481 No create-time on VLR
[osm/SO.git] / models / plugins / yang / mano-types.yang
index e7c7d3d..3411cb7 100644 (file)
@@ -109,6 +109,22 @@ module mano-types
         Only applies to parameters with default values.";
       type boolean;
     }
+    leaf parameter-type {
+      description "Type of this parameter, whether this in IN or OUT";
+      type enumeration {
+       enum OUT;
+       enum IN;
+      }
+      default "IN";
+    }
+    leaf parameter-path {
+      description "A Leafref to the parameter path with the attribute selection.
+                   At present only attribute ip-address() is supported.
+                   For example, to get the ip address of VNF connection point
+                   the xpath would look something along the following lines,
+                   /vnfd-catalog/vnfd[id='x']/connection-point[name='cp']/ip-address()";
+      type string;
+    }
   }