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