1. Packages
  2. PagerDuty
  3. API Docs
  4. TeamMembership
PagerDuty v4.10.1 published on Wednesday, Mar 27, 2024 by Pulumi

pagerduty.TeamMembership

Explore with Pulumi AI

pagerduty logo
PagerDuty v4.10.1 published on Wednesday, Mar 27, 2024 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as pagerduty from "@pulumi/pagerduty";
    
    const fooUser = new pagerduty.User("fooUser", {email: "foo@bar.com"});
    const fooTeam = new pagerduty.Team("fooTeam", {description: "foo"});
    const fooTeamMembership = new pagerduty.TeamMembership("fooTeamMembership", {
        userId: fooUser.id,
        teamId: fooTeam.id,
        role: "manager",
    });
    
    import pulumi
    import pulumi_pagerduty as pagerduty
    
    foo_user = pagerduty.User("fooUser", email="foo@bar.com")
    foo_team = pagerduty.Team("fooTeam", description="foo")
    foo_team_membership = pagerduty.TeamMembership("fooTeamMembership",
        user_id=foo_user.id,
        team_id=foo_team.id,
        role="manager")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-pagerduty/sdk/v4/go/pagerduty"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		fooUser, err := pagerduty.NewUser(ctx, "fooUser", &pagerduty.UserArgs{
    			Email: pulumi.String("foo@bar.com"),
    		})
    		if err != nil {
    			return err
    		}
    		fooTeam, err := pagerduty.NewTeam(ctx, "fooTeam", &pagerduty.TeamArgs{
    			Description: pulumi.String("foo"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = pagerduty.NewTeamMembership(ctx, "fooTeamMembership", &pagerduty.TeamMembershipArgs{
    			UserId: fooUser.ID(),
    			TeamId: fooTeam.ID(),
    			Role:   pulumi.String("manager"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Pagerduty = Pulumi.Pagerduty;
    
    return await Deployment.RunAsync(() => 
    {
        var fooUser = new Pagerduty.User("fooUser", new()
        {
            Email = "foo@bar.com",
        });
    
        var fooTeam = new Pagerduty.Team("fooTeam", new()
        {
            Description = "foo",
        });
    
        var fooTeamMembership = new Pagerduty.TeamMembership("fooTeamMembership", new()
        {
            UserId = fooUser.Id,
            TeamId = fooTeam.Id,
            Role = "manager",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.pagerduty.User;
    import com.pulumi.pagerduty.UserArgs;
    import com.pulumi.pagerduty.Team;
    import com.pulumi.pagerduty.TeamArgs;
    import com.pulumi.pagerduty.TeamMembership;
    import com.pulumi.pagerduty.TeamMembershipArgs;
    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 fooUser = new User("fooUser", UserArgs.builder()        
                .email("foo@bar.com")
                .build());
    
            var fooTeam = new Team("fooTeam", TeamArgs.builder()        
                .description("foo")
                .build());
    
            var fooTeamMembership = new TeamMembership("fooTeamMembership", TeamMembershipArgs.builder()        
                .userId(fooUser.id())
                .teamId(fooTeam.id())
                .role("manager")
                .build());
    
        }
    }
    
    resources:
      fooUser:
        type: pagerduty:User
        properties:
          email: foo@bar.com
      fooTeam:
        type: pagerduty:Team
        properties:
          description: foo
      fooTeamMembership:
        type: pagerduty:TeamMembership
        properties:
          userId: ${fooUser.id}
          teamId: ${fooTeam.id}
          role: manager
    

    Create TeamMembership Resource

    new TeamMembership(name: string, args: TeamMembershipArgs, opts?: CustomResourceOptions);
    @overload
    def TeamMembership(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       role: Optional[str] = None,
                       team_id: Optional[str] = None,
                       user_id: Optional[str] = None)
    @overload
    def TeamMembership(resource_name: str,
                       args: TeamMembershipArgs,
                       opts: Optional[ResourceOptions] = None)
    func NewTeamMembership(ctx *Context, name string, args TeamMembershipArgs, opts ...ResourceOption) (*TeamMembership, error)
    public TeamMembership(string name, TeamMembershipArgs args, CustomResourceOptions? opts = null)
    public TeamMembership(String name, TeamMembershipArgs args)
    public TeamMembership(String name, TeamMembershipArgs args, CustomResourceOptions options)
    
    type: pagerduty:TeamMembership
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args TeamMembershipArgs
    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 TeamMembershipArgs
    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 TeamMembershipArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TeamMembershipArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TeamMembershipArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    TeamMembership Resource Properties

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

    Inputs

    The TeamMembership resource accepts the following input properties:

    TeamId string
    The ID of the team in which the user will belong.
    UserId string
    The ID of the user to add to the team.
    Role string
    The role of the user in the team. One of observer, responder, or manager. Defaults to manager.
    These roles match up to user roles in the following ways:

    • User role of user is a Team role of manager
    • User role of limited_user is a Team role of responder
    TeamId string
    The ID of the team in which the user will belong.
    UserId string
    The ID of the user to add to the team.
    Role string
    The role of the user in the team. One of observer, responder, or manager. Defaults to manager.
    These roles match up to user roles in the following ways:

    • User role of user is a Team role of manager
    • User role of limited_user is a Team role of responder
    teamId String
    The ID of the team in which the user will belong.
    userId String
    The ID of the user to add to the team.
    role String
    The role of the user in the team. One of observer, responder, or manager. Defaults to manager.
    These roles match up to user roles in the following ways:

    • User role of user is a Team role of manager
    • User role of limited_user is a Team role of responder
    teamId string
    The ID of the team in which the user will belong.
    userId string
    The ID of the user to add to the team.
    role string
    The role of the user in the team. One of observer, responder, or manager. Defaults to manager.
    These roles match up to user roles in the following ways:

    • User role of user is a Team role of manager
    • User role of limited_user is a Team role of responder
    team_id str
    The ID of the team in which the user will belong.
    user_id str
    The ID of the user to add to the team.
    role str
    The role of the user in the team. One of observer, responder, or manager. Defaults to manager.
    These roles match up to user roles in the following ways:

    • User role of user is a Team role of manager
    • User role of limited_user is a Team role of responder
    teamId String
    The ID of the team in which the user will belong.
    userId String
    The ID of the user to add to the team.
    role String
    The role of the user in the team. One of observer, responder, or manager. Defaults to manager.
    These roles match up to user roles in the following ways:

    • User role of user is a Team role of manager
    • User role of limited_user is a Team role of responder

    Outputs

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

    Get an existing TeamMembership 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?: TeamMembershipState, opts?: CustomResourceOptions): TeamMembership
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            role: Optional[str] = None,
            team_id: Optional[str] = None,
            user_id: Optional[str] = None) -> TeamMembership
    func GetTeamMembership(ctx *Context, name string, id IDInput, state *TeamMembershipState, opts ...ResourceOption) (*TeamMembership, error)
    public static TeamMembership Get(string name, Input<string> id, TeamMembershipState? state, CustomResourceOptions? opts = null)
    public static TeamMembership get(String name, Output<String> id, TeamMembershipState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    Role string
    The role of the user in the team. One of observer, responder, or manager. Defaults to manager.
    These roles match up to user roles in the following ways:

    • User role of user is a Team role of manager
    • User role of limited_user is a Team role of responder
    TeamId string
    The ID of the team in which the user will belong.
    UserId string
    The ID of the user to add to the team.
    Role string
    The role of the user in the team. One of observer, responder, or manager. Defaults to manager.
    These roles match up to user roles in the following ways:

    • User role of user is a Team role of manager
    • User role of limited_user is a Team role of responder
    TeamId string
    The ID of the team in which the user will belong.
    UserId string
    The ID of the user to add to the team.
    role String
    The role of the user in the team. One of observer, responder, or manager. Defaults to manager.
    These roles match up to user roles in the following ways:

    • User role of user is a Team role of manager
    • User role of limited_user is a Team role of responder
    teamId String
    The ID of the team in which the user will belong.
    userId String
    The ID of the user to add to the team.
    role string
    The role of the user in the team. One of observer, responder, or manager. Defaults to manager.
    These roles match up to user roles in the following ways:

    • User role of user is a Team role of manager
    • User role of limited_user is a Team role of responder
    teamId string
    The ID of the team in which the user will belong.
    userId string
    The ID of the user to add to the team.
    role str
    The role of the user in the team. One of observer, responder, or manager. Defaults to manager.
    These roles match up to user roles in the following ways:

    • User role of user is a Team role of manager
    • User role of limited_user is a Team role of responder
    team_id str
    The ID of the team in which the user will belong.
    user_id str
    The ID of the user to add to the team.
    role String
    The role of the user in the team. One of observer, responder, or manager. Defaults to manager.
    These roles match up to user roles in the following ways:

    • User role of user is a Team role of manager
    • User role of limited_user is a Team role of responder
    teamId String
    The ID of the team in which the user will belong.
    userId String
    The ID of the user to add to the team.

    Import

    Team memberships can be imported using the user_id and team_id, e.g.

    $ pulumi import pagerduty:index/teamMembership:TeamMembership main PLBP09X:PLB09Z
    

    Package Details

    Repository
    PagerDuty pulumi/pulumi-pagerduty
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the pagerduty Terraform Provider.
    pagerduty logo
    PagerDuty v4.10.1 published on Wednesday, Mar 27, 2024 by Pulumi