import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to access information about an existing Front Door (standard/premium) Origin Group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.cdn.getFrontdoorOriginGroup({ * name: "example-origin-group", * profileName: "example-profile", * resourceGroupName: "example-resources", * }); * ``` */ export declare function getFrontdoorOriginGroup(args: GetFrontdoorOriginGroupArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFrontdoorOriginGroup. */ export interface GetFrontdoorOriginGroupArgs { /** * Specifies the name of the Front Door Origin Group. */ name: string; /** * The name of the Front Door Profile within which Front Door Origin Group exists. */ profileName: string; /** * The name of the Resource Group where the Front Door Profile exists. */ resourceGroupName: string; } /** * A collection of values returned by getFrontdoorOriginGroup. */ export interface GetFrontdoorOriginGroupResult { /** * Specifies the ID of the Front Door Profile within which this Front Door Origin Group exists. */ readonly cdnFrontdoorProfileId: string; /** * A `healthProbe` block as defined below. */ readonly healthProbes: outputs.cdn.GetFrontdoorOriginGroupHealthProbe[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * A `loadBalancing` block as defined below. */ readonly loadBalancings: outputs.cdn.GetFrontdoorOriginGroupLoadBalancing[]; readonly name: string; readonly profileName: string; readonly resourceGroupName: string; readonly restoreTrafficTimeToHealedOrNewEndpointInMinutes: number; /** * Specifies whether session affinity is enabled on this host. */ readonly sessionAffinityEnabled: boolean; } /** * Use this data source to access information about an existing Front Door (standard/premium) Origin Group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.cdn.getFrontdoorOriginGroup({ * name: "example-origin-group", * profileName: "example-profile", * resourceGroupName: "example-resources", * }); * ``` */ export declare function getFrontdoorOriginGroupOutput(args: GetFrontdoorOriginGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFrontdoorOriginGroup. */ export interface GetFrontdoorOriginGroupOutputArgs { /** * Specifies the name of the Front Door Origin Group. */ name: pulumi.Input; /** * The name of the Front Door Profile within which Front Door Origin Group exists. */ profileName: pulumi.Input; /** * The name of the Resource Group where the Front Door Profile exists. */ resourceGroupName: pulumi.Input; }