forked from sonata-nfv/tng-sdk-benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Polished toolchain for YANG validation sonata-nfv#73
Signed-off-by: peusterm <[email protected]>
- Loading branch information
peusterm
committed
Mar 5, 2019
1 parent
906f83d
commit 70fbe88
Showing
10 changed files
with
524 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ hide <<leafref>> stereotype | |
hide <<leafref>> circle | ||
page 1x1 | ||
Title ietf-ped | ||
note top of pe_ietf_ped : <b>Namespace: </b> urn:ietf:params:xml:ns:yang:ietf-ped \n<b>Prefix: </b> pe \n<b>Organization : </b>\n \n<b>Contact : </b>\n \n<b>Revision : </b> 2019-02-21 \n | ||
note top of pe_ietf_ped : <b>Namespace: </b> urn:ietf:params:xml:ns:yang:ietf-ped \n<b>Prefix: </b> pe \n<b>Organization : </b>\nPaderborn University \n<b>Contact : </b>\nManuel Peuster <[email protected]> \n<b>Revision : </b> 2019-02-21 \n | ||
package "pe:ietf-ped" as pe_ietf_ped { | ||
class "ietf-ped" as ietf_ped << (M, #33CCFF) module>> | ||
class "ped" as ietf_ped_I_ped <<container>> | ||
|
@@ -21,9 +21,11 @@ ietf_ped_I_ped : descriptor-schema : string = https://github.com/mpeuster/tng- | |
ietf_ped_I_ped : vendor : string | ||
ietf_ped_I_ped : name : string | ||
ietf_ped_I_ped : version : string | ||
ietf_ped_I_ped : author : string | ||
ietf_ped_I_ped : description : string | ||
} | ||
|
||
center footer | ||
<size:20> UML Generated : 2019-02-28 22:37 </size> | ||
<size:20> UML Generated : 2019-03-05 14:49 </size> | ||
endfooter | ||
@enduml |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
ped: | ||
descriptor-schema: "https://github.com/sonata-nfv/tng-sdk-benchmark/blob/master/models/" | ||
vendor: "com.vendor" | ||
name: "my_example_ped" | ||
version: "0.1" | ||
author: "Manuel Peuster <[email protected]>" | ||
description: "Example PED." | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,9 +30,9 @@ module ietf-ped | |
{ | ||
namespace "urn:ietf:params:xml:ns:yang:ietf-ped"; | ||
prefix "pe"; | ||
organization ""; | ||
contact ""; | ||
description ""; | ||
organization "Paderborn University"; | ||
contact "Manuel Peuster <[email protected]>"; | ||
description "Performance Experiment Descriptor (PED) model."; | ||
|
||
revision 2019-02-21 { | ||
description | ||
|
@@ -43,26 +43,30 @@ module ietf-ped | |
container ped { | ||
description | ||
"Performance Experiment Descriptor (PED)"; | ||
|
||
leaf descriptor-schema { | ||
type string; | ||
default "https://github.com/mpeuster/tng-sdk-benchmark/raw/feature-73/models/ped.yang"; // update this | ||
description "Pointer to this data model."; | ||
} | ||
|
||
leaf vendor { | ||
type string; | ||
description "Vendor of the described experiments."; | ||
} | ||
|
||
leaf name { | ||
type string; | ||
description "Name of the described experiments."; | ||
} | ||
|
||
leaf version { | ||
type string; | ||
description "Version of the described experiments."; | ||
} | ||
leaf author { | ||
type string; | ||
description "Author of the described experiments."; | ||
} | ||
leaf description { | ||
type string; | ||
description "Generic description text."; | ||
} | ||
} | ||
} |
Oops, something went wrong.