MonoCloud Management SDK
    Preparing search index...

    Interface PasswordStrengthOptions

    Password Strength Options Response: Represents the configuration for password complexity and strength requirements.

    PasswordStrengthOptions

    interface PasswordStrengthOptions {
        minimum_length: number;
        require_digit: boolean;
        require_lowercase_character: boolean;
        require_non_alphanumeric_character: boolean;
        require_uppercase_character: boolean;
        required_unique_characters_count: number;
    }
    Index

    Properties

    minimum_length: number

    Specifies the minimum number of characters required for a password.

    PasswordStrengthOptions

    require_digit: boolean

    Specifies whether at least one numeric digit is required in the password.

    PasswordStrengthOptions

    require_lowercase_character: boolean

    Specifies whether at least one lowercase letter is required in the password.

    PasswordStrengthOptions

    require_non_alphanumeric_character: boolean

    Specifies whether at least one non-alphanumeric character is required in the password.

    PasswordStrengthOptions

    require_uppercase_character: boolean

    Specifies whether at least one uppercase letter is required in the password.

    PasswordStrengthOptions

    required_unique_characters_count: number

    Specifies the minimum number of unique characters required in the password.

    PasswordStrengthOptions