fivetran.TeamConnectorMembership
Explore with Pulumi AI
This resource allows you to create, update, and delete connector membership for teams
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fivetran from "@pulumi/fivetran";
const testTeamConnectorMembership = new fivetran.TeamConnectorMembership("testTeamConnectorMembership", {
teamId: "test_team",
connectors: [
{
connectorId: "test_connector",
role: "Connector Administrator",
createdAt: "2020-05-25T15:26:47.306509Z",
},
{
connectorId: "test_connector",
role: "Connector Administrator",
createdAt: "2020-05-25T15:26:47.306509Z",
},
],
}, {
provider: fivetran_provider,
});
import pulumi
import pulumi_fivetran as fivetran
test_team_connector_membership = fivetran.TeamConnectorMembership("testTeamConnectorMembership",
team_id="test_team",
connectors=[
{
"connector_id": "test_connector",
"role": "Connector Administrator",
"created_at": "2020-05-25T15:26:47.306509Z",
},
{
"connector_id": "test_connector",
"role": "Connector Administrator",
"created_at": "2020-05-25T15:26:47.306509Z",
},
],
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.NewTeamConnectorMembership(ctx, "testTeamConnectorMembership", &fivetran.TeamConnectorMembershipArgs{
TeamId: pulumi.String("test_team"),
Connectors: fivetran.TeamConnectorMembershipConnectorArray{
&fivetran.TeamConnectorMembershipConnectorArgs{
ConnectorId: pulumi.String("test_connector"),
Role: pulumi.String("Connector Administrator"),
CreatedAt: pulumi.String("2020-05-25T15:26:47.306509Z"),
},
&fivetran.TeamConnectorMembershipConnectorArgs{
ConnectorId: pulumi.String("test_connector"),
Role: pulumi.String("Connector Administrator"),
CreatedAt: pulumi.String("2020-05-25T15:26:47.306509Z"),
},
},
}, 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 testTeamConnectorMembership = new Fivetran.TeamConnectorMembership("testTeamConnectorMembership", new()
{
TeamId = "test_team",
Connectors = new[]
{
new Fivetran.Inputs.TeamConnectorMembershipConnectorArgs
{
ConnectorId = "test_connector",
Role = "Connector Administrator",
CreatedAt = "2020-05-25T15:26:47.306509Z",
},
new Fivetran.Inputs.TeamConnectorMembershipConnectorArgs
{
ConnectorId = "test_connector",
Role = "Connector Administrator",
CreatedAt = "2020-05-25T15:26:47.306509Z",
},
},
}, 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.TeamConnectorMembership;
import com.pulumi.fivetran.TeamConnectorMembershipArgs;
import com.pulumi.fivetran.inputs.TeamConnectorMembershipConnectorArgs;
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 testTeamConnectorMembership = new TeamConnectorMembership("testTeamConnectorMembership", TeamConnectorMembershipArgs.builder()
.teamId("test_team")
.connectors(
TeamConnectorMembershipConnectorArgs.builder()
.connectorId("test_connector")
.role("Connector Administrator")
.createdAt("2020-05-25T15:26:47.306509Z")
.build(),
TeamConnectorMembershipConnectorArgs.builder()
.connectorId("test_connector")
.role("Connector Administrator")
.createdAt("2020-05-25T15:26:47.306509Z")
.build())
.build(), CustomResourceOptions.builder()
.provider(fivetran_provider)
.build());
}
}
resources:
testTeamConnectorMembership:
type: fivetran:TeamConnectorMembership
properties:
teamId: test_team
connectors:
- connectorId: test_connector
role: Connector Administrator
createdAt: 2020-05-25T15:26:47.306509Z
- connectorId: test_connector
role: Connector Administrator
createdAt: 2020-05-25T15:26:47.306509Z
options:
provider: ${["fivetran-provider"]}
Create TeamConnectorMembership Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TeamConnectorMembership(name: string, args: TeamConnectorMembershipArgs, opts?: CustomResourceOptions);
@overload
def TeamConnectorMembership(resource_name: str,
args: TeamConnectorMembershipArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TeamConnectorMembership(resource_name: str,
opts: Optional[ResourceOptions] = None,
team_id: Optional[str] = None,
connectors: Optional[Sequence[TeamConnectorMembershipConnectorArgs]] = None)
func NewTeamConnectorMembership(ctx *Context, name string, args TeamConnectorMembershipArgs, opts ...ResourceOption) (*TeamConnectorMembership, error)
public TeamConnectorMembership(string name, TeamConnectorMembershipArgs args, CustomResourceOptions? opts = null)
public TeamConnectorMembership(String name, TeamConnectorMembershipArgs args)
public TeamConnectorMembership(String name, TeamConnectorMembershipArgs args, CustomResourceOptions options)
type: fivetran:TeamConnectorMembership
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 TeamConnectorMembershipArgs
- 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 TeamConnectorMembershipArgs
- 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 TeamConnectorMembershipArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TeamConnectorMembershipArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TeamConnectorMembershipArgs
- 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 teamConnectorMembershipResource = new Fivetran.TeamConnectorMembership("teamConnectorMembershipResource", new()
{
TeamId = "string",
Connectors = new[]
{
new Fivetran.Inputs.TeamConnectorMembershipConnectorArgs
{
ConnectorId = "string",
Role = "string",
CreatedAt = "string",
},
},
});
example, err := fivetran.NewTeamConnectorMembership(ctx, "teamConnectorMembershipResource", &fivetran.TeamConnectorMembershipArgs{
TeamId: pulumi.String("string"),
Connectors: .TeamConnectorMembershipConnectorArray{
&.TeamConnectorMembershipConnectorArgs{
ConnectorId: pulumi.String("string"),
Role: pulumi.String("string"),
CreatedAt: pulumi.String("string"),
},
},
})
var teamConnectorMembershipResource = new TeamConnectorMembership("teamConnectorMembershipResource", TeamConnectorMembershipArgs.builder()
.teamId("string")
.connectors(TeamConnectorMembershipConnectorArgs.builder()
.connectorId("string")
.role("string")
.createdAt("string")
.build())
.build());
team_connector_membership_resource = fivetran.TeamConnectorMembership("teamConnectorMembershipResource",
team_id="string",
connectors=[{
"connector_id": "string",
"role": "string",
"created_at": "string",
}])
const teamConnectorMembershipResource = new fivetran.TeamConnectorMembership("teamConnectorMembershipResource", {
teamId: "string",
connectors: [{
connectorId: "string",
role: "string",
createdAt: "string",
}],
});
type: fivetran:TeamConnectorMembership
properties:
connectors:
- connectorId: string
createdAt: string
role: string
teamId: string
TeamConnectorMembership 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 TeamConnectorMembership resource accepts the following input properties:
- Team
Id string - The unique identifier for the team within your account.
- Connectors
List<Team
Connector Membership Connector>
- Team
Id string - The unique identifier for the team within your account.
- Connectors
[]Team
Connector Membership Connector Args
- team
Id String - The unique identifier for the team within your account.
- connectors
List<Team
Connector Membership Connector>
- team
Id string - The unique identifier for the team within your account.
- connectors
Team
Connector Membership Connector[]
- team_
id str - The unique identifier for the team within your account.
- connectors
Sequence[Team
Connector Membership Connector Args]
- team
Id String - The unique identifier for the team within your account.
- connectors List<Property Map>
Outputs
All input properties are implicitly available as output properties. Additionally, the TeamConnectorMembership 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 TeamConnectorMembership Resource
Get an existing TeamConnectorMembership 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?: TeamConnectorMembershipState, opts?: CustomResourceOptions): TeamConnectorMembership
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
connectors: Optional[Sequence[TeamConnectorMembershipConnectorArgs]] = None,
team_id: Optional[str] = None) -> TeamConnectorMembership
func GetTeamConnectorMembership(ctx *Context, name string, id IDInput, state *TeamConnectorMembershipState, opts ...ResourceOption) (*TeamConnectorMembership, error)
public static TeamConnectorMembership Get(string name, Input<string> id, TeamConnectorMembershipState? state, CustomResourceOptions? opts = null)
public static TeamConnectorMembership get(String name, Output<String> id, TeamConnectorMembershipState state, CustomResourceOptions options)
resources: _: type: fivetran:TeamConnectorMembership 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.
- Connectors
List<Team
Connector Membership Connector> - Team
Id string - The unique identifier for the team within your account.
- Connectors
[]Team
Connector Membership Connector Args - Team
Id string - The unique identifier for the team within your account.
- connectors
List<Team
Connector Membership Connector> - team
Id String - The unique identifier for the team within your account.
- connectors
Team
Connector Membership Connector[] - team
Id string - The unique identifier for the team within your account.
- connectors
Sequence[Team
Connector Membership Connector Args] - team_
id str - The unique identifier for the team within your account.
- connectors List<Property Map>
- team
Id String - The unique identifier for the team within your account.
Supporting Types
TeamConnectorMembershipConnector, TeamConnectorMembershipConnectorArgs
- Connector
Id string - The connector unique identifier
- Role string
- The team's role that links the team and the connector
- Created
At string - The date and time the membership was created
- Connector
Id string - The connector unique identifier
- Role string
- The team's role that links the team and the connector
- Created
At string - The date and time the membership was created
- connector
Id String - The connector unique identifier
- role String
- The team's role that links the team and the connector
- created
At String - The date and time the membership was created
- connector
Id string - The connector unique identifier
- role string
- The team's role that links the team and the connector
- created
At string - The date and time the membership was created
- connector_
id str - The connector unique identifier
- role str
- The team's role that links the team and the connector
- created_
at str - The date and time the membership was created
- connector
Id String - The connector unique identifier
- role String
- The team's role that links the team and the connector
- created
At String - The date and time the membership was created
Import
- To import an existing
fivetran_team_connector_membership
resource into your Terraform state, you need to getteam_id
andconnector_id
You can retrieve all teams using the fivetran_teams data source.
- Define an empty resource in your
.tf
configuration:
hcl
resource “fivetran_team_connector_membership” “my_imported_fivetran_team_connector_membership” {
}
- Run the
pulumi import
command:
$ pulumi import fivetran:index/teamConnectorMembership:TeamConnectorMembership my_imported_fivetran_team_connector_membership {team_id}
- Use the
terraform state show
command to get the values from the state:
terraform state show ‘fivetran_team_connector_membership.my_imported_fivetran_team_connector_membership’
- 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.