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

fivetran.TeamGroupMembership

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 group membership for teams

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fivetran.TeamGroupMembership;
    import com.pulumi.fivetran.TeamGroupMembershipArgs;
    import com.pulumi.fivetran.inputs.TeamGroupMembershipGroupArgs;
    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 testTeamGroupMembership = new TeamGroupMembership("testTeamGroupMembership", TeamGroupMembershipArgs.builder()
                .teamId("test_team")
                .groups(            
                    TeamGroupMembershipGroupArgs.builder()
                        .connectorId("test_connector")
                        .groupId("test_group")
                        .role("Destination Administrator")
                        .build(),
                    TeamGroupMembershipGroupArgs.builder()
                        .connectorId("test_connector")
                        .groupId("test_group")
                        .role("Destination Administrator")
                        .build())
                .build(), CustomResourceOptions.builder()
                    .provider(fivetran_provider)
                    .build());
    
        }
    }
    
    resources:
      testTeamGroupMembership:
        type: fivetran:TeamGroupMembership
        properties:
          teamId: test_team
          groups:
            - connectorId: test_connector
              groupId: test_group
              role: Destination Administrator
            - connectorId: test_connector
              groupId: test_group
              role: Destination Administrator
        options:
          provider: ${["fivetran-provider"]}
    

    Create TeamGroupMembership Resource

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

    Constructor syntax

    new TeamGroupMembership(name: string, args: TeamGroupMembershipArgs, opts?: CustomResourceOptions);
    @overload
    def TeamGroupMembership(resource_name: str,
                            args: TeamGroupMembershipArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def TeamGroupMembership(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            team_id: Optional[str] = None,
                            groups: Optional[Sequence[TeamGroupMembershipGroupArgs]] = None)
    func NewTeamGroupMembership(ctx *Context, name string, args TeamGroupMembershipArgs, opts ...ResourceOption) (*TeamGroupMembership, error)
    public TeamGroupMembership(string name, TeamGroupMembershipArgs args, CustomResourceOptions? opts = null)
    public TeamGroupMembership(String name, TeamGroupMembershipArgs args)
    public TeamGroupMembership(String name, TeamGroupMembershipArgs args, CustomResourceOptions options)
    
    type: fivetran:TeamGroupMembership
    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 TeamGroupMembershipArgs
    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 TeamGroupMembershipArgs
    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 TeamGroupMembershipArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TeamGroupMembershipArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TeamGroupMembershipArgs
    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 teamGroupMembershipResource = new Fivetran.TeamGroupMembership("teamGroupMembershipResource", new()
    {
        TeamId = "string",
        Groups = new[]
        {
            new Fivetran.Inputs.TeamGroupMembershipGroupArgs
            {
                GroupId = "string",
                Role = "string",
                CreatedAt = "string",
            },
        },
    });
    
    example, err := fivetran.NewTeamGroupMembership(ctx, "teamGroupMembershipResource", &fivetran.TeamGroupMembershipArgs{
    TeamId: pulumi.String("string"),
    Groups: .TeamGroupMembershipGroupArray{
    &.TeamGroupMembershipGroupArgs{
    GroupId: pulumi.String("string"),
    Role: pulumi.String("string"),
    CreatedAt: pulumi.String("string"),
    },
    },
    })
    
    var teamGroupMembershipResource = new TeamGroupMembership("teamGroupMembershipResource", TeamGroupMembershipArgs.builder()
        .teamId("string")
        .groups(TeamGroupMembershipGroupArgs.builder()
            .groupId("string")
            .role("string")
            .createdAt("string")
            .build())
        .build());
    
    team_group_membership_resource = fivetran.TeamGroupMembership("teamGroupMembershipResource",
        team_id="string",
        groups=[{
            "group_id": "string",
            "role": "string",
            "created_at": "string",
        }])
    
    const teamGroupMembershipResource = new fivetran.TeamGroupMembership("teamGroupMembershipResource", {
        teamId: "string",
        groups: [{
            groupId: "string",
            role: "string",
            createdAt: "string",
        }],
    });
    
    type: fivetran:TeamGroupMembership
    properties:
        groups:
            - createdAt: string
              groupId: string
              role: string
        teamId: string
    

    TeamGroupMembership 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 TeamGroupMembership resource accepts the following input properties:

    TeamId string
    The unique identifier for the team within your account.
    Groups List<TeamGroupMembershipGroup>
    TeamId string
    The unique identifier for the team within your account.
    Groups []TeamGroupMembershipGroupArgs
    teamId String
    The unique identifier for the team within your account.
    groups List<TeamGroupMembershipGroup>
    teamId string
    The unique identifier for the team within your account.
    groups TeamGroupMembershipGroup[]
    team_id str
    The unique identifier for the team within your account.
    groups Sequence[TeamGroupMembershipGroupArgs]
    teamId String
    The unique identifier for the team within your account.
    groups List<Property Map>

    Outputs

    All input properties are implicitly available as output properties. Additionally, the TeamGroupMembership 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 TeamGroupMembership Resource

    Get an existing TeamGroupMembership 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?: TeamGroupMembershipState, opts?: CustomResourceOptions): TeamGroupMembership
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            groups: Optional[Sequence[TeamGroupMembershipGroupArgs]] = None,
            team_id: Optional[str] = None) -> TeamGroupMembership
    func GetTeamGroupMembership(ctx *Context, name string, id IDInput, state *TeamGroupMembershipState, opts ...ResourceOption) (*TeamGroupMembership, error)
    public static TeamGroupMembership Get(string name, Input<string> id, TeamGroupMembershipState? state, CustomResourceOptions? opts = null)
    public static TeamGroupMembership get(String name, Output<String> id, TeamGroupMembershipState state, CustomResourceOptions options)
    resources:  _:    type: fivetran:TeamGroupMembership    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:
    Groups List<TeamGroupMembershipGroup>
    TeamId string
    The unique identifier for the team within your account.
    Groups []TeamGroupMembershipGroupArgs
    TeamId string
    The unique identifier for the team within your account.
    groups List<TeamGroupMembershipGroup>
    teamId String
    The unique identifier for the team within your account.
    groups TeamGroupMembershipGroup[]
    teamId string
    The unique identifier for the team within your account.
    groups Sequence[TeamGroupMembershipGroupArgs]
    team_id str
    The unique identifier for the team within your account.
    groups List<Property Map>
    teamId String
    The unique identifier for the team within your account.

    Supporting Types

    TeamGroupMembershipGroup, TeamGroupMembershipGroupArgs

    GroupId string
    The group unique identifier
    Role string
    The team's role that links the team and the group
    CreatedAt string
    The date and time the membership was created
    GroupId string
    The group unique identifier
    Role string
    The team's role that links the team and the group
    CreatedAt string
    The date and time the membership was created
    groupId String
    The group unique identifier
    role String
    The team's role that links the team and the group
    createdAt String
    The date and time the membership was created
    groupId string
    The group unique identifier
    role string
    The team's role that links the team and the group
    createdAt string
    The date and time the membership was created
    group_id str
    The group unique identifier
    role str
    The team's role that links the team and the group
    created_at str
    The date and time the membership was created
    groupId String
    The group unique identifier
    role String
    The team's role that links the team and the group
    createdAt String
    The date and time the membership was created

    Import

    1. To import an existing fivetran_team_group_membership resource into your Terraform state, you need to get team_id and group_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_group_membership” “my_imported_fivetran_team_group_membership” {

    }

    1. Run the pulumi import command:
    $ pulumi import fivetran:index/teamGroupMembership:TeamGroupMembership my_imported_fivetran_team_group_membership {team_id}
    
    1. Use the terraform state show command to get the values from the state:

    terraform state show ‘fivetran_team_group_membership.my_imported_fivetran_team_group_membership’

    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