import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to look up a domain profile by ID or profile name. */ export declare function getDomainProfile(args?: GetDomainProfileArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetDomainProfileArgs { /** * The ID of the domain profile to look up. */ profileId?: number; /** * The name of the domain profile to look up. */ profileName?: string; } export interface GetDomainProfileResult { /** * The list of custom domains in the profile. */ readonly customDomains: string[]; /** * The description of the domain profile. */ readonly description: string; /** * Whether company domains are included. */ readonly includeCompanyDomains: boolean; /** * Whether subdomains are included. */ readonly includeSubdomains: boolean; /** * The list of predefined email domains in the profile. */ readonly predefinedEmailDomains: string[]; /** * The ID of the domain profile. */ readonly profileId: number; /** * The name of the domain profile. */ readonly profileName: string; } /** * Use this data source to look up a domain profile by ID or profile name. */ export declare function getDomainProfileOutput(args?: GetDomainProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetDomainProfileOutputArgs { /** * The ID of the domain profile to look up. */ profileId?: pulumi.Input; /** * The name of the domain profile to look up. */ profileName?: pulumi.Input; } //# sourceMappingURL=getDomainProfile.d.ts.map