import * as pulumi from "@pulumi/pulumi"; /** * Creates and manages a team. * * > **Teams have been replaced by groups** * To make the transition to groups smoother, * migrate your teams to groups. * * > **Important** * You can't delete the Account Owners team. **Deleting all other teams in your organization will disable the teams feature.** * You won't be able to create new teams or access your Account Owners team. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aiven from "@pulumi/aiven"; * * const exampleTeam = new aiven.AccountTeam("example_team", { * accountId: ACCOUNT_RESOURCE_NAME.accountId, * name: "Example team", * }); * ``` * * ## Import * * ```sh * $ pulumi import aiven:index/accountTeam:AccountTeam account_team1 account_id/team_id * ``` */ export declare class AccountTeam extends pulumi.CustomResource { /** * Get an existing AccountTeam 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?: AccountTeamState, opts?: pulumi.CustomResourceOptions): AccountTeam; /** * Returns true if the given object is an instance of AccountTeam. 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 AccountTeam; /** * The unique account id */ readonly accountId: pulumi.Output; /** * Time of creation */ readonly createTime: pulumi.Output; /** * The account team name */ readonly name: pulumi.Output; /** * The auto-generated unique account team id */ readonly teamId: pulumi.Output; /** * Time of last update */ readonly updateTime: pulumi.Output; /** * Create a AccountTeam 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: AccountTeamArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering AccountTeam resources. */ export interface AccountTeamState { /** * The unique account id */ accountId?: pulumi.Input; /** * Time of creation */ createTime?: pulumi.Input; /** * The account team name */ name?: pulumi.Input; /** * The auto-generated unique account team id */ teamId?: pulumi.Input; /** * Time of last update */ updateTime?: pulumi.Input; } /** * The set of arguments for constructing a AccountTeam resource. */ export interface AccountTeamArgs { /** * The unique account id */ accountId: pulumi.Input; /** * The account team name */ name?: pulumi.Input; } //# sourceMappingURL=accountTeam.d.ts.map