1. Packages
  2. PagerDuty
  3. API Docs
  4. UserContactMethod
PagerDuty v4.12.3 published on Tuesday, May 21, 2024 by Pulumi

pagerduty.UserContactMethod

Explore with Pulumi AI

pagerduty logo
PagerDuty v4.12.3 published on Tuesday, May 21, 2024 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as pagerduty from "@pulumi/pagerduty";
    
    const example = new pagerduty.User("example", {
        name: "Earline Greenholt",
        email: "125.greenholt.earline@graham.name",
        teams: [examplePagerdutyTeam.id],
    });
    const email = new pagerduty.UserContactMethod("email", {
        userId: example.id,
        type: "email_contact_method",
        address: "foo@bar.com",
        label: "Work",
    });
    const phone = new pagerduty.UserContactMethod("phone", {
        userId: example.id,
        type: "phone_contact_method",
        countryCode: 1,
        address: "2025550199",
        label: "Work",
    });
    const sms = new pagerduty.UserContactMethod("sms", {
        userId: example.id,
        type: "sms_contact_method",
        countryCode: 1,
        address: "2025550199",
        label: "Work",
    });
    
    import pulumi
    import pulumi_pagerduty as pagerduty
    
    example = pagerduty.User("example",
        name="Earline Greenholt",
        email="125.greenholt.earline@graham.name",
        teams=[example_pagerduty_team["id"]])
    email = pagerduty.UserContactMethod("email",
        user_id=example.id,
        type="email_contact_method",
        address="foo@bar.com",
        label="Work")
    phone = pagerduty.UserContactMethod("phone",
        user_id=example.id,
        type="phone_contact_method",
        country_code=1,
        address="2025550199",
        label="Work")
    sms = pagerduty.UserContactMethod("sms",
        user_id=example.id,
        type="sms_contact_method",
        country_code=1,
        address="2025550199",
        label="Work")
    
    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 {
    		example, err := pagerduty.NewUser(ctx, "example", &pagerduty.UserArgs{
    			Name:  pulumi.String("Earline Greenholt"),
    			Email: pulumi.String("125.greenholt.earline@graham.name"),
    			Teams: pulumi.StringArray{
    				examplePagerdutyTeam.Id,
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = pagerduty.NewUserContactMethod(ctx, "email", &pagerduty.UserContactMethodArgs{
    			UserId:  example.ID(),
    			Type:    pulumi.String("email_contact_method"),
    			Address: pulumi.String("foo@bar.com"),
    			Label:   pulumi.String("Work"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = pagerduty.NewUserContactMethod(ctx, "phone", &pagerduty.UserContactMethodArgs{
    			UserId:      example.ID(),
    			Type:        pulumi.String("phone_contact_method"),
    			CountryCode: pulumi.Int(1),
    			Address:     pulumi.String("2025550199"),
    			Label:       pulumi.String("Work"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = pagerduty.NewUserContactMethod(ctx, "sms", &pagerduty.UserContactMethodArgs{
    			UserId:      example.ID(),
    			Type:        pulumi.String("sms_contact_method"),
    			CountryCode: pulumi.Int(1),
    			Address:     pulumi.String("2025550199"),
    			Label:       pulumi.String("Work"),
    		})
    		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 example = new Pagerduty.User("example", new()
        {
            Name = "Earline Greenholt",
            Email = "125.greenholt.earline@graham.name",
            Teams = new[]
            {
                examplePagerdutyTeam.Id,
            },
        });
    
        var email = new Pagerduty.UserContactMethod("email", new()
        {
            UserId = example.Id,
            Type = "email_contact_method",
            Address = "foo@bar.com",
            Label = "Work",
        });
    
        var phone = new Pagerduty.UserContactMethod("phone", new()
        {
            UserId = example.Id,
            Type = "phone_contact_method",
            CountryCode = 1,
            Address = "2025550199",
            Label = "Work",
        });
    
        var sms = new Pagerduty.UserContactMethod("sms", new()
        {
            UserId = example.Id,
            Type = "sms_contact_method",
            CountryCode = 1,
            Address = "2025550199",
            Label = "Work",
        });
    
    });
    
    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.UserContactMethod;
    import com.pulumi.pagerduty.UserContactMethodArgs;
    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 example = new User("example", UserArgs.builder()        
                .name("Earline Greenholt")
                .email("125.greenholt.earline@graham.name")
                .teams(examplePagerdutyTeam.id())
                .build());
    
            var email = new UserContactMethod("email", UserContactMethodArgs.builder()        
                .userId(example.id())
                .type("email_contact_method")
                .address("foo@bar.com")
                .label("Work")
                .build());
    
            var phone = new UserContactMethod("phone", UserContactMethodArgs.builder()        
                .userId(example.id())
                .type("phone_contact_method")
                .countryCode("+1")
                .address("2025550199")
                .label("Work")
                .build());
    
            var sms = new UserContactMethod("sms", UserContactMethodArgs.builder()        
                .userId(example.id())
                .type("sms_contact_method")
                .countryCode("+1")
                .address("2025550199")
                .label("Work")
                .build());
    
        }
    }
    
    resources:
      example:
        type: pagerduty:User
        properties:
          name: Earline Greenholt
          email: 125.greenholt.earline@graham.name
          teams:
            - ${examplePagerdutyTeam.id}
      email:
        type: pagerduty:UserContactMethod
        properties:
          userId: ${example.id}
          type: email_contact_method
          address: foo@bar.com
          label: Work
      phone:
        type: pagerduty:UserContactMethod
        properties:
          userId: ${example.id}
          type: phone_contact_method
          countryCode: '+1'
          address: '2025550199'
          label: Work
      sms:
        type: pagerduty:UserContactMethod
        properties:
          userId: ${example.id}
          type: sms_contact_method
          countryCode: '+1'
          address: '2025550199'
          label: Work
    

    Create UserContactMethod Resource

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

    Constructor syntax

    new UserContactMethod(name: string, args: UserContactMethodArgs, opts?: CustomResourceOptions);
    @overload
    def UserContactMethod(resource_name: str,
                          args: UserContactMethodArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def UserContactMethod(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          address: Optional[str] = None,
                          label: Optional[str] = None,
                          type: Optional[str] = None,
                          user_id: Optional[str] = None,
                          country_code: Optional[int] = None,
                          send_short_email: Optional[bool] = None)
    func NewUserContactMethod(ctx *Context, name string, args UserContactMethodArgs, opts ...ResourceOption) (*UserContactMethod, error)
    public UserContactMethod(string name, UserContactMethodArgs args, CustomResourceOptions? opts = null)
    public UserContactMethod(String name, UserContactMethodArgs args)
    public UserContactMethod(String name, UserContactMethodArgs args, CustomResourceOptions options)
    
    type: pagerduty:UserContactMethod
    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 UserContactMethodArgs
    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 UserContactMethodArgs
    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 UserContactMethodArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args UserContactMethodArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args UserContactMethodArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

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

    var userContactMethodResource = new Pagerduty.UserContactMethod("userContactMethodResource", new()
    {
        Address = "string",
        Label = "string",
        Type = "string",
        UserId = "string",
        CountryCode = 0,
        SendShortEmail = false,
    });
    
    example, err := pagerduty.NewUserContactMethod(ctx, "userContactMethodResource", &pagerduty.UserContactMethodArgs{
    	Address:        pulumi.String("string"),
    	Label:          pulumi.String("string"),
    	Type:           pulumi.String("string"),
    	UserId:         pulumi.String("string"),
    	CountryCode:    pulumi.Int(0),
    	SendShortEmail: pulumi.Bool(false),
    })
    
    var userContactMethodResource = new UserContactMethod("userContactMethodResource", UserContactMethodArgs.builder()
        .address("string")
        .label("string")
        .type("string")
        .userId("string")
        .countryCode(0)
        .sendShortEmail(false)
        .build());
    
    user_contact_method_resource = pagerduty.UserContactMethod("userContactMethodResource",
        address="string",
        label="string",
        type="string",
        user_id="string",
        country_code=0,
        send_short_email=False)
    
    const userContactMethodResource = new pagerduty.UserContactMethod("userContactMethodResource", {
        address: "string",
        label: "string",
        type: "string",
        userId: "string",
        countryCode: 0,
        sendShortEmail: false,
    });
    
    type: pagerduty:UserContactMethod
    properties:
        address: string
        countryCode: 0
        label: string
        sendShortEmail: false
        type: string
        userId: string
    

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

    Address string
    Label string
    Type string
    UserId string
    CountryCode int
    SendShortEmail bool
    Address string
    Label string
    Type string
    UserId string
    CountryCode int
    SendShortEmail bool
    address String
    label String
    type String
    userId String
    countryCode Integer
    sendShortEmail Boolean
    address string
    label string
    type string
    userId string
    countryCode number
    sendShortEmail boolean
    address String
    label String
    type String
    userId String
    countryCode Number
    sendShortEmail Boolean

    Outputs

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

    Blacklisted bool
    If true, this phone has been blacklisted by PagerDuty and no messages will be sent to it.
    Enabled bool
    If true, this phone is capable of receiving SMS messages.
    Id string
    The provider-assigned unique ID for this managed resource.
    Blacklisted bool
    If true, this phone has been blacklisted by PagerDuty and no messages will be sent to it.
    Enabled bool
    If true, this phone is capable of receiving SMS messages.
    Id string
    The provider-assigned unique ID for this managed resource.
    blacklisted Boolean
    If true, this phone has been blacklisted by PagerDuty and no messages will be sent to it.
    enabled Boolean
    If true, this phone is capable of receiving SMS messages.
    id String
    The provider-assigned unique ID for this managed resource.
    blacklisted boolean
    If true, this phone has been blacklisted by PagerDuty and no messages will be sent to it.
    enabled boolean
    If true, this phone is capable of receiving SMS messages.
    id string
    The provider-assigned unique ID for this managed resource.
    blacklisted bool
    If true, this phone has been blacklisted by PagerDuty and no messages will be sent to it.
    enabled bool
    If true, this phone is capable of receiving SMS messages.
    id str
    The provider-assigned unique ID for this managed resource.
    blacklisted Boolean
    If true, this phone has been blacklisted by PagerDuty and no messages will be sent to it.
    enabled Boolean
    If true, this phone is capable of receiving SMS messages.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing UserContactMethod Resource

    Get an existing UserContactMethod 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?: UserContactMethodState, opts?: CustomResourceOptions): UserContactMethod
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            address: Optional[str] = None,
            blacklisted: Optional[bool] = None,
            country_code: Optional[int] = None,
            enabled: Optional[bool] = None,
            label: Optional[str] = None,
            send_short_email: Optional[bool] = None,
            type: Optional[str] = None,
            user_id: Optional[str] = None) -> UserContactMethod
    func GetUserContactMethod(ctx *Context, name string, id IDInput, state *UserContactMethodState, opts ...ResourceOption) (*UserContactMethod, error)
    public static UserContactMethod Get(string name, Input<string> id, UserContactMethodState? state, CustomResourceOptions? opts = null)
    public static UserContactMethod get(String name, Output<String> id, UserContactMethodState 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:
    Address string
    Blacklisted bool
    If true, this phone has been blacklisted by PagerDuty and no messages will be sent to it.
    CountryCode int
    Enabled bool
    If true, this phone is capable of receiving SMS messages.
    Label string
    SendShortEmail bool
    Type string
    UserId string
    Address string
    Blacklisted bool
    If true, this phone has been blacklisted by PagerDuty and no messages will be sent to it.
    CountryCode int
    Enabled bool
    If true, this phone is capable of receiving SMS messages.
    Label string
    SendShortEmail bool
    Type string
    UserId string
    address String
    blacklisted Boolean
    If true, this phone has been blacklisted by PagerDuty and no messages will be sent to it.
    countryCode Integer
    enabled Boolean
    If true, this phone is capable of receiving SMS messages.
    label String
    sendShortEmail Boolean
    type String
    userId String
    address string
    blacklisted boolean
    If true, this phone has been blacklisted by PagerDuty and no messages will be sent to it.
    countryCode number
    enabled boolean
    If true, this phone is capable of receiving SMS messages.
    label string
    sendShortEmail boolean
    type string
    userId string
    address str
    blacklisted bool
    If true, this phone has been blacklisted by PagerDuty and no messages will be sent to it.
    country_code int
    enabled bool
    If true, this phone is capable of receiving SMS messages.
    label str
    send_short_email bool
    type str
    user_id str
    address String
    blacklisted Boolean
    If true, this phone has been blacklisted by PagerDuty and no messages will be sent to it.
    countryCode Number
    enabled Boolean
    If true, this phone is capable of receiving SMS messages.
    label String
    sendShortEmail Boolean
    type String
    userId String

    Import

    Contact methods can be imported using the user_id and the id, e.g.

    $ pulumi import pagerduty:index/userContactMethod:UserContactMethod main PLBP09X:PLBP09X
    

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

    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.12.3 published on Tuesday, May 21, 2024 by Pulumi