rootly.WorkflowTaskTriggerWorkflow
Explore with Pulumi AI
Manages workflow trigger_workflow task.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Rootly = Pulumi.Rootly;
return await Deployment.RunAsync(() => 
{
    var triggerAnotherWorkflow = new Rootly.WorkflowIncident("triggerAnotherWorkflow", new()
    {
        Description = "Trigger another workflow",
        TriggerParams = new Rootly.Inputs.WorkflowIncidentTriggerParamsArgs
        {
            Triggers = new[]
            {
                "incident_created",
            },
            IncidentStatuses = new[]
            {
                "started",
            },
            IncidentConditionStatus = "IS",
        },
        Enabled = true,
    });
    var triggerAnotherWorkflowTask = new Rootly.WorkflowTaskTriggerWorkflow("triggerAnotherWorkflowTask", new()
    {
        Position = 1,
        WorkflowId = triggerAnotherWorkflow.Id,
        TaskParams = new Rootly.Inputs.WorkflowTaskTriggerWorkflowTaskParamsArgs
        {
            Kind = "incident",
            Workflow = 
            {
                { "id", rootly_workflow_incident.Another_workflow.Id },
                { "name", "Trigger another workflow" },
            },
            Resource = 
            {
                { "id", "{{ incident.id }}" },
                { "name", "{{ incident.id }}" },
            },
        },
    });
});
package main
import (
	"github.com/pulumi/pulumi-rootly/sdk/go/rootly"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		triggerAnotherWorkflow, err := rootly.NewWorkflowIncident(ctx, "triggerAnotherWorkflow", &rootly.WorkflowIncidentArgs{
			Description: pulumi.String("Trigger another workflow"),
			TriggerParams: &rootly.WorkflowIncidentTriggerParamsArgs{
				Triggers: pulumi.StringArray{
					pulumi.String("incident_created"),
				},
				IncidentStatuses: pulumi.StringArray{
					pulumi.String("started"),
				},
				IncidentConditionStatus: pulumi.String("IS"),
			},
			Enabled: pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		_, err = rootly.NewWorkflowTaskTriggerWorkflow(ctx, "triggerAnotherWorkflowTask", &rootly.WorkflowTaskTriggerWorkflowArgs{
			Position:   pulumi.Int(1),
			WorkflowId: triggerAnotherWorkflow.ID(),
			TaskParams: &rootly.WorkflowTaskTriggerWorkflowTaskParamsArgs{
				Kind: pulumi.String("incident"),
				Workflow: pulumi.Map{
					"id":   pulumi.Any(rootly_workflow_incident.Another_workflow.Id),
					"name": pulumi.Any("Trigger another workflow"),
				},
				Resource: pulumi.Map{
					"id":   pulumi.Any("{{ incident.id }}"),
					"name": pulumi.Any("{{ incident.id }}"),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.rootly.WorkflowIncident;
import com.pulumi.rootly.WorkflowIncidentArgs;
import com.pulumi.rootly.inputs.WorkflowIncidentTriggerParamsArgs;
import com.pulumi.rootly.WorkflowTaskTriggerWorkflow;
import com.pulumi.rootly.WorkflowTaskTriggerWorkflowArgs;
import com.pulumi.rootly.inputs.WorkflowTaskTriggerWorkflowTaskParamsArgs;
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 triggerAnotherWorkflow = new WorkflowIncident("triggerAnotherWorkflow", WorkflowIncidentArgs.builder()        
            .description("Trigger another workflow")
            .triggerParams(WorkflowIncidentTriggerParamsArgs.builder()
                .triggers("incident_created")
                .incidentStatuses("started")
                .incidentConditionStatus("IS")
                .build())
            .enabled(true)
            .build());
        var triggerAnotherWorkflowTask = new WorkflowTaskTriggerWorkflow("triggerAnotherWorkflowTask", WorkflowTaskTriggerWorkflowArgs.builder()        
            .position(1)
            .workflowId(triggerAnotherWorkflow.id())
            .taskParams(WorkflowTaskTriggerWorkflowTaskParamsArgs.builder()
                .kind("incident")
                .workflow(Map.ofEntries(
                    Map.entry("id", rootly_workflow_incident.another_workflow().id()),
                    Map.entry("name", "Trigger another workflow")
                ))
                .resource(Map.ofEntries(
                    Map.entry("id", "{{ incident.id }}"),
                    Map.entry("name", "{{ incident.id }}")
                ))
                .build())
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as rootly from "@pulumi/rootly";
const triggerAnotherWorkflow = new rootly.WorkflowIncident("triggerAnotherWorkflow", {
    description: "Trigger another workflow",
    triggerParams: {
        triggers: ["incident_created"],
        incidentStatuses: ["started"],
        incidentConditionStatus: "IS",
    },
    enabled: true,
});
const triggerAnotherWorkflowTask = new rootly.WorkflowTaskTriggerWorkflow("triggerAnotherWorkflowTask", {
    position: 1,
    workflowId: triggerAnotherWorkflow.id,
    taskParams: {
        kind: "incident",
        workflow: {
            id: rootly_workflow_incident.another_workflow.id,
            name: "Trigger another workflow",
        },
        resource: {
            id: "{{ incident.id }}",
            name: "{{ incident.id }}",
        },
    },
});
import pulumi
import pulumi_rootly as rootly
trigger_another_workflow = rootly.WorkflowIncident("triggerAnotherWorkflow",
    description="Trigger another workflow",
    trigger_params=rootly.WorkflowIncidentTriggerParamsArgs(
        triggers=["incident_created"],
        incident_statuses=["started"],
        incident_condition_status="IS",
    ),
    enabled=True)
trigger_another_workflow_task = rootly.WorkflowTaskTriggerWorkflow("triggerAnotherWorkflowTask",
    position=1,
    workflow_id=trigger_another_workflow.id,
    task_params=rootly.WorkflowTaskTriggerWorkflowTaskParamsArgs(
        kind="incident",
        workflow={
            "id": rootly_workflow_incident["another_workflow"]["id"],
            "name": "Trigger another workflow",
        },
        resource={
            "id": "{{ incident.id }}",
            "name": "{{ incident.id }}",
        },
    ))
resources:
  triggerAnotherWorkflow:
    type: rootly:WorkflowIncident
    properties:
      description: Trigger another workflow
      triggerParams:
        triggers:
          - incident_created
        incidentStatuses:
          - started
        incidentConditionStatus: IS
      enabled: true
  triggerAnotherWorkflowTask:
    type: rootly:WorkflowTaskTriggerWorkflow
    properties:
      position: 1
      workflowId: ${triggerAnotherWorkflow.id}
      taskParams:
        kind: incident
        workflow:
          id: ${rootly_workflow_incident.another_workflow.id}
          name: Trigger another workflow
        resource:
          id: '{{ incident.id }}'
          name: '{{ incident.id }}'
Create WorkflowTaskTriggerWorkflow Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WorkflowTaskTriggerWorkflow(name: string, args: WorkflowTaskTriggerWorkflowArgs, opts?: CustomResourceOptions);@overload
def WorkflowTaskTriggerWorkflow(resource_name: str,
                                args: WorkflowTaskTriggerWorkflowArgs,
                                opts: Optional[ResourceOptions] = None)
@overload
def WorkflowTaskTriggerWorkflow(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                task_params: Optional[WorkflowTaskTriggerWorkflowTaskParamsArgs] = 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 NewWorkflowTaskTriggerWorkflow(ctx *Context, name string, args WorkflowTaskTriggerWorkflowArgs, opts ...ResourceOption) (*WorkflowTaskTriggerWorkflow, error)public WorkflowTaskTriggerWorkflow(string name, WorkflowTaskTriggerWorkflowArgs args, CustomResourceOptions? opts = null)
public WorkflowTaskTriggerWorkflow(String name, WorkflowTaskTriggerWorkflowArgs args)
public WorkflowTaskTriggerWorkflow(String name, WorkflowTaskTriggerWorkflowArgs args, CustomResourceOptions options)
type: rootly:WorkflowTaskTriggerWorkflow
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 WorkflowTaskTriggerWorkflowArgs
- 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 WorkflowTaskTriggerWorkflowArgs
- 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 WorkflowTaskTriggerWorkflowArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkflowTaskTriggerWorkflowArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkflowTaskTriggerWorkflowArgs
- 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 workflowTaskTriggerWorkflowResource = new Rootly.WorkflowTaskTriggerWorkflow("workflowTaskTriggerWorkflowResource", new()
{
    TaskParams = new Rootly.Inputs.WorkflowTaskTriggerWorkflowTaskParamsArgs
    {
        AttributeToQueryBy = "string",
        Kind = "string",
        Resource = 
        {
            { "string", "any" },
        },
        Workflow = 
        {
            { "string", "any" },
        },
        CheckWorkflowConditions = false,
        TaskType = "string",
    },
    WorkflowId = "string",
    Enabled = false,
    Name = "string",
    Position = 0,
    SkipOnFailure = false,
});
example, err := rootly.NewWorkflowTaskTriggerWorkflow(ctx, "workflowTaskTriggerWorkflowResource", &rootly.WorkflowTaskTriggerWorkflowArgs{
	TaskParams: &rootly.WorkflowTaskTriggerWorkflowTaskParamsArgs{
		AttributeToQueryBy: pulumi.String("string"),
		Kind:               pulumi.String("string"),
		Resource: pulumi.Map{
			"string": pulumi.Any("any"),
		},
		Workflow: pulumi.Map{
			"string": pulumi.Any("any"),
		},
		CheckWorkflowConditions: pulumi.Bool(false),
		TaskType:                pulumi.String("string"),
	},
	WorkflowId:    pulumi.String("string"),
	Enabled:       pulumi.Bool(false),
	Name:          pulumi.String("string"),
	Position:      pulumi.Int(0),
	SkipOnFailure: pulumi.Bool(false),
})
var workflowTaskTriggerWorkflowResource = new WorkflowTaskTriggerWorkflow("workflowTaskTriggerWorkflowResource", WorkflowTaskTriggerWorkflowArgs.builder()
    .taskParams(WorkflowTaskTriggerWorkflowTaskParamsArgs.builder()
        .attributeToQueryBy("string")
        .kind("string")
        .resource(Map.of("string", "any"))
        .workflow(Map.of("string", "any"))
        .checkWorkflowConditions(false)
        .taskType("string")
        .build())
    .workflowId("string")
    .enabled(false)
    .name("string")
    .position(0)
    .skipOnFailure(false)
    .build());
workflow_task_trigger_workflow_resource = rootly.WorkflowTaskTriggerWorkflow("workflowTaskTriggerWorkflowResource",
    task_params={
        "attribute_to_query_by": "string",
        "kind": "string",
        "resource": {
            "string": "any",
        },
        "workflow": {
            "string": "any",
        },
        "check_workflow_conditions": False,
        "task_type": "string",
    },
    workflow_id="string",
    enabled=False,
    name="string",
    position=0,
    skip_on_failure=False)
const workflowTaskTriggerWorkflowResource = new rootly.WorkflowTaskTriggerWorkflow("workflowTaskTriggerWorkflowResource", {
    taskParams: {
        attributeToQueryBy: "string",
        kind: "string",
        resource: {
            string: "any",
        },
        workflow: {
            string: "any",
        },
        checkWorkflowConditions: false,
        taskType: "string",
    },
    workflowId: "string",
    enabled: false,
    name: "string",
    position: 0,
    skipOnFailure: false,
});
type: rootly:WorkflowTaskTriggerWorkflow
properties:
    enabled: false
    name: string
    position: 0
    skipOnFailure: false
    taskParams:
        attributeToQueryBy: string
        checkWorkflowConditions: false
        kind: string
        resource:
            string: any
        taskType: string
        workflow:
            string: any
    workflowId: string
WorkflowTaskTriggerWorkflow 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 WorkflowTaskTriggerWorkflow resource accepts the following input properties:
- TaskParams WorkflowTask Trigger Workflow Task Params 
- 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)
- SkipOn boolFailure 
- Skip workflow task if any failures
- TaskParams WorkflowTask Trigger Workflow Task Params Args 
- 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)
- SkipOn boolFailure 
- Skip workflow task if any failures
- taskParams WorkflowTask Trigger Workflow Task Params 
- 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)
- skipOn BooleanFailure 
- Skip workflow task if any failures
- taskParams WorkflowTask Trigger Workflow Task Params 
- 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)
- skipOn booleanFailure 
- Skip workflow task if any failures
- task_params WorkflowTask Trigger Workflow Task Params Args 
- 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_ boolfailure 
- 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)
- skipOn BooleanFailure 
- Skip workflow task if any failures
Outputs
All input properties are implicitly available as output properties. Additionally, the WorkflowTaskTriggerWorkflow 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 WorkflowTaskTriggerWorkflow Resource
Get an existing WorkflowTaskTriggerWorkflow 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?: WorkflowTaskTriggerWorkflowState, opts?: CustomResourceOptions): WorkflowTaskTriggerWorkflow@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[WorkflowTaskTriggerWorkflowTaskParamsArgs] = None,
        workflow_id: Optional[str] = None) -> WorkflowTaskTriggerWorkflowfunc GetWorkflowTaskTriggerWorkflow(ctx *Context, name string, id IDInput, state *WorkflowTaskTriggerWorkflowState, opts ...ResourceOption) (*WorkflowTaskTriggerWorkflow, error)public static WorkflowTaskTriggerWorkflow Get(string name, Input<string> id, WorkflowTaskTriggerWorkflowState? state, CustomResourceOptions? opts = null)public static WorkflowTaskTriggerWorkflow get(String name, Output<String> id, WorkflowTaskTriggerWorkflowState state, CustomResourceOptions options)resources:  _:    type: rootly:WorkflowTaskTriggerWorkflow    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.
- 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)
- SkipOn boolFailure 
- Skip workflow task if any failures
- TaskParams WorkflowTask Trigger Workflow Task Params 
- 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)
- SkipOn boolFailure 
- Skip workflow task if any failures
- TaskParams WorkflowTask Trigger Workflow Task Params Args 
- 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)
- skipOn BooleanFailure 
- Skip workflow task if any failures
- taskParams WorkflowTask Trigger Workflow Task Params 
- 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)
- skipOn booleanFailure 
- Skip workflow task if any failures
- taskParams WorkflowTask Trigger Workflow Task Params 
- 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_ boolfailure 
- Skip workflow task if any failures
- task_params WorkflowTask Trigger Workflow Task Params Args 
- 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)
- skipOn BooleanFailure 
- 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
WorkflowTaskTriggerWorkflowTaskParams, WorkflowTaskTriggerWorkflowTaskParamsArgs            
- AttributeTo stringQuery By 
- ["(incident) kind can only match [:id, :slug, :sequentialid, :pagerdutyincidentid, :opsgenieincidentid, :victoropsincidentid, :jiraissueid, :asanataskid, :shortcuttaskid, :linearissueid, :zendeskticketid, :trellocardid, :airtablerecordid, :shortcutstoryid, :githubissueid, :freshserviceticketid, :freshservicetaskid, :clickuptaskid]", "(postmortem) kind can only match [:id]", "(actionitem) kind can only match [:id, :jiraissueid, :asanataskid, :shortcuttaskid, :linearissueid, :zendeskticketid, :trellocardid, :airtablerecordid, :shortcutstoryid, :githubissueid, :freshserviceticketid, :freshservicetaskid, :clickuptaskid]", "(pulse) kind can only match [:id]", "(alert) kind can only match [:id]"]. Value must be one of id,slug,sequential_id,pagerduty_incident_id,opsgenie_incident_id,victor_ops_incident_id,jira_issue_id,asana_task_id,shortcut_task_id,linear_issue_id,zendesk_ticket_id,trello_card_id,airtable_record_id,shortcut_story_id,github_issue_id,freshservice_ticket_id,freshservice_task_id,clickup_task_id.
- Kind string
- Value must be one of incident,post_mortem,action_item,pulse,alert.
- Resource Dictionary<string, object>
- Map must contain two fields, idandname.
- Workflow Dictionary<string, object>
- Map must contain two fields, idandname.
- CheckWorkflow boolConditions 
- Value must be one of true or false
- TaskType string
- AttributeTo stringQuery By 
- ["(incident) kind can only match [:id, :slug, :sequentialid, :pagerdutyincidentid, :opsgenieincidentid, :victoropsincidentid, :jiraissueid, :asanataskid, :shortcuttaskid, :linearissueid, :zendeskticketid, :trellocardid, :airtablerecordid, :shortcutstoryid, :githubissueid, :freshserviceticketid, :freshservicetaskid, :clickuptaskid]", "(postmortem) kind can only match [:id]", "(actionitem) kind can only match [:id, :jiraissueid, :asanataskid, :shortcuttaskid, :linearissueid, :zendeskticketid, :trellocardid, :airtablerecordid, :shortcutstoryid, :githubissueid, :freshserviceticketid, :freshservicetaskid, :clickuptaskid]", "(pulse) kind can only match [:id]", "(alert) kind can only match [:id]"]. Value must be one of id,slug,sequential_id,pagerduty_incident_id,opsgenie_incident_id,victor_ops_incident_id,jira_issue_id,asana_task_id,shortcut_task_id,linear_issue_id,zendesk_ticket_id,trello_card_id,airtable_record_id,shortcut_story_id,github_issue_id,freshservice_ticket_id,freshservice_task_id,clickup_task_id.
- Kind string
- Value must be one of incident,post_mortem,action_item,pulse,alert.
- Resource map[string]interface{}
- Map must contain two fields, idandname.
- Workflow map[string]interface{}
- Map must contain two fields, idandname.
- CheckWorkflow boolConditions 
- Value must be one of true or false
- TaskType string
- attributeTo StringQuery By 
- ["(incident) kind can only match [:id, :slug, :sequentialid, :pagerdutyincidentid, :opsgenieincidentid, :victoropsincidentid, :jiraissueid, :asanataskid, :shortcuttaskid, :linearissueid, :zendeskticketid, :trellocardid, :airtablerecordid, :shortcutstoryid, :githubissueid, :freshserviceticketid, :freshservicetaskid, :clickuptaskid]", "(postmortem) kind can only match [:id]", "(actionitem) kind can only match [:id, :jiraissueid, :asanataskid, :shortcuttaskid, :linearissueid, :zendeskticketid, :trellocardid, :airtablerecordid, :shortcutstoryid, :githubissueid, :freshserviceticketid, :freshservicetaskid, :clickuptaskid]", "(pulse) kind can only match [:id]", "(alert) kind can only match [:id]"]. Value must be one of id,slug,sequential_id,pagerduty_incident_id,opsgenie_incident_id,victor_ops_incident_id,jira_issue_id,asana_task_id,shortcut_task_id,linear_issue_id,zendesk_ticket_id,trello_card_id,airtable_record_id,shortcut_story_id,github_issue_id,freshservice_ticket_id,freshservice_task_id,clickup_task_id.
- kind String
- Value must be one of incident,post_mortem,action_item,pulse,alert.
- resource Map<String,Object>
- Map must contain two fields, idandname.
- workflow Map<String,Object>
- Map must contain two fields, idandname.
- checkWorkflow BooleanConditions 
- Value must be one of true or false
- taskType String
- attributeTo stringQuery By 
- ["(incident) kind can only match [:id, :slug, :sequentialid, :pagerdutyincidentid, :opsgenieincidentid, :victoropsincidentid, :jiraissueid, :asanataskid, :shortcuttaskid, :linearissueid, :zendeskticketid, :trellocardid, :airtablerecordid, :shortcutstoryid, :githubissueid, :freshserviceticketid, :freshservicetaskid, :clickuptaskid]", "(postmortem) kind can only match [:id]", "(actionitem) kind can only match [:id, :jiraissueid, :asanataskid, :shortcuttaskid, :linearissueid, :zendeskticketid, :trellocardid, :airtablerecordid, :shortcutstoryid, :githubissueid, :freshserviceticketid, :freshservicetaskid, :clickuptaskid]", "(pulse) kind can only match [:id]", "(alert) kind can only match [:id]"]. Value must be one of id,slug,sequential_id,pagerduty_incident_id,opsgenie_incident_id,victor_ops_incident_id,jira_issue_id,asana_task_id,shortcut_task_id,linear_issue_id,zendesk_ticket_id,trello_card_id,airtable_record_id,shortcut_story_id,github_issue_id,freshservice_ticket_id,freshservice_task_id,clickup_task_id.
- kind string
- Value must be one of incident,post_mortem,action_item,pulse,alert.
- resource {[key: string]: any}
- Map must contain two fields, idandname.
- workflow {[key: string]: any}
- Map must contain two fields, idandname.
- checkWorkflow booleanConditions 
- Value must be one of true or false
- taskType string
- attribute_to_ strquery_ by 
- ["(incident) kind can only match [:id, :slug, :sequentialid, :pagerdutyincidentid, :opsgenieincidentid, :victoropsincidentid, :jiraissueid, :asanataskid, :shortcuttaskid, :linearissueid, :zendeskticketid, :trellocardid, :airtablerecordid, :shortcutstoryid, :githubissueid, :freshserviceticketid, :freshservicetaskid, :clickuptaskid]", "(postmortem) kind can only match [:id]", "(actionitem) kind can only match [:id, :jiraissueid, :asanataskid, :shortcuttaskid, :linearissueid, :zendeskticketid, :trellocardid, :airtablerecordid, :shortcutstoryid, :githubissueid, :freshserviceticketid, :freshservicetaskid, :clickuptaskid]", "(pulse) kind can only match [:id]", "(alert) kind can only match [:id]"]. Value must be one of id,slug,sequential_id,pagerduty_incident_id,opsgenie_incident_id,victor_ops_incident_id,jira_issue_id,asana_task_id,shortcut_task_id,linear_issue_id,zendesk_ticket_id,trello_card_id,airtable_record_id,shortcut_story_id,github_issue_id,freshservice_ticket_id,freshservice_task_id,clickup_task_id.
- kind str
- Value must be one of incident,post_mortem,action_item,pulse,alert.
- resource Mapping[str, Any]
- Map must contain two fields, idandname.
- workflow Mapping[str, Any]
- Map must contain two fields, idandname.
- check_workflow_ boolconditions 
- Value must be one of true or false
- task_type str
- attributeTo StringQuery By 
- ["(incident) kind can only match [:id, :slug, :sequentialid, :pagerdutyincidentid, :opsgenieincidentid, :victoropsincidentid, :jiraissueid, :asanataskid, :shortcuttaskid, :linearissueid, :zendeskticketid, :trellocardid, :airtablerecordid, :shortcutstoryid, :githubissueid, :freshserviceticketid, :freshservicetaskid, :clickuptaskid]", "(postmortem) kind can only match [:id]", "(actionitem) kind can only match [:id, :jiraissueid, :asanataskid, :shortcuttaskid, :linearissueid, :zendeskticketid, :trellocardid, :airtablerecordid, :shortcutstoryid, :githubissueid, :freshserviceticketid, :freshservicetaskid, :clickuptaskid]", "(pulse) kind can only match [:id]", "(alert) kind can only match [:id]"]. Value must be one of id,slug,sequential_id,pagerduty_incident_id,opsgenie_incident_id,victor_ops_incident_id,jira_issue_id,asana_task_id,shortcut_task_id,linear_issue_id,zendesk_ticket_id,trello_card_id,airtable_record_id,shortcut_story_id,github_issue_id,freshservice_ticket_id,freshservice_task_id,clickup_task_id.
- kind String
- Value must be one of incident,post_mortem,action_item,pulse,alert.
- resource Map<Any>
- Map must contain two fields, idandname.
- workflow Map<Any>
- Map must contain two fields, idandname.
- checkWorkflow BooleanConditions 
- Value must be one of true or false
- taskType String
Package Details
- Repository
- rootly rootlyhq/pulumi-rootly
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the rootlyTerraform Provider.