import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * DnsSecurityProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // * // Data source to retrieve a single SCM DNS Security Profile object by its ID. * // * // Replace the ID with the UUID of the SCM DNS Profile you want to find. * const scmDnsProfile = scm.getDnsSecurityProfile({ * id: "18607c90-22fa-4627-8741-f0584d1fa7d6", * }); * export const scmDnsSecurityProfileDetails = { * profileId: scmDnsProfile.then(scmDnsProfile => scmDnsProfile.id), * folder: scmDnsProfile.then(scmDnsProfile => scmDnsProfile.folder), * name: scmDnsProfile.then(scmDnsProfile => scmDnsProfile.name), * }; * ``` */ export declare function getDnsSecurityProfile(args: GetDnsSecurityProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDnsSecurityProfile. */ export interface GetDnsSecurityProfileArgs { /** * 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 getDnsSecurityProfile. */ export interface GetDnsSecurityProfileResult { readonly botnetDomains: outputs.GetDnsSecurityProfileBotnetDomains; readonly description: string; /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; /** * The UUID of the DNS security profile */ readonly id: string; readonly name: string; readonly snippet: string; readonly tfid: string; } /** * DnsSecurityProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // * // Data source to retrieve a single SCM DNS Security Profile object by its ID. * // * // Replace the ID with the UUID of the SCM DNS Profile you want to find. * const scmDnsProfile = scm.getDnsSecurityProfile({ * id: "18607c90-22fa-4627-8741-f0584d1fa7d6", * }); * export const scmDnsSecurityProfileDetails = { * profileId: scmDnsProfile.then(scmDnsProfile => scmDnsProfile.id), * folder: scmDnsProfile.then(scmDnsProfile => scmDnsProfile.folder), * name: scmDnsProfile.then(scmDnsProfile => scmDnsProfile.name), * }; * ``` */ export declare function getDnsSecurityProfileOutput(args: GetDnsSecurityProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDnsSecurityProfile. */ export interface GetDnsSecurityProfileOutputArgs { /** * 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=getDnsSecurityProfile.d.ts.map