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

SamlIdpConfig

import type { SamlIdpConfig } from "https://googleapis.deno.dev/v1/cloudidentity:v1.ts";

SAML IDP (identity provider) configuration.

interface SamlIdpConfig {
changePasswordUri?: string;
entityId?: string;
logoutRedirectUri?: string;
singleSignOnServiceUri?: string;
}

§Properties

§
changePasswordUri?: string
[src]

The Change Password URL of the identity provider. Users will be sent to this URL when changing their passwords at myaccount.google.com. This takes precedence over the change password URL configured at customer-level. Must use HTTPS.

§
entityId?: string
[src]

Required. The SAML Entity ID of the identity provider.

§
logoutRedirectUri?: string
[src]

The Logout Redirect URL (sign-out page URL) of the identity provider. When a user clicks the sign-out link on a Google page, they will be redirected to this URL. This is a pure redirect with no attached SAML LogoutRequest i.e. SAML single logout is not supported. Must use HTTPS.

§
singleSignOnServiceUri?: string
[src]

Required. The SingleSignOnService endpoint location (sign-in page URL) of the identity provider. This is the URL where the AuthnRequest will be sent. Must use HTTPS. Assumed to accept the HTTP-Redirect binding.