Type Alias IDPsStatus

type IDPsStatus = {
    active_interactive_idps_count?: number;
    idps_metadata?: {
        active?: boolean;
        interactive?: boolean;
        provider?: IDPProvider;
    }[];
}
Index

Properties

active_interactive_idps_count?: number

The number of active interactive IdPs.

idps_metadata?: {
    active?: boolean;
    interactive?: boolean;
    provider?: IDPProvider;
}[]

A list of IdP metadata.

Type declaration

  • Optionalactive?: boolean

    Indicates whether the IdP is available for use.

  • Optionalinteractive?: boolean

    Indicates whether the IdP is meant for interactive login.

  • Optionalprovider?: IDPProvider

    The identity provider to be used. If protocol is OIDC, the valid values are auth0, okta, generic, salesforce, keycloak, adfs, and azureAD. If protocol is jwtAuth, the valid value is external.