MonoCloud Management SDK
    Preparing search index...

    Interface PasswordAuthenticatorOptions

    Password Authenticator Options Response: Represents the configuration for password-based authentication.

    PasswordAuthenticatorOptions

    interface PasswordAuthenticatorOptions {
        enable_sign_in: boolean;
        enable_sign_up: boolean;
        expiry?: number | null;
        prompt_password_on_initial_screen: boolean;
        reuse: PasswordReuseOptions;
        strength: PasswordStrengthOptions;
    }
    Index

    Properties

    enable_sign_in: boolean

    Specifies whether users can sign in using password-based authentication.

    PasswordAuthenticatorOptions

    enable_sign_up: boolean

    Specifies whether new users can sign up using password-based authentication.

    PasswordAuthenticatorOptions

    expiry?: number | null

    Specifies the password expiration interval (in days). When empty, passwords do not expire.

    PasswordAuthenticatorOptions

    prompt_password_on_initial_screen: boolean

    Specifies whether the password is collected on the initial sign-in screen alongside the identifier.

    PasswordAuthenticatorOptions

    Password reuse policy configuration.

    PasswordAuthenticatorOptions

    Password strength policy configuration.

    PasswordAuthenticatorOptions