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

fivetran.GroupUsers

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 user memberships in groups.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fivetran from "@pulumi/fivetran";
    
    const groupUsers = new fivetran.GroupUsers("groupUsers", {
        groupId: fivetran_group.group.id,
        users: [
            {
                email: "mail@example.com",
                role: "Destination Analyst",
            },
            {
                email: "another_mail@example.com",
                role: "Destination Analyst",
            },
        ],
    });
    
    import pulumi
    import pulumi_fivetran as fivetran
    
    group_users = fivetran.GroupUsers("groupUsers",
        group_id=fivetran_group["group"]["id"],
        users=[
            {
                "email": "mail@example.com",
                "role": "Destination Analyst",
            },
            {
                "email": "another_mail@example.com",
                "role": "Destination Analyst",
            },
        ])
    
    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.NewGroupUsers(ctx, "groupUsers", &fivetran.GroupUsersArgs{
    			GroupId: pulumi.Any(fivetran_group.Group.Id),
    			Users: fivetran.GroupUsersUserArray{
    				&fivetran.GroupUsersUserArgs{
    					Email: pulumi.String("mail@example.com"),
    					Role:  pulumi.String("Destination Analyst"),
    				},
    				&fivetran.GroupUsersUserArgs{
    					Email: pulumi.String("another_mail@example.com"),
    					Role:  pulumi.String("Destination Analyst"),
    				},
    			},
    		})
    		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 groupUsers = new Fivetran.GroupUsers("groupUsers", new()
        {
            GroupId = fivetran_group.Group.Id,
            Users = new[]
            {
                new Fivetran.Inputs.GroupUsersUserArgs
                {
                    Email = "mail@example.com",
                    Role = "Destination Analyst",
                },
                new Fivetran.Inputs.GroupUsersUserArgs
                {
                    Email = "another_mail@example.com",
                    Role = "Destination Analyst",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fivetran.GroupUsers;
    import com.pulumi.fivetran.GroupUsersArgs;
    import com.pulumi.fivetran.inputs.GroupUsersUserArgs;
    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 groupUsers = new GroupUsers("groupUsers", GroupUsersArgs.builder()
                .groupId(fivetran_group.group().id())
                .users(            
                    GroupUsersUserArgs.builder()
                        .email("mail@example.com")
                        .role("Destination Analyst")
                        .build(),
                    GroupUsersUserArgs.builder()
                        .email("another_mail@example.com")
                        .role("Destination Analyst")
                        .build())
                .build());
    
        }
    }
    
    resources:
      groupUsers:
        type: fivetran:GroupUsers
        properties:
          groupId: ${fivetran_group.group.id}
          users:
            - email: mail@example.com
              role: Destination Analyst
            - email: another_mail@example.com
              role: Destination Analyst
    

    Create GroupUsers Resource

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

    Constructor syntax

    new GroupUsers(name: string, args: GroupUsersArgs, opts?: CustomResourceOptions);
    @overload
    def GroupUsers(resource_name: str,
                   args: GroupUsersArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def GroupUsers(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   group_id: Optional[str] = None,
                   users: Optional[Sequence[GroupUsersUserArgs]] = None)
    func NewGroupUsers(ctx *Context, name string, args GroupUsersArgs, opts ...ResourceOption) (*GroupUsers, error)
    public GroupUsers(string name, GroupUsersArgs args, CustomResourceOptions? opts = null)
    public GroupUsers(String name, GroupUsersArgs args)
    public GroupUsers(String name, GroupUsersArgs args, CustomResourceOptions options)
    
    type: fivetran:GroupUsers
    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 GroupUsersArgs
    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 GroupUsersArgs
    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 GroupUsersArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GroupUsersArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GroupUsersArgs
    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 groupUsersResource = new Fivetran.GroupUsers("groupUsersResource", new()
    {
        GroupId = "string",
        Users = new[]
        {
            new Fivetran.Inputs.GroupUsersUserArgs
            {
                Email = "string",
                Role = "string",
                Id = "string",
            },
        },
    });
    
    example, err := fivetran.NewGroupUsers(ctx, "groupUsersResource", &fivetran.GroupUsersArgs{
    GroupId: pulumi.String("string"),
    Users: .GroupUsersUserArray{
    &.GroupUsersUserArgs{
    Email: pulumi.String("string"),
    Role: pulumi.String("string"),
    Id: pulumi.String("string"),
    },
    },
    })
    
    var groupUsersResource = new GroupUsers("groupUsersResource", GroupUsersArgs.builder()
        .groupId("string")
        .users(GroupUsersUserArgs.builder()
            .email("string")
            .role("string")
            .id("string")
            .build())
        .build());
    
    group_users_resource = fivetran.GroupUsers("groupUsersResource",
        group_id="string",
        users=[{
            "email": "string",
            "role": "string",
            "id": "string",
        }])
    
    const groupUsersResource = new fivetran.GroupUsers("groupUsersResource", {
        groupId: "string",
        users: [{
            email: "string",
            role: "string",
            id: "string",
        }],
    });
    
    type: fivetran:GroupUsers
    properties:
        groupId: string
        users:
            - email: string
              id: string
              role: string
    

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

    GroupId string
    The unique identifier for the Group within the Fivetran system.
    Users List<GroupUsersUser>
    GroupId string
    The unique identifier for the Group within the Fivetran system.
    Users []GroupUsersUserArgs
    groupId String
    The unique identifier for the Group within the Fivetran system.
    users List<GroupUsersUser>
    groupId string
    The unique identifier for the Group within the Fivetran system.
    users GroupUsersUser[]
    group_id str
    The unique identifier for the Group within the Fivetran system.
    users Sequence[GroupUsersUserArgs]
    groupId String
    The unique identifier for the Group within the Fivetran system.
    users List<Property Map>

    Outputs

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

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

    Look up Existing GroupUsers Resource

    Get an existing GroupUsers 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?: GroupUsersState, opts?: CustomResourceOptions): GroupUsers
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            group_id: Optional[str] = None,
            last_updated: Optional[str] = None,
            users: Optional[Sequence[GroupUsersUserArgs]] = None) -> GroupUsers
    func GetGroupUsers(ctx *Context, name string, id IDInput, state *GroupUsersState, opts ...ResourceOption) (*GroupUsers, error)
    public static GroupUsers Get(string name, Input<string> id, GroupUsersState? state, CustomResourceOptions? opts = null)
    public static GroupUsers get(String name, Output<String> id, GroupUsersState state, CustomResourceOptions options)
    resources:  _:    type: fivetran:GroupUsers    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:
    GroupId string
    The unique identifier for the Group within the Fivetran system.
    LastUpdated string
    Users List<GroupUsersUser>
    GroupId string
    The unique identifier for the Group within the Fivetran system.
    LastUpdated string
    Users []GroupUsersUserArgs
    groupId String
    The unique identifier for the Group within the Fivetran system.
    lastUpdated String
    users List<GroupUsersUser>
    groupId string
    The unique identifier for the Group within the Fivetran system.
    lastUpdated string
    users GroupUsersUser[]
    group_id str
    The unique identifier for the Group within the Fivetran system.
    last_updated str
    users Sequence[GroupUsersUserArgs]
    groupId String
    The unique identifier for the Group within the Fivetran system.
    lastUpdated String
    users List<Property Map>

    Supporting Types

    GroupUsersUser, GroupUsersUserArgs

    Email string
    The email address that the user has associated with their user profile.
    Role string
    The group role that you would like to assign this new user to. Supported group roles: ‘Destination Administrator‘, ‘Destination Reviewer‘, ‘Destination Analyst‘, ‘Connector Creator‘, or a custom destination role
    Id string
    The unique identifier for the user within the account.
    Email string
    The email address that the user has associated with their user profile.
    Role string
    The group role that you would like to assign this new user to. Supported group roles: ‘Destination Administrator‘, ‘Destination Reviewer‘, ‘Destination Analyst‘, ‘Connector Creator‘, or a custom destination role
    Id string
    The unique identifier for the user within the account.
    email String
    The email address that the user has associated with their user profile.
    role String
    The group role that you would like to assign this new user to. Supported group roles: ‘Destination Administrator‘, ‘Destination Reviewer‘, ‘Destination Analyst‘, ‘Connector Creator‘, or a custom destination role
    id String
    The unique identifier for the user within the account.
    email string
    The email address that the user has associated with their user profile.
    role string
    The group role that you would like to assign this new user to. Supported group roles: ‘Destination Administrator‘, ‘Destination Reviewer‘, ‘Destination Analyst‘, ‘Connector Creator‘, or a custom destination role
    id string
    The unique identifier for the user within the account.
    email str
    The email address that the user has associated with their user profile.
    role str
    The group role that you would like to assign this new user to. Supported group roles: ‘Destination Administrator‘, ‘Destination Reviewer‘, ‘Destination Analyst‘, ‘Connector Creator‘, or a custom destination role
    id str
    The unique identifier for the user within the account.
    email String
    The email address that the user has associated with their user profile.
    role String
    The group role that you would like to assign this new user to. Supported group roles: ‘Destination Administrator‘, ‘Destination Reviewer‘, ‘Destination Analyst‘, ‘Connector Creator‘, or a custom destination role
    id String
    The unique identifier for the user within the account.

    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