updating neutron-qos yang file for Qos Rule Types to change the model from Config...
[neutron.git] / model / src / main / yang / neutron-attrs.yang
index eb63eadd8cd60ee1d56d8fb8788793e04d73ad05..1d1f41c8318b0c26b44af6a7a3b1d0b8cd1daa35 100644 (file)
@@ -14,23 +14,20 @@ module neutron-attrs {
     prefix neutron-attrs;
 
     import ietf-yang-types { prefix "yang"; revision-date "2013-07-15";}
-    // It requires rfc6991 (revision 2013-07-15), but odl don't have it, so this patch verify build will fail.
-    import ietf-inet-types { prefix "inet"; revision-date 2010-09-24; }
 
     organization "OpenDaylight Neutron Group";
 
     contact "J. Gregory Hall <ghall@brocade.com>, Kiran Sreenivasa <kkoushik@brocade.com>";
 
-    description "This YANG module defines groupings that are used by Openstack
-        Ice House Neutron YANG modules.";
+    description "This YANG module defines groupings that are used
+        by OpenDaylight Neutron YANG modules.";
 
-    revision "2014-10-02" {
+    revision "2015-07-12" {
         description
-                "Initial version of attributes used by OpenStack Ice House Neutron
-                models";
+                "OpenDaylight Beryllium release";
     }
 
-    grouping base-attrs {
+    grouping base-attributes {
 
         leaf uuid {
             type yang:uuid;
@@ -44,23 +41,19 @@ module neutron-attrs {
 
         leaf tenant-id {
             type yang:uuid;
-            description "Admin-only. The UUID of the tenant that will own the network.
-                        This tenant can be different from the tenant that makes the create
-                        network request. However, only administrative users can specify
-                        a tenant ID other than their own. You cannot change this value
-                        through authorization policies.";
+            description "The UUID of the tenant that will own the object.";
         }
     }
 
-    grouping admin-attrs {
+    grouping admin-attributes {
         leaf admin-state-up {
             type boolean;
-            description "The administrative state of the network, which is up (true) or
+            description "The administrative state of the object, which is up (true) or
                         down (false).";
         }
         leaf status {
             type string;
-            description "The network status.";
+            description "The object status.";
         }
     }
 }