import * as pulumi from "@pulumi/pulumi"; /** * The Account Team data source provides information about the existing Account 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. */ export declare function getAccountTeam(args: GetAccountTeamArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAccountTeam. */ export interface GetAccountTeamArgs { /** * The unique account id */ accountId: string; /** * The account team name */ name: string; } /** * A collection of values returned by getAccountTeam. */ export interface GetAccountTeamResult { /** * The unique account id */ readonly accountId: string; /** * Time of creation */ readonly createTime: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The account team name */ readonly name: string; /** * The auto-generated unique account team id */ readonly teamId: string; /** * Time of last update */ readonly updateTime: string; } /** * The Account Team data source provides information about the existing Account 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. */ export declare function getAccountTeamOutput(args: GetAccountTeamOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAccountTeam. */ export interface GetAccountTeamOutputArgs { /** * The unique account id */ accountId: pulumi.Input; /** * The account team name */ name: pulumi.Input; } //# sourceMappingURL=getAccountTeam.d.ts.map