blob: e1d53b66ba430c2c068848d951e53da038b7a7e2 [file] [log] [blame]
Scott Bakerc9d3d842021-09-17 11:32:53 -07001// SPDX-FileCopyrightText: 2021 Open Networking Foundation
2//
3// SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0
4
Scott Bakerfdbad762022-01-03 16:00:45 -08005module onf-connectivity-service {
Scott Bakerc9d3d842021-09-17 11:32:53 -07006 namespace "http://opennetworking.org/aether/connectivity-service";
7 prefix cs;
8
9 import ietf-inet-types { prefix inet; }
Scott Bakerfdbad762022-01-03 16:00:45 -080010 import ietf-yang-types{ prefix yg; }
11 import onf-aether-types { prefix at; }
Scott Bakerc9d3d842021-09-17 11:32:53 -070012
13 organization "Open Networking Foundation.";
14 contact "Scott Baker";
Scott Bakerfdbad762022-01-03 16:00:45 -080015 description
16 "An Aether Connectivity service is the linkage between the
17 ROC and a core that provides connectivity.";
Scott Bakerc9d3d842021-09-17 11:32:53 -070018
Scott Bakerfdbad762022-01-03 16:00:45 -080019 revision "2021-10-21" {
Scott Bakerc9d3d842021-09-17 11:32:53 -070020 description "An Aether Connectivity Service. Specifies the endpoints where the sdcore-adapter should push configuration to. A single connectivity service may be attached to multiple Enterprises.";
21 reference "RFC 6087";
22 }
23
24 typedef connectivity-service-id {
Scott Bakerfdbad762022-01-03 16:00:45 -080025 type yg:yang-identifier {
Scott Bakerc9d3d842021-09-17 11:32:53 -070026 length 1..32;
27 }
Scott Bakerfdbad762022-01-03 16:00:45 -080028 description "The typedef for connectivity-service-id";
Scott Bakerc9d3d842021-09-17 11:32:53 -070029 }
30
31 container connectivity-service {
32 description "The top level container";
33
34 list connectivity-service {
35 key "id";
36 description
37 "List of connectivity services";
38
39 leaf id {
40 type connectivity-service-id;
41 description "ID for this connectivity service.";
42 }
43
44 leaf display-name {
45 type string {
46 length 1..80;
47 }
48 description "display name to use in GUI or CLI";
PUSHP RAJba2e32f2021-11-02 10:39:24 +000049 }
Scott Bakerc9d3d842021-09-17 11:32:53 -070050
51 leaf description {
Scott Bakerfdbad762022-01-03 16:00:45 -080052 type at:description;
Scott Bakerc9d3d842021-09-17 11:32:53 -070053 description "description of this connectivity service";
54 }
55
Scott Bakerfdbad762022-01-03 16:00:45 -080056 leaf core-5g-endpoint {
Scott Bakerc9d3d842021-09-17 11:32:53 -070057 type inet:uri;
Scott Bakerfdbad762022-01-03 16:00:45 -080058 description "url of the 5g core";
Scott Bakerc9d3d842021-09-17 11:32:53 -070059 }
60
Scott Bakerfdbad762022-01-03 16:00:45 -080061 leaf acc-prometheus-url {
62 type inet:uri;
63 description
64 "URL of ACC prometheus";
PUSHP RAJba2e32f2021-11-02 10:39:24 +000065 }
Scott Bakerc9d3d842021-09-17 11:32:53 -070066 }
PUSHP RAJba2e32f2021-11-02 10:39:24 +000067 }
Scott Bakerc9d3d842021-09-17 11:32:53 -070068}