forked from ict-strauss/COP
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathservice-path-computation.yang
60 lines (46 loc) · 1.06 KB
/
service-path-computation.yang
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
module service-path-computation {
yang-version 1;
namespace "http://ict-strauss.eu/cop/service-path-computation";
prefix s-path;
import service-call {
prefix sc;
}
organization "CTTC";
revision "2015-05-30" {
description
"Service Path Computation module for STRAUSS";
}
grouping path_request{
description "";
leaf request-id{
type string;
}
container aEnd{
uses sc:endpoint;
}
container zEnd{
uses sc:endpoint;
}
container traffic_parameters{
description "TrafficParam covers service specific traffic attributes";
uses sc:traffic_params;
}
}
grouping path_reply{
description "";
leaf reply-id{
type string;
}
container path{
uses sc:path-type;
}
}
rpc path_computation{
input {
uses path_request;
}
output{
uses path_reply;
}
}
}