Bump to yangtools 2.0.12
[transportpce.git] / api / src / main / yang / service_path / transportpce-renderer.yang
1 module transportpce-renderer {
2   namespace "http://org/transportpce/C-interface/renderer";
3   prefix transportpce-renderer;
4
5   import ietf-yang-types {
6     prefix yang;
7   }
8   import org-openroadm-common-service-types {
9     prefix org-openroadm-common-service-types;
10   }
11   import transportpce-common-service-path-types {
12     prefix transportpce-common-service-path-types;
13     revision-date 2017-10-16;
14   }
15   import org-openroadm-topology {
16     prefix org-openroadm-topology;
17   }
18   import transportpce-pathDescription {
19     prefix transportpce-pathDescription;
20     revision-date 2017-10-17;
21   }
22
23   organization
24     "transportPCE";
25   contact
26     "transportPCE committers - ODL";
27   description
28     "YANG definitions of C interface (transportPCE). Adapted from service definition (openroadm)
29      Copyright © 2017 Orange, Inc. and others.  All rights reserved.
30
31      openroadm copyright:
32       Copyright of the Members of the Open ROADM MSA Agreement dated (c) 2016,
33       AT&T Intellectual Property.  All other rights reserved.
34
35       Redistribution and use in source and binary forms, with or without modification,
36       are permitted provided that the following conditions are met:
37
38       * Redistributions of source code must retain the above copyright notice, this
39         list of conditions and the following disclaimer.
40       * Redistributions in binary form must reproduce the above copyright notice,
41         this list of conditions and the following disclaimer in the documentation and/or
42         other materials provided with the distribution.
43       * Neither the Members of the Open ROADM MSA Agreement nor the names of its
44         contributors may be used to endorse or promote products derived from this software
45         without specific prior written permission.
46
47       THIS SOFTWARE IS PROVIDED BY THE MEMBERS OF THE OPEN ROADM MSA  AGREEMENT ''AS IS''
48       AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
49       WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
50       IN NO EVENT THE MEMBERS OF THE OPEN ROADM MSA  AGREEMENT BE LIABLE FOR ANY DIRECT,
51       INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
52       NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;  LOSS OF USE, DATA,
53       OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
54       WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
55       ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
56       POSSIBILITY OF SUCH DAMAGE";
57
58   revision 2017-10-17 {
59     description
60       "Version 1.6";
61   }
62
63   rpc service-implementation-request {
64     input {
65       leaf service-name {
66         type string;
67         description
68           "Identifier for the service to be created in
69            the ROADM network, e.g., CLFI, CLCI, etc. This is reported against the service, but may not get reflected in the service in the network.";
70         mandatory true;
71       }
72       uses transportpce-common-service-path-types:service-handler-header;
73       container service-a-end {
74         uses transportpce-common-service-path-types:service-endpoint-sp;
75       }
76       container service-z-end {
77         uses transportpce-common-service-path-types:service-endpoint-sp;
78       }
79       container path-description {
80         uses transportpce-pathDescription:path-description;
81       }
82     }
83     output {
84        uses org-openroadm-common-service-types:configuration-response-common;
85     }
86   }
87
88   rpc service-delete {
89     input {
90       leaf service-name {
91         type string;
92         description
93           "Identifier for the service to be created in
94            the ROADM network, e.g., CLFI, CLCI, etc. This is reported against the service, but may not get reflected in the service in the network.";
95         mandatory true;
96       }
97       uses transportpce-common-service-path-types:service-handler-header;
98     }
99     output {
100          uses org-openroadm-common-service-types:configuration-response-common;
101     }
102   }
103
104 notification service-rpc-result-sp {
105     description
106       "This Notification indicates result of  service RPC and provides the topology";
107     leaf notification-type {
108       type transportpce-common-service-path-types:service-path-notification-types;
109     }
110     container path-topology {
111       uses org-openroadm-topology:topology;
112     }
113     uses transportpce-common-service-path-types:rpc-response-status-ex;
114     uses org-openroadm-common-service-types:service-notification-result;
115   }
116 }