1. Packages
  2. Rootly
  3. API Docs
  4. WorkflowTaskCreatePagertreeAlert
Rootly v1.2.1 published on Tuesday, Apr 2, 2024 by Rootly

rootly.WorkflowTaskCreatePagertreeAlert

Explore with Pulumi AI

rootly logo
Rootly v1.2.1 published on Tuesday, Apr 2, 2024 by Rootly

    Manages workflow create_pagertree_alert task.

    Create WorkflowTaskCreatePagertreeAlert Resource

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

    Constructor syntax

    new WorkflowTaskCreatePagertreeAlert(name: string, args: WorkflowTaskCreatePagertreeAlertArgs, opts?: CustomResourceOptions);
    @overload
    def WorkflowTaskCreatePagertreeAlert(resource_name: str,
                                         args: WorkflowTaskCreatePagertreeAlertArgs,
                                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def WorkflowTaskCreatePagertreeAlert(resource_name: str,
                                         opts: Optional[ResourceOptions] = None,
                                         task_params: Optional[WorkflowTaskCreatePagertreeAlertTaskParamsArgs] = None,
                                         workflow_id: Optional[str] = None,
                                         enabled: Optional[bool] = None,
                                         name: Optional[str] = None,
                                         position: Optional[int] = None,
                                         skip_on_failure: Optional[bool] = None)
    func NewWorkflowTaskCreatePagertreeAlert(ctx *Context, name string, args WorkflowTaskCreatePagertreeAlertArgs, opts ...ResourceOption) (*WorkflowTaskCreatePagertreeAlert, error)
    public WorkflowTaskCreatePagertreeAlert(string name, WorkflowTaskCreatePagertreeAlertArgs args, CustomResourceOptions? opts = null)
    public WorkflowTaskCreatePagertreeAlert(String name, WorkflowTaskCreatePagertreeAlertArgs args)
    public WorkflowTaskCreatePagertreeAlert(String name, WorkflowTaskCreatePagertreeAlertArgs args, CustomResourceOptions options)
    
    type: rootly:WorkflowTaskCreatePagertreeAlert
    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 WorkflowTaskCreatePagertreeAlertArgs
    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 WorkflowTaskCreatePagertreeAlertArgs
    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 WorkflowTaskCreatePagertreeAlertArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WorkflowTaskCreatePagertreeAlertArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WorkflowTaskCreatePagertreeAlertArgs
    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 workflowTaskCreatePagertreeAlertResource = new Rootly.WorkflowTaskCreatePagertreeAlert("workflowTaskCreatePagertreeAlertResource", new()
    {
        TaskParams = new Rootly.Inputs.WorkflowTaskCreatePagertreeAlertTaskParamsArgs
        {
            Description = "string",
            Incident = false,
            Severity = "string",
            TaskType = "string",
            Teams = new[]
            {
                new Rootly.Inputs.WorkflowTaskCreatePagertreeAlertTaskParamsTeamArgs
                {
                    Id = "string",
                    Name = "string",
                },
            },
            Title = "string",
            Urgency = "string",
            Users = new[]
            {
                new Rootly.Inputs.WorkflowTaskCreatePagertreeAlertTaskParamsUserArgs
                {
                    Id = "string",
                    Name = "string",
                },
            },
        },
        WorkflowId = "string",
        Enabled = false,
        Name = "string",
        Position = 0,
        SkipOnFailure = false,
    });
    
    example, err := rootly.NewWorkflowTaskCreatePagertreeAlert(ctx, "workflowTaskCreatePagertreeAlertResource", &rootly.WorkflowTaskCreatePagertreeAlertArgs{
    	TaskParams: &rootly.WorkflowTaskCreatePagertreeAlertTaskParamsArgs{
    		Description: pulumi.String("string"),
    		Incident:    pulumi.Bool(false),
    		Severity:    pulumi.String("string"),
    		TaskType:    pulumi.String("string"),
    		Teams: rootly.WorkflowTaskCreatePagertreeAlertTaskParamsTeamArray{
    			&rootly.WorkflowTaskCreatePagertreeAlertTaskParamsTeamArgs{
    				Id:   pulumi.String("string"),
    				Name: pulumi.String("string"),
    			},
    		},
    		Title:   pulumi.String("string"),
    		Urgency: pulumi.String("string"),
    		Users: rootly.WorkflowTaskCreatePagertreeAlertTaskParamsUserArray{
    			&rootly.WorkflowTaskCreatePagertreeAlertTaskParamsUserArgs{
    				Id:   pulumi.String("string"),
    				Name: pulumi.String("string"),
    			},
    		},
    	},
    	WorkflowId:    pulumi.String("string"),
    	Enabled:       pulumi.Bool(false),
    	Name:          pulumi.String("string"),
    	Position:      pulumi.Int(0),
    	SkipOnFailure: pulumi.Bool(false),
    })
    
    var workflowTaskCreatePagertreeAlertResource = new WorkflowTaskCreatePagertreeAlert("workflowTaskCreatePagertreeAlertResource", WorkflowTaskCreatePagertreeAlertArgs.builder()        
        .taskParams(WorkflowTaskCreatePagertreeAlertTaskParamsArgs.builder()
            .description("string")
            .incident(false)
            .severity("string")
            .taskType("string")
            .teams(WorkflowTaskCreatePagertreeAlertTaskParamsTeamArgs.builder()
                .id("string")
                .name("string")
                .build())
            .title("string")
            .urgency("string")
            .users(WorkflowTaskCreatePagertreeAlertTaskParamsUserArgs.builder()
                .id("string")
                .name("string")
                .build())
            .build())
        .workflowId("string")
        .enabled(false)
        .name("string")
        .position(0)
        .skipOnFailure(false)
        .build());
    
    workflow_task_create_pagertree_alert_resource = rootly.WorkflowTaskCreatePagertreeAlert("workflowTaskCreatePagertreeAlertResource",
        task_params=rootly.WorkflowTaskCreatePagertreeAlertTaskParamsArgs(
            description="string",
            incident=False,
            severity="string",
            task_type="string",
            teams=[rootly.WorkflowTaskCreatePagertreeAlertTaskParamsTeamArgs(
                id="string",
                name="string",
            )],
            title="string",
            urgency="string",
            users=[rootly.WorkflowTaskCreatePagertreeAlertTaskParamsUserArgs(
                id="string",
                name="string",
            )],
        ),
        workflow_id="string",
        enabled=False,
        name="string",
        position=0,
        skip_on_failure=False)
    
    const workflowTaskCreatePagertreeAlertResource = new rootly.WorkflowTaskCreatePagertreeAlert("workflowTaskCreatePagertreeAlertResource", {
        taskParams: {
            description: "string",
            incident: false,
            severity: "string",
            taskType: "string",
            teams: [{
                id: "string",
                name: "string",
            }],
            title: "string",
            urgency: "string",
            users: [{
                id: "string",
                name: "string",
            }],
        },
        workflowId: "string",
        enabled: false,
        name: "string",
        position: 0,
        skipOnFailure: false,
    });
    
    type: rootly:WorkflowTaskCreatePagertreeAlert
    properties:
        enabled: false
        name: string
        position: 0
        skipOnFailure: false
        taskParams:
            description: string
            incident: false
            severity: string
            taskType: string
            teams:
                - id: string
                  name: string
            title: string
            urgency: string
            users:
                - id: string
                  name: string
        workflowId: string
    

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

    TaskParams WorkflowTaskCreatePagertreeAlertTaskParams
    The parameters for this workflow task.
    WorkflowId string
    The ID of the parent workflow
    Enabled bool
    Enable/disable this workflow task
    Name string
    Name of the workflow task
    Position int
    The position of the workflow task (1 being top of list)
    SkipOnFailure bool
    Skip workflow task if any failures
    TaskParams WorkflowTaskCreatePagertreeAlertTaskParamsArgs
    The parameters for this workflow task.
    WorkflowId string
    The ID of the parent workflow
    Enabled bool
    Enable/disable this workflow task
    Name string
    Name of the workflow task
    Position int
    The position of the workflow task (1 being top of list)
    SkipOnFailure bool
    Skip workflow task if any failures
    taskParams WorkflowTaskCreatePagertreeAlertTaskParams
    The parameters for this workflow task.
    workflowId String
    The ID of the parent workflow
    enabled Boolean
    Enable/disable this workflow task
    name String
    Name of the workflow task
    position Integer
    The position of the workflow task (1 being top of list)
    skipOnFailure Boolean
    Skip workflow task if any failures
    taskParams WorkflowTaskCreatePagertreeAlertTaskParams
    The parameters for this workflow task.
    workflowId string
    The ID of the parent workflow
    enabled boolean
    Enable/disable this workflow task
    name string
    Name of the workflow task
    position number
    The position of the workflow task (1 being top of list)
    skipOnFailure boolean
    Skip workflow task if any failures
    task_params WorkflowTaskCreatePagertreeAlertTaskParamsArgs
    The parameters for this workflow task.
    workflow_id str
    The ID of the parent workflow
    enabled bool
    Enable/disable this workflow task
    name str
    Name of the workflow task
    position int
    The position of the workflow task (1 being top of list)
    skip_on_failure bool
    Skip workflow task if any failures
    taskParams Property Map
    The parameters for this workflow task.
    workflowId String
    The ID of the parent workflow
    enabled Boolean
    Enable/disable this workflow task
    name String
    Name of the workflow task
    position Number
    The position of the workflow task (1 being top of list)
    skipOnFailure Boolean
    Skip workflow task if any failures

    Outputs

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

    Get an existing WorkflowTaskCreatePagertreeAlert 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?: WorkflowTaskCreatePagertreeAlertState, opts?: CustomResourceOptions): WorkflowTaskCreatePagertreeAlert
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            enabled: Optional[bool] = None,
            name: Optional[str] = None,
            position: Optional[int] = None,
            skip_on_failure: Optional[bool] = None,
            task_params: Optional[WorkflowTaskCreatePagertreeAlertTaskParamsArgs] = None,
            workflow_id: Optional[str] = None) -> WorkflowTaskCreatePagertreeAlert
    func GetWorkflowTaskCreatePagertreeAlert(ctx *Context, name string, id IDInput, state *WorkflowTaskCreatePagertreeAlertState, opts ...ResourceOption) (*WorkflowTaskCreatePagertreeAlert, error)
    public static WorkflowTaskCreatePagertreeAlert Get(string name, Input<string> id, WorkflowTaskCreatePagertreeAlertState? state, CustomResourceOptions? opts = null)
    public static WorkflowTaskCreatePagertreeAlert get(String name, Output<String> id, WorkflowTaskCreatePagertreeAlertState 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:
    Enabled bool
    Enable/disable this workflow task
    Name string
    Name of the workflow task
    Position int
    The position of the workflow task (1 being top of list)
    SkipOnFailure bool
    Skip workflow task if any failures
    TaskParams WorkflowTaskCreatePagertreeAlertTaskParams
    The parameters for this workflow task.
    WorkflowId string
    The ID of the parent workflow
    Enabled bool
    Enable/disable this workflow task
    Name string
    Name of the workflow task
    Position int
    The position of the workflow task (1 being top of list)
    SkipOnFailure bool
    Skip workflow task if any failures
    TaskParams WorkflowTaskCreatePagertreeAlertTaskParamsArgs
    The parameters for this workflow task.
    WorkflowId string
    The ID of the parent workflow
    enabled Boolean
    Enable/disable this workflow task
    name String
    Name of the workflow task
    position Integer
    The position of the workflow task (1 being top of list)
    skipOnFailure Boolean
    Skip workflow task if any failures
    taskParams WorkflowTaskCreatePagertreeAlertTaskParams
    The parameters for this workflow task.
    workflowId String
    The ID of the parent workflow
    enabled boolean
    Enable/disable this workflow task
    name string
    Name of the workflow task
    position number
    The position of the workflow task (1 being top of list)
    skipOnFailure boolean
    Skip workflow task if any failures
    taskParams WorkflowTaskCreatePagertreeAlertTaskParams
    The parameters for this workflow task.
    workflowId string
    The ID of the parent workflow
    enabled bool
    Enable/disable this workflow task
    name str
    Name of the workflow task
    position int
    The position of the workflow task (1 being top of list)
    skip_on_failure bool
    Skip workflow task if any failures
    task_params WorkflowTaskCreatePagertreeAlertTaskParamsArgs
    The parameters for this workflow task.
    workflow_id str
    The ID of the parent workflow
    enabled Boolean
    Enable/disable this workflow task
    name String
    Name of the workflow task
    position Number
    The position of the workflow task (1 being top of list)
    skipOnFailure Boolean
    Skip workflow task if any failures
    taskParams Property Map
    The parameters for this workflow task.
    workflowId String
    The ID of the parent workflow

    Supporting Types

    WorkflowTaskCreatePagertreeAlertTaskParams, WorkflowTaskCreatePagertreeAlertTaskParamsArgs

    Description string
    Description of alert as text
    Incident bool
    Setting to true makes an alert a Pagertree incident. Value must be one of true or false
    Severity string
    Value must be one of auto, SEV-1, SEV-2, SEV-3, SEV-4.
    TaskType string
    Teams List<WorkflowTaskCreatePagertreeAlertTaskParamsTeam>
    Title string
    Title of alert as text
    Urgency string
    Value must be one of auto, critical, high, medium, low.
    Users List<WorkflowTaskCreatePagertreeAlertTaskParamsUser>
    Description string
    Description of alert as text
    Incident bool
    Setting to true makes an alert a Pagertree incident. Value must be one of true or false
    Severity string
    Value must be one of auto, SEV-1, SEV-2, SEV-3, SEV-4.
    TaskType string
    Teams []WorkflowTaskCreatePagertreeAlertTaskParamsTeam
    Title string
    Title of alert as text
    Urgency string
    Value must be one of auto, critical, high, medium, low.
    Users []WorkflowTaskCreatePagertreeAlertTaskParamsUser
    description String
    Description of alert as text
    incident Boolean
    Setting to true makes an alert a Pagertree incident. Value must be one of true or false
    severity String
    Value must be one of auto, SEV-1, SEV-2, SEV-3, SEV-4.
    taskType String
    teams List<WorkflowTaskCreatePagertreeAlertTaskParamsTeam>
    title String
    Title of alert as text
    urgency String
    Value must be one of auto, critical, high, medium, low.
    users List<WorkflowTaskCreatePagertreeAlertTaskParamsUser>
    description string
    Description of alert as text
    incident boolean
    Setting to true makes an alert a Pagertree incident. Value must be one of true or false
    severity string
    Value must be one of auto, SEV-1, SEV-2, SEV-3, SEV-4.
    taskType string
    teams WorkflowTaskCreatePagertreeAlertTaskParamsTeam[]
    title string
    Title of alert as text
    urgency string
    Value must be one of auto, critical, high, medium, low.
    users WorkflowTaskCreatePagertreeAlertTaskParamsUser[]
    description str
    Description of alert as text
    incident bool
    Setting to true makes an alert a Pagertree incident. Value must be one of true or false
    severity str
    Value must be one of auto, SEV-1, SEV-2, SEV-3, SEV-4.
    task_type str
    teams Sequence[WorkflowTaskCreatePagertreeAlertTaskParamsTeam]
    title str
    Title of alert as text
    urgency str
    Value must be one of auto, critical, high, medium, low.
    users Sequence[WorkflowTaskCreatePagertreeAlertTaskParamsUser]
    description String
    Description of alert as text
    incident Boolean
    Setting to true makes an alert a Pagertree incident. Value must be one of true or false
    severity String
    Value must be one of auto, SEV-1, SEV-2, SEV-3, SEV-4.
    taskType String
    teams List<Property Map>
    title String
    Title of alert as text
    urgency String
    Value must be one of auto, critical, high, medium, low.
    users List<Property Map>

    WorkflowTaskCreatePagertreeAlertTaskParamsTeam, WorkflowTaskCreatePagertreeAlertTaskParamsTeamArgs

    Id string
    Name string
    Id string
    Name string
    id String
    name String
    id string
    name string
    id str
    name str
    id String
    name String

    WorkflowTaskCreatePagertreeAlertTaskParamsUser, WorkflowTaskCreatePagertreeAlertTaskParamsUserArgs

    Id string
    Name string
    Id string
    Name string
    id String
    name String
    id string
    name string
    id str
    name str
    id String
    name String

    Package Details

    Repository
    rootly rootlyhq/pulumi-rootly
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the rootly Terraform Provider.
    rootly logo
    Rootly v1.2.1 published on Tuesday, Apr 2, 2024 by Rootly