X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=models%2Fplugins%2Fyang%2Fvnfd.yang;h=46c5edd31f41f4ae00b46e238dc553c45d9896db;hb=refs%2Fchanges%2F67%2F767%2F1;hp=81bb2aa7fb345e0b06f90435c7004a994f10d3ea;hpb=97b74b6a87ca8827749782653e89865d9d1108a4;p=osm%2FSO.git diff --git a/models/plugins/yang/vnfd.yang b/models/plugins/yang/vnfd.yang index 81bb2aa7..46c5edd3 100644 --- a/models/plugins/yang/vnfd.yang +++ b/models/plugins/yang/vnfd.yang @@ -67,6 +67,11 @@ module vnfd description "Type of the connection point."; type manotypes:connection-point-type; } + + leaf static-ip-address { + description "Static IP address for the connection point"; + type inet:ip-address; + } } grouping virtual-interface { @@ -115,14 +120,7 @@ module vnfd } } - container vnfd-catalog { - - description - "Virtual Network Function Descriptor (VNFD)."; - - list vnfd { - key "id"; - + grouping vnfd-descriptor { leaf id { description "Identifier for the VNFD."; type string; @@ -278,6 +276,7 @@ module vnfd } } } + uses manotypes:provider-network; } @@ -490,7 +489,7 @@ module vnfd key "name"; uses manotypes:placement-group-info; - + list member-vdus { description @@ -504,7 +503,17 @@ module vnfd } } } - } + } + + container vnfd-catalog { + description + "Virtual Network Function Descriptor (VNFD)."; + + list vnfd { + key "id"; + + uses vnfd-descriptor; + } } }