import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * DosProtectionProfile data source */ export declare function getDosProtectionProfile(args: GetDosProtectionProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDosProtectionProfile. */ export interface GetDosProtectionProfileArgs { /** * 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 getDosProtectionProfile. */ export interface GetDosProtectionProfileResult { readonly description: string; /** * The device in which the resource is defined */ readonly device: string; readonly flood: outputs.GetDosProtectionProfileFlood; readonly folder: string; /** * The UUID of the DNS security profile */ readonly id: string; readonly name: string; readonly resource: outputs.GetDosProtectionProfileResource; readonly snippet: string; readonly tfid: string; readonly type: string; } /** * DosProtectionProfile data source */ export declare function getDosProtectionProfileOutput(args: GetDosProtectionProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDosProtectionProfile. */ export interface GetDosProtectionProfileOutputArgs { /** * 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=getDosProtectionProfile.d.ts.map