import * as pulumi from "@pulumi/pulumi"; /** * List email accounts for a given domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const accounts = ovh.getEmailDomainAccounts({ * domain: "example.com", * }); * ``` */ export declare function getEmailDomainAccounts(args: GetEmailDomainAccountsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getEmailDomainAccounts. */ export interface GetEmailDomainAccountsArgs { /** * Filter accounts by name */ accountName?: string; /** * Filter accounts by description */ description?: string; /** * Name of the email domain */ domain: string; } /** * A collection of values returned by getEmailDomainAccounts. */ export interface GetEmailDomainAccountsResult { /** * Filter accounts by name */ readonly accountName?: string; /** * List of email account names */ readonly accounts: string[]; /** * Filter accounts by description */ readonly description?: string; /** * Name of the email domain */ readonly domain: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * List email accounts for a given domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const accounts = ovh.getEmailDomainAccounts({ * domain: "example.com", * }); * ``` */ export declare function getEmailDomainAccountsOutput(args: GetEmailDomainAccountsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getEmailDomainAccounts. */ export interface GetEmailDomainAccountsOutputArgs { /** * Filter accounts by name */ accountName?: pulumi.Input; /** * Filter accounts by description */ description?: pulumi.Input; /** * Name of the email domain */ domain: pulumi.Input; }