mirror of
https://github.com/Telecominfraproject/oopt-gnpy.git
synced 2025-11-02 11:07:57 +00:00
Signed-off-by: EstherLerouzic <esther.lerouzic@orange.com> Change-Id: I75b0cc3c3ce84dc724e588f918bddf0a5a97225d
54 lines
1.3 KiB
YANG
54 lines
1.3 KiB
YANG
module gnpy-api {
|
|
yang-version 1.1;
|
|
namespace "gnpy:gnpy-api";
|
|
prefix gnpyapi;
|
|
|
|
import gnpy-network-topology {
|
|
prefix gnpynt;
|
|
}
|
|
import gnpy-path-computation-simplified {
|
|
prefix gnpypc;
|
|
}
|
|
import gnpy-eqpt-config {
|
|
prefix gnpyeqpt;
|
|
}
|
|
|
|
organization
|
|
"Telecom Infra Project OOPT PSE Working Group";
|
|
contact
|
|
"WG Web: <https://github.com/Telecominfraproject/oopt-gnpy>
|
|
contact: <mailto:ahmed.triki@orange.com>
|
|
contact: <mailto:esther.lerouzic@orange.com>
|
|
";
|
|
description
|
|
"YANG model for gnpy api input for path computation - TransportPCE preversion";
|
|
|
|
revision 2020-10-22 {
|
|
description
|
|
"draft for experimental/2020-candi";
|
|
reference
|
|
"YANG model for api input for path computation with gnpy";
|
|
}
|
|
|
|
container service {
|
|
description
|
|
"Describe the service file to connect to gnpy";
|
|
uses gnpypc:service;
|
|
}
|
|
container result {
|
|
uses gnpypc:result;
|
|
description
|
|
"Describe the response object to gnpy";
|
|
}
|
|
container topology {
|
|
description
|
|
"Describe the topology file to connect to gnpy";
|
|
uses gnpynt:topo;
|
|
}
|
|
container equipment {
|
|
description
|
|
"Describe the equipment library to connect to gnpy";
|
|
uses gnpyeqpt:eqpt;
|
|
}
|
|
}
|