Auth0 Universal Components
    Preparing search index...

    Interface SsoProviderTabProps

    Props for SsoProviderTab component.

    interface SsoProviderTabProps {
        customMessages?: Partial<SsoProviderTabMessages>;
        formActions: SsoProviderDetailsFormActions;
        hasSsoAttributeSyncWarning?: boolean;
        idpConfig: any;
        isDeleting: boolean;
        isRemoving: boolean;
        isSyncingAttributes?: boolean;
        onAttributeSync?: () => void | Promise<void>;
        onDelete: (provider: IdpKnownResponse) => Promise<void>;
        onRemove: (provider: IdpKnownResponse) => Promise<void>;
        organization: OrganizationPrivate | null;
        provider: IdpKnownResponse | null;
        readOnly?: boolean;
        schema?: Partial<SsoProviderTabSchemas>;
        shouldAllowDeletion: boolean;
        styling?: ComponentStyling<SsoProviderTabClasses>;
    }

    Hierarchy

    Index

    Properties

    customMessages?: Partial<SsoProviderTabMessages>
    hasSsoAttributeSyncWarning?: boolean
    idpConfig: any
    isDeleting: boolean
    isRemoving: boolean
    isSyncingAttributes?: boolean
    onAttributeSync?: () => void | Promise<void>
    onDelete: (provider: IdpKnownResponse) => Promise<void>
    onRemove: (provider: IdpKnownResponse) => Promise<void>
    organization: OrganizationPrivate | null
    provider: IdpKnownResponse | null
    readOnly?: boolean
    schema?: Partial<SsoProviderTabSchemas>
    shouldAllowDeletion: boolean
    styling?: ComponentStyling<SsoProviderTabClasses>