import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Use this data source to access information about the tenant's attack protection settings. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as auth0 from "@pulumi/auth0"; * * const myProtection = auth0.getAttackProtection({}); * ``` */ export declare function getAttackProtection(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getAttackProtection. */ export interface GetAttackProtectionResult { /** * Bot detection configuration to identify and prevent automated threats. */ readonly botDetections: outputs.GetAttackProtectionBotDetection[]; /** * Breached password detection protects your applications from bad actors logging in with stolen credentials. */ readonly breachedPasswordDetections: outputs.GetAttackProtectionBreachedPasswordDetection[]; /** * Brute-force protection safeguards against a single IP address attacking a single user account. */ readonly bruteForceProtections: outputs.GetAttackProtectionBruteForceProtection[]; /** * CAPTCHA configuration for attack protection. */ readonly captchas: outputs.GetAttackProtectionCaptcha[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Suspicious IP throttling blocks traffic from any IP address that rapidly attempts too many logins or signups. */ readonly suspiciousIpThrottlings: outputs.GetAttackProtectionSuspiciousIpThrottling[]; } /** * Use this data source to access information about the tenant's attack protection settings. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as auth0 from "@pulumi/auth0"; * * const myProtection = auth0.getAttackProtection({}); * ``` */ export declare function getAttackProtectionOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output;