blob: 4bfa3a7566177ff4f94529eca8fcc8aa5d0d8b79 [file] [log] [blame]
Amit Wankhede3d0bc582021-10-18 22:28:50 +05301// SPDX-FileCopyrightText: 2021 Open Networking Foundation
2//
Sean Condon160ec1d2022-02-08 12:58:25 +00003// SPDX-License-Identifier: Apache-2.0
Amit Wankhede3d0bc582021-10-18 22:28:50 +05304
5module prom-label-proxy {
6 namespace "http://opennetworking.org/promlabelproxy/config/";
7 prefix plp;
PUSHP RAJba2e32f2021-11-02 10:39:24 +00008
Amit Wankhede3d0bc582021-10-18 22:28:50 +05309 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}