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

fivetran.Team

Explore with Pulumi AI

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

    This resource allows you to create, update, and delete teams.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fivetran from "@pulumi/fivetran";
    
    const testTeam = new fivetran.Team("testTeam", {
        description: "test_description",
        role: "Account Reviewer",
    }, {
        provider: fivetran_provider,
    });
    
    import pulumi
    import pulumi_fivetran as fivetran
    
    test_team = fivetran.Team("testTeam",
        description="test_description",
        role="Account Reviewer",
        opts = pulumi.ResourceOptions(provider=fivetran_provider))
    
    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.NewTeam(ctx, "testTeam", &fivetran.TeamArgs{
    			Description: pulumi.String("test_description"),
    			Role:        pulumi.String("Account Reviewer"),
    		}, pulumi.Provider(fivetran_provider))
    		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 testTeam = new Fivetran.Team("testTeam", new()
        {
            Description = "test_description",
            Role = "Account Reviewer",
        }, new CustomResourceOptions
        {
            Provider = fivetran_provider,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fivetran.Team;
    import com.pulumi.fivetran.TeamArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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) {
            var testTeam = new Team("testTeam", TeamArgs.builder()
                .description("test_description")
                .role("Account Reviewer")
                .build(), CustomResourceOptions.builder()
                    .provider(fivetran_provider)
                    .build());
    
        }
    }
    
    resources:
      testTeam:
        type: fivetran:Team
        properties:
          description: test_description
          role: Account Reviewer
        options:
          provider: ${["fivetran-provider"]}
    

    Create Team Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Team(name: string, args: TeamArgs, opts?: CustomResourceOptions);
    @overload
    def Team(resource_name: str,
             args: TeamArgs,
             opts: Optional[ResourceOptions] = None)
    
    @overload
    def Team(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             role: Optional[str] = None,
             description: Optional[str] = None,
             name: Optional[str] = None)
    func NewTeam(ctx *Context, name string, args TeamArgs, opts ...ResourceOption) (*Team, error)
    public Team(string name, TeamArgs args, CustomResourceOptions? opts = null)
    public Team(String name, TeamArgs args)
    public Team(String name, TeamArgs args, CustomResourceOptions options)
    
    type: fivetran:Team
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args TeamArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args TeamArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args TeamArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TeamArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TeamArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var teamResource = new Fivetran.Team("teamResource", new()
    {
        Role = "string",
        Description = "string",
        Name = "string",
    });
    
    example, err := fivetran.NewTeam(ctx, "teamResource", &fivetran.TeamArgs{
    Role: pulumi.String("string"),
    Description: pulumi.String("string"),
    Name: pulumi.String("string"),
    })
    
    var teamResource = new Team("teamResource", TeamArgs.builder()
        .role("string")
        .description("string")
        .name("string")
        .build());
    
    team_resource = fivetran.Team("teamResource",
        role="string",
        description="string",
        name="string")
    
    const teamResource = new fivetran.Team("teamResource", {
        role: "string",
        description: "string",
        name: "string",
    });
    
    type: fivetran:Team
    properties:
        description: string
        name: string
        role: string
    

    Team Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Team resource accepts the following input properties:

    Role string
    The account role of the team.
    Description string
    The description of 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.
    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.
    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.
    name string
    The name of the team within your account.
    role str
    The account role of the team.
    description str
    The description of the team within your account.
    name str
    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.
    name String
    The name of the team within your account.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Team resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Team Resource

    Get an existing Team resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: TeamState, opts?: CustomResourceOptions): Team
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            name: Optional[str] = None,
            role: Optional[str] = None) -> Team
    func GetTeam(ctx *Context, name string, id IDInput, state *TeamState, opts ...ResourceOption) (*Team, error)
    public static Team Get(string name, Input<string> id, TeamState? state, CustomResourceOptions? opts = null)
    public static Team get(String name, Output<String> id, TeamState state, CustomResourceOptions options)
    resources:  _:    type: fivetran:Team    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Description string
    The description of 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.
    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.
    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.
    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.
    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.
    name String
    The name of the team within your account.
    role String
    The account role of the team.

    Import

    1. To import an existing fivetran_team resource into your Terraform state, you need to get team_id.

    You can retrieve all teams using the fivetran_teams data source.

    1. Define an empty resource in your .tf configuration:

    hcl

    resource “fivetran_team” “my_imported_fivetran_team” {

    }

    1. Run the pulumi import command:
    $ pulumi import fivetran:index/team:Team my_imported_fivetran_team {team_id}
    
    1. Use the terraform state show command to get the values from the state:

    terraform state show ‘fivetran_team.my_imported_fivetran_team’

    1. Copy the values and paste them to your .tf configuration.

    To learn more about importing existing cloud resources, see Importing resources.

    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