diff options
author | Marek Gradzki <mgradzki@cisco.com> | 2016-12-13 14:01:31 +0100 |
---|---|---|
committer | Marek Gradzki <mgradzki@cisco.com> | 2016-12-14 12:29:58 +0100 |
commit | bbdedfea03d7977165c662fdbb9c4df645df3708 (patch) | |
tree | 93c34014cc94854326d66711c18a76a119cccda2 /v3po/api/src | |
parent | a5defc544b5664b138ecb51340c375bb664d6b52 (diff) |
HONEYCOMB-177: expose device instance attribute
Change-Id: I7a1a5a2d338c39bb7a5f869660fcce06ef59515d
Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
Diffstat (limited to 'v3po/api/src')
-rw-r--r-- | v3po/api/src/main/yang/v3po.yang | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/v3po/api/src/main/yang/v3po.yang b/v3po/api/src/main/yang/v3po.yang index 7f093c9fc..d1af6114c 100644 --- a/v3po/api/src/main/yang/v3po.yang +++ b/v3po/api/src/main/yang/v3po.yang @@ -338,6 +338,15 @@ module v3po { description "vhost-user settings"; } + grouping vhost-user-interface-config-attributes { + leaf device-instance { + type uint32; + mandatory false; + description "Custom device instance. Autogenerated will be used if not configured"; + } + description "vhost-user settings"; + } + grouping vhost-user-interface-state-attributes { leaf features { type uint64; @@ -552,6 +561,7 @@ module v3po { container vhost-user { when "../if:type = 'v3po:vhost-user'"; uses vhost-user-interface-base-attributes; + uses vhost-user-interface-config-attributes; } container vxlan { |