GetAccountTeam

Example Usage

using Pulumi;
using Aiven = Pulumi.Aiven;

class MyStack : Stack
{
    public MyStack()
    {
        var accountTeam1 = Output.Create(Aiven.GetAccountTeam.InvokeAsync(new Aiven.GetAccountTeamArgs
        {
            AccountId = aiven_account.Team.Account_id,
            Name = "account_team1",
        }));
    }

}

Coming soon!

import pulumi
import pulumi_aiven as aiven

account_team1 = aiven.get_account_team(account_id=aiven_account["team"]["account_id"],
    name="account_team1")
import * as pulumi from "@pulumi/pulumi";
import * as aiven from "@pulumi/aiven";

const accountTeam1 = aiven_account_team.accountId.apply(accountId => aiven.getAccountTeam({
    accountId: accountId,
    name: "account_team1",
}, { async: true }));

Using GetAccountTeam

function getAccountTeam(args: GetAccountTeamArgs, opts?: InvokeOptions): Promise<GetAccountTeamResult>
function  get_account_team(account_id=None, create_time=None, name=None, team_id=None, update_time=None, opts=None)
func LookupAccountTeam(ctx *Context, args *LookupAccountTeamArgs, opts ...InvokeOption) (*LookupAccountTeamResult, error)

Note: This function is named LookupAccountTeam in the Go SDK.

public static class GetAccountTeam {
    public static Task<GetAccountTeamResult> InvokeAsync(GetAccountTeamArgs args, InvokeOptions? opts = null)
}

The following arguments are supported:

AccountId string
Name string
CreateTime string
TeamId string
UpdateTime string
AccountId string
Name string
CreateTime string
TeamId string
UpdateTime string
accountId string
name string
createTime string
teamId string
updateTime string
account_id str
name str
create_time str
team_id str
update_time str

GetAccountTeam Result

The following output properties are available:

AccountId string
CreateTime string
Id string

The provider-assigned unique ID for this managed resource.

Name string
TeamId string
UpdateTime string
AccountId string
CreateTime string
Id string

The provider-assigned unique ID for this managed resource.

Name string
TeamId string
UpdateTime string
accountId string
createTime string
id string

The provider-assigned unique ID for this managed resource.

name string
teamId string
updateTime string
account_id str
create_time str
id str

The provider-assigned unique ID for this managed resource.

name str
team_id str
update_time str

Package Details

Repository
https://github.com/pulumi/pulumi-aiven
License
Apache-2.0
Notes
This Pulumi package is based on the aiven Terraform Provider.