1. Packages
  2. Fivetran Provider
  3. API Docs
  4. getTeam
fivetran 1.6.0 published on Tuesday, Mar 25, 2025 by fivetran

fivetran.getTeam

Explore with Pulumi AI

fivetran logo
fivetran 1.6.0 published on Tuesday, Mar 25, 2025 by fivetran

    This data source returns a team object.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fivetran from "@pulumi/fivetran";
    
    const team = fivetran.getTeam({
        id: "team_id",
    });
    
    import pulumi
    import pulumi_fivetran as fivetran
    
    team = fivetran.get_team(id="team_id")
    
    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.LookupTeam(ctx, &fivetran.LookupTeamArgs{
    			Id: "team_id",
    		}, 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 team = Fivetran.GetTeam.Invoke(new()
        {
            Id = "team_id",
        });
    
    });
    
    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.GetTeamArgs;
    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 team = FivetranFunctions.getTeam(GetTeamArgs.builder()
                .id("team_id")
                .build());
    
        }
    }
    
    variables:
      team:
        fn::invoke:
          function: fivetran:getTeam
          arguments:
            id: team_id
    

    Using getTeam

    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 getTeam(args: GetTeamArgs, opts?: InvokeOptions): Promise<GetTeamResult>
    function getTeamOutput(args: GetTeamOutputArgs, opts?: InvokeOptions): Output<GetTeamResult>
    def get_team(id: Optional[str] = None,
                 opts: Optional[InvokeOptions] = None) -> GetTeamResult
    def get_team_output(id: Optional[pulumi.Input[str]] = None,
                 opts: Optional[InvokeOptions] = None) -> Output[GetTeamResult]
    func LookupTeam(ctx *Context, args *LookupTeamArgs, opts ...InvokeOption) (*LookupTeamResult, error)
    func LookupTeamOutput(ctx *Context, args *LookupTeamOutputArgs, opts ...InvokeOption) LookupTeamResultOutput

    > Note: This function is named LookupTeam in the Go SDK.

    public static class GetTeam 
    {
        public static Task<GetTeamResult> InvokeAsync(GetTeamArgs args, InvokeOptions? opts = null)
        public static Output<GetTeamResult> Invoke(GetTeamInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetTeamResult> getTeam(GetTeamArgs args, InvokeOptions options)
    public static Output<GetTeamResult> getTeam(GetTeamArgs args, InvokeOptions options)
    
    fn::invoke:
      function: fivetran:index/getTeam:getTeam
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    The unique identifier for the team within your account.
    Id string
    The unique identifier for the team within your account.
    id String
    The unique identifier for the team within your account.
    id string
    The unique identifier for the team within your account.
    id str
    The unique identifier for the team within your account.
    id String
    The unique identifier for the team within your account.

    getTeam Result

    The following output properties are available:

    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.
    fivetran logo
    fivetran 1.6.0 published on Tuesday, Mar 25, 2025 by fivetran