diff options
author | Marek Gradzki <mgradzki@cisco.com> | 2017-06-16 14:36:52 +0200 |
---|---|---|
committer | Marek Gradzki <mgradzki@cisco.com> | 2017-06-16 14:55:14 +0200 |
commit | b4581d183065af6b82026003959b96fbe6850dd1 (patch) | |
tree | 6d7f8654ce4eeb13350a3d32314bd267a79c9c61 /ioam/api/src/main/yang/ioam-sb-export@2017-02-06.yang | |
parent | c312c69343e8336456a109ff82d9bc4c6dc9b1ea (diff) |
Rename yang files to match model revision
Also order of revisions was sorted starting from most current.
Change-Id: I21fd35cfdb1cc5601b3fb40c9f3755bd3b995b14
Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
Diffstat (limited to 'ioam/api/src/main/yang/ioam-sb-export@2017-02-06.yang')
-rw-r--r-- | ioam/api/src/main/yang/ioam-sb-export@2017-02-06.yang | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/ioam/api/src/main/yang/ioam-sb-export@2017-02-06.yang b/ioam/api/src/main/yang/ioam-sb-export@2017-02-06.yang new file mode 100644 index 000000000..f04028a38 --- /dev/null +++ b/ioam/api/src/main/yang/ioam-sb-export@2017-02-06.yang @@ -0,0 +1,46 @@ +module ioam-sb-export { + + yang-version 1; + + namespace "urn:cisco:params:xml:ns:yang:ioam-sb-export"; + + prefix ioam-sb-export; + + organization "Cisco Systems, Inc."; + contact + "Shwetha Bhandari <shwethab@cisco.com> + Sagar Srivastav <sagsriva@cisco.com>"; + + description + "This module contains a collection of YANG definitions for + managing in-band OAM based export + parameters."; + + revision 2017-02-06 { + description + "set source and collector addresses as mandatory"; + reference + ""; + } + + import ietf-inet-types { + prefix inet; + } + + container ioam-export { + + leaf disable { + type boolean; + } + + leaf collector-address { + mandatory true; + type inet:ipv4-address; + } + + leaf source-address { + mandatory true; + type inet:ipv4-address; + } + } +} |