MonoCloud Management SDK
    Preparing search index...

    Interface AccountProtectionUserLockoutOptions

    Account Protection User Lockout Options Response: Represents configuration for locking user accounts after repeated failed authentication attempts.

    AccountProtectionUserLockoutOptions

    interface AccountProtectionUserLockoutOptions {
        allowed_ips: string[];
        enabled: boolean;
        ip_lockout_time_span: number;
        lockout_type: UserLockoutTypes;
        max_failed_access_attempts: number;
        user_lockout_time_span: number;
        user_unblock: AccountProtectionUserUnblockOptions;
    }
    Index

    Properties

    allowed_ips: string[]

    Allowlisted IP addresses that are exempt from lockout enforcement.

    AccountProtectionUserLockoutOptions

    enabled: boolean

    Enables user lockout protection.

    AccountProtectionUserLockoutOptions

    ip_lockout_time_span: number

    IP lockout duration (in minutes).

    AccountProtectionUserLockoutOptions

    lockout_type: UserLockoutTypes

    The lockout enforcement mode (IP-based or user-account-based).

    AccountProtectionUserLockoutOptions

    max_failed_access_attempts: number

    Maximum failed sign-in attempts allowed before lockout (inclusive).

    AccountProtectionUserLockoutOptions

    user_lockout_time_span: number

    User account lockout duration (in minutes).

    AccountProtectionUserLockoutOptions

    The user unblock configuration.

    AccountProtectionUserLockoutOptions