import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * DnsProxy data source */ export declare function getDnsProxy(args: GetDnsProxyArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDnsProxy. */ export interface GetDnsProxyArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * UUID of the resource */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getDnsProxy. */ export interface GetDnsProxyResult { readonly cache: outputs.GetDnsProxyCache; readonly default: outputs.GetDnsProxyDefault; /** * The device in which the resource is defined */ readonly device: string; readonly domainServers: outputs.GetDnsProxyDomainServer[]; readonly enabled: boolean; readonly folder: string; /** * UUID of the resource */ readonly id: string; readonly interfaces: string[]; readonly name: string; readonly snippet: string; readonly staticEntries: outputs.GetDnsProxyStaticEntry[]; readonly tcpQueries: outputs.GetDnsProxyTcpQueries; readonly tfid: string; readonly udpQueries: outputs.GetDnsProxyUdpQueries; } /** * DnsProxy data source */ export declare function getDnsProxyOutput(args: GetDnsProxyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDnsProxy. */ export interface GetDnsProxyOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * UUID of the resource */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getDnsProxy.d.ts.map