import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Front Door (standard/premium) Endpoint. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.cdn.getFrontdoorEndpoint({ * name: "existing-endpoint", * profileName: "existing-cdn-profile", * resourceGroupName: "existing-resources", * }); * ``` */ export declare function getFrontdoorEndpoint(args: GetFrontdoorEndpointArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFrontdoorEndpoint. */ export interface GetFrontdoorEndpointArgs { /** * Specifies the name of the Front Door Endpoint. */ name: string; /** * The name of the Front Door Profile within which Front Door Endpoint exists. */ profileName: string; /** * The name of the Resource Group where the Front Door Profile exists. */ resourceGroupName: string; } /** * A collection of values returned by getFrontdoorEndpoint. */ export interface GetFrontdoorEndpointResult { /** * Specifies whether this Front Door Endpoint is enabled or not. */ readonly enabled: boolean; /** * Specifies the host name of the Front Door Endpoint, in the format `{endpointName}.{dnsZone}` (for example, `contoso.azureedge.net`). */ readonly hostName: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; readonly profileName: string; readonly resourceGroupName: string; /** * Specifies a mapping of Tags assigned to this Front Door Endpoint. */ readonly tags: { [key: string]: string; }; } /** * Use this data source to access information about an existing Front Door (standard/premium) Endpoint. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.cdn.getFrontdoorEndpoint({ * name: "existing-endpoint", * profileName: "existing-cdn-profile", * resourceGroupName: "existing-resources", * }); * ``` */ export declare function getFrontdoorEndpointOutput(args: GetFrontdoorEndpointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFrontdoorEndpoint. */ export interface GetFrontdoorEndpointOutputArgs { /** * Specifies the name of the Front Door Endpoint. */ name: pulumi.Input; /** * The name of the Front Door Profile within which Front Door Endpoint exists. */ profileName: pulumi.Input; /** * The name of the Resource Group where the Front Door Profile exists. */ resourceGroupName: pulumi.Input; }