import * as pulumi from "@pulumi/pulumi"; /** * Creates and manages an Aiven account. * * > **This resource is deprecated** * This resource will be removed in v5.0.0. Use `aiven.Organization` instead. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aiven from "@pulumi/aiven"; * * const account1 = new aiven.Account("account1", {name: ""}); * ``` * * ## Import * * ```sh * $ pulumi import aiven:index/account:Account account1 account_id * ``` */ export declare class Account extends pulumi.CustomResource { /** * Get an existing Account resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: AccountState, opts?: pulumi.CustomResourceOptions): Account; /** * Returns true if the given object is an instance of Account. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Account; /** * Account id * * @deprecated The new aiven.Organization resource won't have it, use the built-in ID field instead. */ readonly accountId: pulumi.Output; /** * Time of creation */ readonly createTime: pulumi.Output; /** * If true, user is part of the owners team for this account * * @deprecated The new aiven.Organization resource won't have it, and will not have a replacement. */ readonly isAccountOwner: pulumi.Output; /** * Account name */ readonly name: pulumi.Output; /** * Owner team id * * @deprecated The new aiven.Organization resource won't have it, and will not have a replacement. */ readonly ownerTeamId: pulumi.Output; /** * Billing group id * * @deprecated The new aiven.Organization resource won't have it, and will not have a replacement. */ readonly primaryBillingGroupId: pulumi.Output; /** * Tenant id */ readonly tenantId: pulumi.Output; /** * Time of last update */ readonly updateTime: pulumi.Output; /** * Create a Account resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: AccountArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Account resources. */ export interface AccountState { /** * Account id * * @deprecated The new aiven.Organization resource won't have it, use the built-in ID field instead. */ accountId?: pulumi.Input; /** * Time of creation */ createTime?: pulumi.Input; /** * If true, user is part of the owners team for this account * * @deprecated The new aiven.Organization resource won't have it, and will not have a replacement. */ isAccountOwner?: pulumi.Input; /** * Account name */ name?: pulumi.Input; /** * Owner team id * * @deprecated The new aiven.Organization resource won't have it, and will not have a replacement. */ ownerTeamId?: pulumi.Input; /** * Billing group id * * @deprecated The new aiven.Organization resource won't have it, and will not have a replacement. */ primaryBillingGroupId?: pulumi.Input; /** * Tenant id */ tenantId?: pulumi.Input; /** * Time of last update */ updateTime?: pulumi.Input; } /** * The set of arguments for constructing a Account resource. */ export interface AccountArgs { /** * Account name */ name?: pulumi.Input; /** * Billing group id * * @deprecated The new aiven.Organization resource won't have it, and will not have a replacement. */ primaryBillingGroupId?: pulumi.Input; } //# sourceMappingURL=account.d.ts.map