import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * DosProtectionRule data source */ export declare function getDosProtectionRule(args: GetDosProtectionRuleArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDosProtectionRule. */ export interface GetDosProtectionRuleArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * The UUID of the DNS security profile */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getDosProtectionRule. */ export interface GetDosProtectionRuleResult { readonly action: outputs.GetDosProtectionRuleAction; readonly description: string; readonly destinations: string[]; /** * The device in which the resource is defined */ readonly device: string; readonly disabled: boolean; readonly folder: string; readonly froms: string[]; /** * The UUID of the DNS security profile */ readonly id: string; readonly logSetting: string; readonly name: string; readonly position: string; readonly protection: outputs.GetDosProtectionRuleProtection; readonly schedule: string; readonly services: string[]; readonly snippet: string; readonly sourceUsers: string[]; readonly sources: string[]; readonly tags: string[]; readonly tfid: string; readonly tos: string[]; } /** * DosProtectionRule data source */ export declare function getDosProtectionRuleOutput(args: GetDosProtectionRuleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDosProtectionRule. */ export interface GetDosProtectionRuleOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * The UUID of the DNS security profile */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getDosProtectionRule.d.ts.map