GetAccountTeamMember
Example Usage
using Pulumi;
using Aiven = Pulumi.Aiven;
class MyStack : Stack
{
public MyStack()
{
var foo = Output.Create(Aiven.GetAccountTeamMember.InvokeAsync(new Aiven.GetAccountTeamMemberArgs
{
AccountId = aiven_account.Developers.Account_id,
TeamId = aiven_account.Developers.Account_id,
UserEmail = "user+1@example.com",
}));
}
}
Coming soon!
import pulumi
import pulumi_aiven as aiven
foo = aiven.get_account_team_member(account_id=aiven_account["developers"]["account_id"],
team_id=aiven_account["developers"]["account_id"],
user_email="user+1@example.com")import * as pulumi from "@pulumi/pulumi";
import * as aiven from "@pulumi/aiven";
const foo = pulumi.all([aiven_account_developers.accountId, aiven_account_developers.accountId]).apply(([aiven_account_developersAccountId, aiven_account_developersAccountId1]) => aiven.getAccountTeamMember({
accountId: aiven_account_developersAccountId,
teamId: aiven_account_developersAccountId1,
userEmail: "user+1@example.com",
}, { async: true }));Using GetAccountTeamMember
function getAccountTeamMember(args: GetAccountTeamMemberArgs, opts?: InvokeOptions): Promise<GetAccountTeamMemberResult>function get_account_team_member(accepted=None, account_id=None, create_time=None, invited_by_user_email=None, team_id=None, user_email=None, opts=None)func LookupAccountTeamMember(ctx *Context, args *LookupAccountTeamMemberArgs, opts ...InvokeOption) (*LookupAccountTeamMemberResult, error)Note: This function is named
LookupAccountTeamMemberin the Go SDK.
public static class GetAccountTeamMember {
public static Task<GetAccountTeamMemberResult> InvokeAsync(GetAccountTeamMemberArgs args, InvokeOptions? opts = null)
}The following arguments are supported:
GetAccountTeamMember Result
The following output properties are available:
- accepted bool
- account_
id str - create_
time str - id str
The provider-assigned unique ID for this managed resource.
- invited_
by_ struser_ email - team_
id str - user_
email str
Package Details
- Repository
- https://github.com/pulumi/pulumi-aiven
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aivenTerraform Provider.