GetAccountTeamProject
Example Usage
using Pulumi;
using Aiven = Pulumi.Aiven;
class MyStack : Stack
{
public MyStack()
{
var accountTeamProject1 = Output.Create(Aiven.GetAccountTeamProject.InvokeAsync(new Aiven.GetAccountTeamProjectArgs
{
AccountId = aiven_account_team.Developers.Account_id,
ProjectName = aiven_project.Project1.Project,
TeamId = aiven_account_team.Developers.Team_id,
}));
}
}
Coming soon!
import pulumi
import pulumi_aiven as aiven
account_team_project1 = aiven.get_account_team_project(account_id=aiven_account_team["developers"]["account_id"],
project_name=aiven_project["project1"]["project"],
team_id=aiven_account_team["developers"]["team_id"])import * as pulumi from "@pulumi/pulumi";
import * as aiven from "@pulumi/aiven";
const accountTeamProject1 = pulumi.all([aiven_account_team_developers.accountId, aiven_project_project1.project, aiven_account_team_developers.teamId]).apply(([accountId, project, teamId]) => aiven.getAccountTeamProject({
accountId: accountId,
projectName: project,
teamId: teamId,
}, { async: true }));Using GetAccountTeamProject
function getAccountTeamProject(args: GetAccountTeamProjectArgs, opts?: InvokeOptions): Promise<GetAccountTeamProjectResult>function get_account_team_project(account_id=None, project_name=None, team_id=None, team_type=None, opts=None)func LookupAccountTeamProject(ctx *Context, args *LookupAccountTeamProjectArgs, opts ...InvokeOption) (*LookupAccountTeamProjectResult, error)Note: This function is named
LookupAccountTeamProjectin the Go SDK.
public static class GetAccountTeamProject {
public static Task<GetAccountTeamProjectResult> InvokeAsync(GetAccountTeamProjectArgs args, InvokeOptions? opts = null)
}The following arguments are supported:
GetAccountTeamProject Result
The following output properties are available:
- account_
id str - id str
The provider-assigned unique ID for this managed resource.
- project_
name str - team_
id str - team_
type str
Package Details
- Repository
- https://github.com/pulumi/pulumi-aiven
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aivenTerraform Provider.