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) Custom Domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.cdn.getFrontdoorCustomDomain({ * name: exampleAzurermCdnFrontdoorCustomDomain.name, * profileName: exampleAzurermCdnFrontdoorProfile.name, * resourceGroupName: exampleAzurermCdnFrontdoorProfile.resourceGroupName, * }); * ``` */ export declare function getFrontdoorCustomDomain(args: GetFrontdoorCustomDomainArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFrontdoorCustomDomain. */ export interface GetFrontdoorCustomDomainArgs { /** * The name of the Front Door Custom Domain. */ name: string; /** * The name of the Front Door Profile which the Front Door Custom Domain is bound to. */ profileName: string; /** * The name of the Resource Group where the Front Door Profile exists. */ resourceGroupName: string; } /** * A collection of values returned by getFrontdoorCustomDomain. */ export interface GetFrontdoorCustomDomainResult { /** * The ID of the Front Door Profile which the Front Door Custom Domain is bound to. */ readonly cdnFrontdoorProfileId: string; readonly dnsZoneId: string; /** * The date time that the token expires. */ readonly expirationDate: string; /** * The host name of the domain. */ readonly hostName: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; readonly profileName: string; readonly resourceGroupName: string; /** * A `tls` block as defined below. */ readonly tls: outputs.cdn.GetFrontdoorCustomDomainTl[]; /** * The challenge used for DNS TXT record or file based validation. */ readonly validationToken: string; } /** * Use this data source to access information about an existing Front Door (standard/premium) Custom Domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.cdn.getFrontdoorCustomDomain({ * name: exampleAzurermCdnFrontdoorCustomDomain.name, * profileName: exampleAzurermCdnFrontdoorProfile.name, * resourceGroupName: exampleAzurermCdnFrontdoorProfile.resourceGroupName, * }); * ``` */ export declare function getFrontdoorCustomDomainOutput(args: GetFrontdoorCustomDomainOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFrontdoorCustomDomain. */ export interface GetFrontdoorCustomDomainOutputArgs { /** * The name of the Front Door Custom Domain. */ name: pulumi.Input; /** * The name of the Front Door Profile which the Front Door Custom Domain is bound to. */ profileName: pulumi.Input; /** * The name of the Resource Group where the Front Door Profile exists. */ resourceGroupName: pulumi.Input; }