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 LookupAccountTeamMember in the Go SDK.

public static class GetAccountTeamMember {
    public static Task<GetAccountTeamMemberResult> InvokeAsync(GetAccountTeamMemberArgs args, InvokeOptions? opts = null)
}

The following arguments are supported:

AccountId string
TeamId string
UserEmail string
Accepted bool
CreateTime string
InvitedByUserEmail string
AccountId string
TeamId string
UserEmail string
Accepted bool
CreateTime string
InvitedByUserEmail string
accountId string
teamId string
userEmail string
accepted boolean
createTime string
invitedByUserEmail string
account_id str
team_id str
user_email str
accepted bool
create_time str
invited_by_user_email str

GetAccountTeamMember Result

The following output properties are available:

Accepted bool
AccountId string
CreateTime string
Id string

The provider-assigned unique ID for this managed resource.

InvitedByUserEmail string
TeamId string
UserEmail string
Accepted bool
AccountId string
CreateTime string
Id string

The provider-assigned unique ID for this managed resource.

InvitedByUserEmail string
TeamId string
UserEmail string
accepted boolean
accountId string
createTime string
id string

The provider-assigned unique ID for this managed resource.

invitedByUserEmail string
teamId string
userEmail string
accepted bool
account_id str
create_time str
id str

The provider-assigned unique ID for this managed resource.

invited_by_user_email str
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 aiven Terraform Provider.