Bump upstream versions
[neutron.git] / model / src / main / yang / neutron-constants.yang
index 6b7eac581d6341f9f2c350273242884f2f0feb6d..cf1a209f9c52771443bd05b8f2a96e7ba7d3fb7d 100644 (file)
@@ -1,3 +1,10 @@
+/*
+ * Copyright (c) 2018 Intel Corporation and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
 module neutron-constants {
 
     yang-version 1;
@@ -10,7 +17,7 @@ module neutron-constants {
 
     contact "Ryan Moats <rmoats@us.ibm.com>";
 
-    revision "2015-20-07" {
+    revision "2015-07-12" {
         description "Initial revision";
     }
 
@@ -24,6 +31,11 @@ module neutron-constants {
         base protocol-base;
     }
 
+    identity protocol-terminated-https {
+        description "TERMINATED HTTPS protocol.";
+        base protocol-base;
+    }
+
     identity protocol-https {
         description "HTTPS protocol.";
         base protocol-base;
@@ -39,6 +51,21 @@ module neutron-constants {
         base protocol-base;
     }
 
+    identity protocol-icmp-v6 {
+        description "ICMPV6 protocol.";
+        base protocol-base;
+    }
+
+    identity protocol-udp {
+        description "UDP protocol.";
+        base protocol-base;
+    }
+
+    identity protocol-igmp {
+        description "IGMP protocol.";
+        base protocol-base;
+    }
+
     // PROBE
     identity probe-base {
         description "Base identity for all probes";
@@ -59,11 +86,31 @@ module neutron-constants {
         base probe-base;
     }
 
-    identity probe-icmp {
-        description "ICMP protocol.";
+    identity probe-ping {
+        description "PING protocol.";
         base probe-base;
     }
 
+    // FWaaS v1
+    identity fw-protocol-base {
+        description "Base identity for firewall protocol";
+    }
+
+    identity fw-protocol-tcp {
+        description "TCP protocol.";
+        base fw-protocol-base;
+    }
+
+    identity fw-protocol-udp {
+        description "UDP protocol.";
+        base fw-protocol-base;
+    }
+
+    identity fw-protocol-icmp {
+        description "ICMP protocol.";
+        base fw-protocol-base;
+    }
+
     // DIRECTION
     identity direction-base {
         description "Base identity for direction";
@@ -134,4 +181,4 @@ module neutron-constants {
         description "DHCP v6 stateless";
         base dhcpv6-base;
     }
-}
\ No newline at end of file
+}