import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare function getCustomHostname(args: GetCustomHostnameArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCustomHostname. */ export interface GetCustomHostnameArgs { customHostnameId?: string; filter?: inputs.GetCustomHostnameFilter; zoneId: string; } /** * A collection of values returned by getCustomHostname. */ export interface GetCustomHostnameResult { readonly createdAt: string; readonly customHostnameId?: string; readonly customMetadata: { [key: string]: string; }; readonly customOriginServer: string; readonly customOriginSni: string; readonly filter?: outputs.GetCustomHostnameFilter; readonly hostname: string; readonly id: string; readonly ownershipVerification: outputs.GetCustomHostnameOwnershipVerification; readonly ownershipVerificationHttp: outputs.GetCustomHostnameOwnershipVerificationHttp; readonly ssl: outputs.GetCustomHostnameSsl; readonly status: string; readonly verificationErrors: string[]; readonly zoneId: string; } export declare function getCustomHostnameOutput(args: GetCustomHostnameOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCustomHostname. */ export interface GetCustomHostnameOutputArgs { customHostnameId?: pulumi.Input; filter?: pulumi.Input; zoneId: pulumi.Input; } //# sourceMappingURL=getCustomHostname.d.ts.map