import * as pulumi from "@pulumi/pulumi"; /** * Retrieves the list of ACME accounts. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as proxmoxve from "@muhlba91/pulumi-proxmoxve"; * * const example = proxmoxve.acme.getAccounts({}); * export const dataProxmoxAcmeAccounts = example.then(example => example.accounts); * ``` */ export declare function getAccounts(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getAccounts. */ export interface GetAccountsResult { /** * The identifiers of the ACME accounts. */ readonly accounts: string[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * Retrieves the list of ACME accounts. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as proxmoxve from "@muhlba91/pulumi-proxmoxve"; * * const example = proxmoxve.acme.getAccounts({}); * export const dataProxmoxAcmeAccounts = example.then(example => example.accounts); * ``` */ export declare function getAccountsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output; //# sourceMappingURL=getAccounts.d.ts.map