X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=build%2Fo1%2Fyang%2Fo-ran-sc-odu-interface-v1.yang;fp=build%2Fo1%2Fyang%2Fo-ran-sc-odu-interface-v1.yang;h=0000000000000000000000000000000000000000;hb=b92944068f8a7b643b333515e424517db4192b61;hp=ee19b93a11991a365a0f1f0066b1dad45d3a92b3;hpb=f01eb5471d34834e2ef1d8dbbfc4b2fe68403650;p=o-du%2Fl2.git diff --git a/build/o1/yang/o-ran-sc-odu-interface-v1.yang b/build/o1/yang/o-ran-sc-odu-interface-v1.yang deleted file mode 100644 index ee19b93a1..000000000 --- a/build/o1/yang/o-ran-sc-odu-interface-v1.yang +++ /dev/null @@ -1,80 +0,0 @@ -module o-ran-sc-odu-interface-v1 { - yang-version 1; - namespace "urn:o-ran:odu:interface:1.0"; - prefix rxad; - - import ietf-inet-types { prefix inet; } - - organization - "O-RAN Software Community"; - contact - "www.o-ran.org"; - description - "This module defines active interface information visible to operators - - Copyright 2020 the O-RAN Alliance. - - Licensed under the Apache License, Version 2.0 (the 'License'); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an 'AS IS' BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License."; - - revision 2020-01-29 { - description - "initial revision"; - reference - "O-RAN-OAM-Interface-Specification (O1)"; - } - - grouping interface-info { - leaf interface-name { - type string; - description - "The unique interface ID"; - } - leaf interface-address { - type inet:ip-address; - mandatory true; - description - "The local IP address to listen on for incoming - client connections. INADDR_ANY (0.0.0.0) or - INADDR6_ANY (0:0:0:0:0:0:0:0 a.k.a. ::) MUST be - used when the server is to listen on all IPv4 or - IPv6 addresses, respectively."; - } - leaf port { - type inet:port-number; - default "0"; - description - "The local port number to listen on for incoming - client connections. An invalid default value (0) - is used (instead of 'mandatory true') so that an - application level data model may 'refine' it with - an application specific default port number value."; - } - description - "interface information"; - } - - container odu { - container interfaces { - list interface { - key "interface-name"; - uses interface-info; - description - "The list of active interfaces in RIC"; - } - description - "State data container of the interfaces"; - } - description - "Root object for RIC interfaces"; - } -}