blob: 18b9f47d01b905c55f12707d910b2bc2a75be096 [file] [log] [blame]
Peter K. Leef4d38d32016-07-23 02:47:38 -07001module cord-core {
2
3 namespace "urn:onlab:cord";
4 prefix cord;
5 yang-version 1.1;
6
7 organization
8 "Open Networking Lab (CORD) / Corenova Technologies";
9
10 contact
11 "Larry Peterson <llp@onlab.us>
12 Peter K. Lee <peter@corenova.com>";
13
14 description
15 "This module contains a collection of core models for CORD.
16
17 Copyright (c) 2016 ON.LAB and the persons identified as authors of
18 the code. All rights reserved.
19
20 Redistribution and use in source and binary forms, with or without
21 modification, is permitted pursuant to, and subject to the license
22 terms of the Apache License, Version 2.0 which accompanies this
23 distribution, and is available at
24 (http://www.apache.org/licenses/LICENSE-2.0).";
25
26 revision 2016-07-22 {
27 description "Initial revision.";
28 }
29
30 import xos-core { prefix xos; }
31 import cord-subscriber { prefix csub; }
32 import corenova-node { prefix node; }
33
34 /*** primary configuration tree for this module ***/
35
Peter K. Lee4302f472016-07-28 03:51:39 -070036 list subscriber {
Peter K. Leef0f33d72016-08-04 00:40:20 -070037 uses csub:subscriber;
Peter K. Lee4302f472016-07-28 03:51:39 -070038 key "id";
Peter K. Leef4d38d32016-07-23 02:47:38 -070039
Peter K. Lee4302f472016-07-28 03:51:39 -070040 description
41 "Authorative list of all subscriber instances";
Peter K. Leef4d38d32016-07-23 02:47:38 -070042
Peter K. Lee7b2bdbc2016-08-16 00:01:18 -070043 leaf label {
Peter K. Lee4302f472016-07-28 03:51:39 -070044 config false;
45 type string {
46 pattern '^cordSubscriber-\w+$';
Peter K. Leef4d38d32016-07-23 02:47:38 -070047 }
Peter K. Lee4302f472016-07-28 03:51:39 -070048 }
49 action delete;
50 }
51
52 // here we augment the /api/tenant API configuration tree in 'xos' module
53 augment "/xos:api/xos:tenant" {
54 container cord {
55 node:link subscriber { path "/cord:subscriber"; }
Peter K. Leef4d38d32016-07-23 02:47:38 -070056 }
57 }
Peter K. Leef4d38d32016-07-23 02:47:38 -070058}