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