MonoCloud Management SDK
    Preparing search index...

    Interface PatchAccountProtectionUserLockoutOptionsRequest

    Patch Account Protection User Lockout Options Request: Used to update user lockout behavior and thresholds.

    PatchAccountProtectionUserLockoutOptionsRequest

    interface PatchAccountProtectionUserLockoutOptionsRequest {
        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?: PatchAccountProtectionUserUnblockOptionsRequest;
    }
    Index

    Properties

    allowed_ips?: string[]

    Allowlisted IP addresses that are exempt from lockout enforcement.

    PatchAccountProtectionUserLockoutOptionsRequest

    enabled?: boolean

    Enables user lockout protection.

    PatchAccountProtectionUserLockoutOptionsRequest

    ip_lockout_time_span?: number

    IP lockout duration (in minutes).

    PatchAccountProtectionUserLockoutOptionsRequest

    lockout_type?: UserLockoutTypes

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

    PatchAccountProtectionUserLockoutOptionsRequest

    max_failed_access_attempts?: number

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

    PatchAccountProtectionUserLockoutOptionsRequest

    user_lockout_time_span?: number

    User account lockout duration (in minutes).

    PatchAccountProtectionUserLockoutOptionsRequest

    The user unblock configuration.

    PatchAccountProtectionUserLockoutOptionsRequest