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

IdpMetadata

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

A structure containing the identity provider (IdP) metadata used to integrate the identity provider with this workspace. You can specify the metadata either by providing a URL to its location in the url parameter, or by specifying the full metadata in XML format in the xml parameter.

interface IdpMetadata {
url?: string | null;
xml?: string | null;
}

§Properties

§
url?: string | null
[src]

The URL of the location containing the metadata.

§
xml?: string | null
[src]

The actual full metadata file, in XML format.