MonoCloud Management SDK
    Preparing search index...

    Interface PatchPasswordStrengthOptionsRequest

    Patch Password Strength Options Request: Used to partially update password complexity and strength requirements.

    PatchPasswordStrengthOptionsRequest

    interface PatchPasswordStrengthOptionsRequest {
        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.

    PatchPasswordStrengthOptionsRequest

    require_digit?: boolean

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

    PatchPasswordStrengthOptionsRequest

    require_lowercase_character?: boolean

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

    PatchPasswordStrengthOptionsRequest

    require_non_alphanumeric_character?: boolean

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

    PatchPasswordStrengthOptionsRequest

    require_uppercase_character?: boolean

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

    PatchPasswordStrengthOptionsRequest

    required_unique_characters_count?: number

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

    PatchPasswordStrengthOptionsRequest