import * as pulumi from "@pulumi/pulumi"; /** * Gets information about an existing Private DNS Resolver. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const test = azure.privatedns.getResolver({ * name: "example", * resourceGroupName: "example-resourcegroup-name", * }); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Network` - 2022-07-01 */ export declare function getResolver(args: GetResolverArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getResolver. */ export interface GetResolverArgs { /** * Name of the Private DNS Resolver. */ name: string; /** * Name of the Resource Group where the Private DNS Resolver exists. */ resourceGroupName: string; } /** * A collection of values returned by getResolver. */ export interface GetResolverResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The Azure Region where the Private DNS Resolver exists. */ readonly location: string; readonly name: string; readonly resourceGroupName: string; /** * The tags assigned to the Private DNS Resolver. */ readonly tags: { [key: string]: string; }; /** * The ID of the Virtual Network that is linked to the Private DNS Resolver. */ readonly virtualNetworkId: string; } /** * Gets information about an existing Private DNS Resolver. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const test = azure.privatedns.getResolver({ * name: "example", * resourceGroupName: "example-resourcegroup-name", * }); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Network` - 2022-07-01 */ export declare function getResolverOutput(args: GetResolverOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getResolver. */ export interface GetResolverOutputArgs { /** * Name of the Private DNS Resolver. */ name: pulumi.Input; /** * Name of the Resource Group where the Private DNS Resolver exists. */ resourceGroupName: pulumi.Input; }