GetProjectUser

Example Usage

using Pulumi;
using Aiven = Pulumi.Aiven;

class MyStack : Stack
{
    public MyStack()
    {
        var mytestuser = Output.Create(Aiven.GetProjectUser.InvokeAsync(new Aiven.GetProjectUserArgs
        {
            Project = data.Aiven_project.Myproject.Project,
            Email = "john.doe@example.com",
        }));
    }

}

Coming soon!

import pulumi
import pulumi_aiven as aiven

mytestuser = aiven.get_project_user(project=data["aiven..Project"]["myproject"]["project"],
    email="john.doe@example.com")
import * as pulumi from "@pulumi/pulumi";
import * as aiven from "@pulumi/aiven";

const mytestuser = aiven.getProjectUser({
    project: data.aiven_project.myproject.project,
    email: "john.doe@example.com",
});

Using GetProjectUser

function getProjectUser(args: GetProjectUserArgs, opts?: InvokeOptions): Promise<GetProjectUserResult>
function  get_project_user(accepted=None, email=None, member_type=None, project=None, opts=None)
func LookupProjectUser(ctx *Context, args *LookupProjectUserArgs, opts ...InvokeOption) (*LookupProjectUserResult, error)

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

public static class GetProjectUser {
    public static Task<GetProjectUserResult> InvokeAsync(GetProjectUserArgs args, InvokeOptions? opts = null)
}

The following arguments are supported:

Email string
Project string
Accepted bool
MemberType string
Email string
Project string
Accepted bool
MemberType string
email string
project string
accepted boolean
memberType string
email str
project str
accepted bool
member_type str

GetProjectUser Result

The following output properties are available:

Accepted bool
Email string
Id string

The provider-assigned unique ID for this managed resource.

Project string
MemberType string
Accepted bool
Email string
Id string

The provider-assigned unique ID for this managed resource.

Project string
MemberType string
accepted boolean
email string
id string

The provider-assigned unique ID for this managed resource.

project string
memberType string
accepted bool
email str
id str

The provider-assigned unique ID for this managed resource.

project str
member_type 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.