fivetran 1.6.0 published on Tuesday, Mar 25, 2025 by fivetran
fivetran.getTeams
Explore with Pulumi AI
This data source returns a list of all teams within your Fivetran account.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fivetran from "@pulumi/fivetran";
const teams = fivetran.getTeams({});
import pulumi
import pulumi_fivetran as fivetran
teams = fivetran.get_teams()
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/fivetran/fivetran"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := fivetran.GetTeams(ctx, &fivetran.GetTeamsArgs{}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fivetran = Pulumi.Fivetran;
return await Deployment.RunAsync(() =>
{
var teams = Fivetran.GetTeams.Invoke();
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fivetran.FivetranFunctions;
import com.pulumi.fivetran.inputs.GetTeamsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var teams = FivetranFunctions.getTeams();
}
}
variables:
teams:
fn::invoke:
function: fivetran:getTeams
arguments: {}
Using getTeams
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getTeams(args: GetTeamsArgs, opts?: InvokeOptions): Promise<GetTeamsResult>
function getTeamsOutput(args: GetTeamsOutputArgs, opts?: InvokeOptions): Output<GetTeamsResult>
def get_teams(id: Optional[str] = None,
teams: Optional[Sequence[GetTeamsTeam]] = None,
opts: Optional[InvokeOptions] = None) -> GetTeamsResult
def get_teams_output(id: Optional[pulumi.Input[str]] = None,
teams: Optional[pulumi.Input[Sequence[pulumi.Input[GetTeamsTeamArgs]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetTeamsResult]
func GetTeams(ctx *Context, args *GetTeamsArgs, opts ...InvokeOption) (*GetTeamsResult, error)
func GetTeamsOutput(ctx *Context, args *GetTeamsOutputArgs, opts ...InvokeOption) GetTeamsResultOutput
> Note: This function is named GetTeams
in the Go SDK.
public static class GetTeams
{
public static Task<GetTeamsResult> InvokeAsync(GetTeamsArgs args, InvokeOptions? opts = null)
public static Output<GetTeamsResult> Invoke(GetTeamsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetTeamsResult> getTeams(GetTeamsArgs args, InvokeOptions options)
public static Output<GetTeamsResult> getTeams(GetTeamsArgs args, InvokeOptions options)
fn::invoke:
function: fivetran:index/getTeams:getTeams
arguments:
# arguments dictionary
The following arguments are supported:
- Id string
- The ID of this resource.
- Teams
List<Get
Teams Team>
- Id string
- The ID of this resource.
- Teams
[]Get
Teams Team
- id String
- The ID of this resource.
- teams
List<Get
Teams Team>
- id string
- The ID of this resource.
- teams
Get
Teams Team[]
- id str
- The ID of this resource.
- teams
Sequence[Get
Teams Team]
- id String
- The ID of this resource.
- teams List<Property Map>
getTeams Result
The following output properties are available:
- Id string
- The ID of this resource.
- Teams
List<Get
Teams Team>
- Id string
- The ID of this resource.
- Teams
[]Get
Teams Team
- id String
- The ID of this resource.
- teams
List<Get
Teams Team>
- id string
- The ID of this resource.
- teams
Get
Teams Team[]
- id str
- The ID of this resource.
- teams
Sequence[Get
Teams Team]
- id String
- The ID of this resource.
- teams List<Property Map>
Supporting Types
GetTeamsTeam
- Description string
- The description of the team within your account.
- Id string
- The unique identifier for the team within your account.
- Name string
- The name of the team within your account.
- Role string
- The account role of the team.
- Description string
- The description of the team within your account.
- Id string
- The unique identifier for the team within your account.
- Name string
- The name of the team within your account.
- Role string
- The account role of the team.
- description String
- The description of the team within your account.
- id String
- The unique identifier for the team within your account.
- name String
- The name of the team within your account.
- role String
- The account role of the team.
- description string
- The description of the team within your account.
- id string
- The unique identifier for the team within your account.
- name string
- The name of the team within your account.
- role string
- The account role of the team.
- description str
- The description of the team within your account.
- id str
- The unique identifier for the team within your account.
- name str
- The name of the team within your account.
- role str
- The account role of the team.
- description String
- The description of the team within your account.
- id String
- The unique identifier for the team within your account.
- name String
- The name of the team within your account.
- role String
- The account role of the team.
Package Details
- Repository
- fivetran fivetran/terraform-provider-fivetran
- License
- Notes
- This Pulumi package is based on the
fivetran
Terraform Provider.