Scott Baker | c9d3d84 | 2021-09-17 11:32:53 -0700 | [diff] [blame] | 1 | // SPDX-FileCopyrightText: 2021 Open Networking Foundation |
| 2 | // |
| 3 | // SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0 |
| 4 | |
| 5 | module onf-connectivity-service { |
| 6 | namespace "http://opennetworking.org/aether/connectivity-service"; |
| 7 | prefix cs; |
| 8 | |
| 9 | import ietf-inet-types { prefix inet; } |
| 10 | import ietf-yang-types{ prefix yg; } |
| 11 | import onf-aether-types { prefix at; } |
| 12 | |
| 13 | organization "Open Networking Foundation."; |
| 14 | contact "Scott Baker"; |
Scott Baker | cf7cb66 | 2021-11-18 14:25:50 -0800 | [diff] [blame] | 15 | description |
Scott Baker | c9d3d84 | 2021-09-17 11:32:53 -0700 | [diff] [blame] | 16 | "An Aether Connectivity service is the linkage between the |
| 17 | ROC and a core that provides connectivity."; |
| 18 | |
Scott Baker | 71d5c4e | 2021-10-21 23:59:57 -0700 | [diff] [blame] | 19 | revision "2021-10-21" { |
Scott Baker | c9d3d84 | 2021-09-17 11:32:53 -0700 | [diff] [blame] | 20 | 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 { |
| 25 | type yg:yang-identifier { |
| 26 | length 1..32; |
| 27 | } |
PUSHP RAJ | ba2e32f | 2021-11-02 10:39:24 +0000 | [diff] [blame] | 28 | description "The typedef for connectivity-service-id"; |
Scott Baker | c9d3d84 | 2021-09-17 11:32:53 -0700 | [diff] [blame] | 29 | } |
| 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"; |
Scott Baker | 71d5c4e | 2021-10-21 23:59:57 -0700 | [diff] [blame] | 49 | } |
Scott Baker | c9d3d84 | 2021-09-17 11:32:53 -0700 | [diff] [blame] | 50 | |
| 51 | leaf description { |
| 52 | type at:description; |
| 53 | description "description of this connectivity service"; |
| 54 | } |
| 55 | |
Scott Baker | c9d3d84 | 2021-09-17 11:32:53 -0700 | [diff] [blame] | 56 | leaf core-5g-endpoint { |
| 57 | type inet:uri; |
| 58 | description "url of the 5g core"; |
Scott Baker | 71d5c4e | 2021-10-21 23:59:57 -0700 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | leaf acc-prometheus-url { |
| 62 | type inet:uri; |
| 63 | description |
| 64 | "URL of ACC prometheus"; |
| 65 | } |
Scott Baker | c9d3d84 | 2021-09-17 11:32:53 -0700 | [diff] [blame] | 66 | } |
Scott Baker | 71d5c4e | 2021-10-21 23:59:57 -0700 | [diff] [blame] | 67 | } |
Scott Baker | c9d3d84 | 2021-09-17 11:32:53 -0700 | [diff] [blame] | 68 | } |