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
LookupAccountTeamin the Go SDK.
public static class GetAccountTeam {
public static Task<GetAccountTeamResult> InvokeAsync(GetAccountTeamArgs args, InvokeOptions? opts = null)
}The following arguments are supported:
GetAccountTeam Result
The following output properties are available:
- 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
aivenTerraform Provider.