Module Values.RoleValuesSource

This structure defines which groups defined in the SAML assertion attribute are to be mapped to the Grafana Admin and Editor roles in the workspace. SAML authenticated users not part of Admin or Editor role groups have Viewer permission over the workspace.

Sourcetype nonrec t = {
  1. editor : RoleValueList.t option;
    (*

    A list of groups from the SAML assertion attribute to grant the Grafana Editor role to.

    *)
  2. admin : RoleValueList.t option;
    (*

    A list of groups from the SAML assertion attribute to grant the Grafana Admin role to.

    *)
}
Sourceval make : ?editor:??? -> ?admin:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of RoleValue.t ] list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t