Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RoleValues

import type { RoleValues } from "https://aws-api.deno.dev/v0.3/services/grafana.ts?docs=full";

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.

interface RoleValues {
admin?: string[] | null;
editor?: string[] | null;
}

§Properties

§
admin?: string[] | null
[src]

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

§
editor?: string[] | null
[src]

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