import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets information about an existing Private DNS Resolver Inbound Endpoint. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.privatedns.getResolverInboundEndpoint({ * name: "example-drie", * privateDnsResolverId: "example-private-dns-resolver-id", * }); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Network` - 2022-07-01 */ export declare function getResolverInboundEndpoint(args: GetResolverInboundEndpointArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getResolverInboundEndpoint. */ export interface GetResolverInboundEndpointArgs { /** * Name of the Private DNS Resolver Inbound Endpoint. */ name: string; /** * ID of the Private DNS Resolver. */ privateDnsResolverId: string; } /** * A collection of values returned by getResolverInboundEndpoint. */ export interface GetResolverInboundEndpointResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * A list of `ipConfigurations` block as defined below. */ readonly ipConfigurations: outputs.privatedns.GetResolverInboundEndpointIpConfiguration[]; /** * The Azure Region where the Private DNS Resolver Inbound Endpoint exists. */ readonly location: string; readonly name: string; readonly privateDnsResolverId: string; /** * The tags assigned to the Private DNS Resolver Inbound Endpoint. */ readonly tags: { [key: string]: string; }; } /** * Gets information about an existing Private DNS Resolver Inbound Endpoint. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.privatedns.getResolverInboundEndpoint({ * name: "example-drie", * privateDnsResolverId: "example-private-dns-resolver-id", * }); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Network` - 2022-07-01 */ export declare function getResolverInboundEndpointOutput(args: GetResolverInboundEndpointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getResolverInboundEndpoint. */ export interface GetResolverInboundEndpointOutputArgs { /** * Name of the Private DNS Resolver Inbound Endpoint. */ name: pulumi.Input; /** * ID of the Private DNS Resolver. */ privateDnsResolverId: pulumi.Input; }