Amit Wankhede | 3d0bc58 | 2021-10-18 22:28:50 +0530 | [diff] [blame] | 1 | // SPDX-FileCopyrightText: 2021 Open Networking Foundation
|
| 2 | //
|
| 3 | // SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0
|
| 4 |
|
| 5 | module prom-label-proxy {
|
| 6 | namespace "http://opennetworking.org/promlabelproxy/config/";
|
| 7 | prefix plp;
|
PUSHP RAJ | ba2e32f | 2021-11-02 10:39:24 +0000 | [diff] [blame] | 8 |
|
Amit Wankhede | 3d0bc58 | 2021-10-18 22:28:50 +0530 | [diff] [blame] | 9 | organization "Open Networking Foundation.";
|
| 10 | contact "Amit Wankhede";
|
| 11 | description "A Aether groups and prom label configuration";
|
| 12 |
|
| 13 | revision "2021-09-24" {
|
| 14 | description "Prom label proxy user configuration";
|
| 15 | reference "RFC 6087";
|
| 16 | }
|
| 17 |
|
| 18 | container user-groups {
|
| 19 | description "The top level container";
|
| 20 | list user-group {
|
| 21 | key "name";
|
| 22 | description "A list of user groups";
|
| 23 | leaf name { type string;description "name of user group";}
|
| 24 | list label {
|
| 25 | key "name";
|
| 26 | description "A list of labels";
|
| 27 | leaf name { type string;mandatory true;description "name of label";}
|
| 28 | leaf value { type string;mandatory true;description "value of label";}
|
| 29 | }
|
| 30 | }
|
| 31 | }
|
| 32 |
|
| 33 | }
|