import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Front Door (standard/premium) Rule Set. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.cdn.getFrontdoorRuleSet({ * name: "existing-rule-set", * profileName: "existing-profile", * resourceGroupName: "existing-resources", * }); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Cdn` - 2024-02-01 */ export declare function getFrontdoorRuleSet(args: GetFrontdoorRuleSetArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFrontdoorRuleSet. */ export interface GetFrontdoorRuleSetArgs { /** * Specifies the name of the Front Door Rule Set to retrieve. */ name: string; /** * Specifies the name of the Front Door Profile where this Front Door Rule Set exists. */ profileName: string; /** * Specifies the name of the Resource Group where the Front Door Profile exists. */ resourceGroupName: string; } /** * A collection of values returned by getFrontdoorRuleSet. */ export interface GetFrontdoorRuleSetResult { /** * The ID of the Front Door Profile within which this Front Door Rule Set exists. */ readonly cdnFrontdoorProfileId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; readonly profileName: string; readonly resourceGroupName: string; } /** * Use this data source to access information about an existing Front Door (standard/premium) Rule Set. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.cdn.getFrontdoorRuleSet({ * name: "existing-rule-set", * profileName: "existing-profile", * resourceGroupName: "existing-resources", * }); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Cdn` - 2024-02-01 */ export declare function getFrontdoorRuleSetOutput(args: GetFrontdoorRuleSetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFrontdoorRuleSet. */ export interface GetFrontdoorRuleSetOutputArgs { /** * Specifies the name of the Front Door Rule Set to retrieve. */ name: pulumi.Input; /** * Specifies the name of the Front Door Profile where this Front Door Rule Set exists. */ profileName: pulumi.Input; /** * Specifies the name of the Resource Group where the Front Door Profile exists. */ resourceGroupName: pulumi.Input; }