import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Lists payment methods for an organization. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aiven from "@pulumi/aiven"; * * const example = aiven.getOrganizationPaymentMethodList({ * organizationId: "org1a23f456789", * }); * ``` */ export declare function getOrganizationPaymentMethodList(args: GetOrganizationPaymentMethodListArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOrganizationPaymentMethodList. */ export interface GetOrganizationPaymentMethodListArgs { /** * ID of an organization. */ organizationId: string; /** * Payment Methods. */ paymentMethods?: inputs.GetOrganizationPaymentMethodListPaymentMethod[]; timeouts?: inputs.GetOrganizationPaymentMethodListTimeouts; } /** * A collection of values returned by getOrganizationPaymentMethodList. */ export interface GetOrganizationPaymentMethodListResult { /** * Resource ID, equal to `organizationId`. */ readonly id: string; /** * ID of an organization. */ readonly organizationId: string; /** * Payment Methods. */ readonly paymentMethods?: outputs.GetOrganizationPaymentMethodListPaymentMethod[]; readonly timeouts?: outputs.GetOrganizationPaymentMethodListTimeouts; } /** * Lists payment methods for an organization. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aiven from "@pulumi/aiven"; * * const example = aiven.getOrganizationPaymentMethodList({ * organizationId: "org1a23f456789", * }); * ``` */ export declare function getOrganizationPaymentMethodListOutput(args: GetOrganizationPaymentMethodListOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOrganizationPaymentMethodList. */ export interface GetOrganizationPaymentMethodListOutputArgs { /** * ID of an organization. */ organizationId: pulumi.Input; /** * Payment Methods. */ paymentMethods?: pulumi.Input[] | undefined>; timeouts?: pulumi.Input; } //# sourceMappingURL=getOrganizationPaymentMethodList.d.ts.map