rootly.WorkflowTaskSendSms
Explore with Pulumi AI
Manages workflow send_sms task.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Rootly = Pulumi.Rootly;
return await Deployment.RunAsync(() =>
{
var sendSmsWorkflowIncident = new Rootly.WorkflowIncident("sendSmsWorkflowIncident", new()
{
Description = "Automatically send SMS to a specific teammate.",
TriggerParams = new Rootly.Inputs.WorkflowIncidentTriggerParamsArgs
{
Triggers = new[]
{
"incident_created",
},
IncidentStatuses = new[]
{
"started",
},
IncidentConditionStatus = "IS",
},
Enabled = true,
});
var sendSmsWorkflowTaskSendSms = new Rootly.WorkflowTaskSendSms("sendSmsWorkflowTaskSendSms", new()
{
WorkflowId = sendSmsWorkflowIncident.Id,
SkipOnFailure = false,
Enabled = true,
TaskParams = new Rootly.Inputs.WorkflowTaskSendSmsTaskParamsArgs
{
Name = "Send SMS",
Content = "We have an ongoing incident {{ incident.title }} of severity {{ incident.severity }} and your assistance is required.",
PhoneNumbers = new[]
{
"+11231231231",
"+11231231232",
},
},
});
});
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 {
sendSmsWorkflowIncident, err := rootly.NewWorkflowIncident(ctx, "sendSmsWorkflowIncident", &rootly.WorkflowIncidentArgs{
Description: pulumi.String("Automatically send SMS to a specific teammate."),
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.NewWorkflowTaskSendSms(ctx, "sendSmsWorkflowTaskSendSms", &rootly.WorkflowTaskSendSmsArgs{
WorkflowId: sendSmsWorkflowIncident.ID(),
SkipOnFailure: pulumi.Bool(false),
Enabled: pulumi.Bool(true),
TaskParams: &rootly.WorkflowTaskSendSmsTaskParamsArgs{
Name: pulumi.String("Send SMS"),
Content: pulumi.String("We have an ongoing incident {{ incident.title }} of severity {{ incident.severity }} and your assistance is required."),
PhoneNumbers: pulumi.StringArray{
pulumi.String("+11231231231"),
pulumi.String("+11231231232"),
},
},
})
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.WorkflowTaskSendSms;
import com.pulumi.rootly.WorkflowTaskSendSmsArgs;
import com.pulumi.rootly.inputs.WorkflowTaskSendSmsTaskParamsArgs;
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 sendSmsWorkflowIncident = new WorkflowIncident("sendSmsWorkflowIncident", WorkflowIncidentArgs.builder()
.description("Automatically send SMS to a specific teammate.")
.triggerParams(WorkflowIncidentTriggerParamsArgs.builder()
.triggers("incident_created")
.incidentStatuses("started")
.incidentConditionStatus("IS")
.build())
.enabled(true)
.build());
var sendSmsWorkflowTaskSendSms = new WorkflowTaskSendSms("sendSmsWorkflowTaskSendSms", WorkflowTaskSendSmsArgs.builder()
.workflowId(sendSmsWorkflowIncident.id())
.skipOnFailure(false)
.enabled(true)
.taskParams(WorkflowTaskSendSmsTaskParamsArgs.builder()
.name("Send SMS")
.content("We have an ongoing incident {{ incident.title }} of severity {{ incident.severity }} and your assistance is required.")
.phoneNumbers(
"+11231231231",
"+11231231232")
.build())
.build());
}
}
import pulumi
import pulumi_rootly as rootly
send_sms_workflow_incident = rootly.WorkflowIncident("sendSmsWorkflowIncident",
description="Automatically send SMS to a specific teammate.",
trigger_params=rootly.WorkflowIncidentTriggerParamsArgs(
triggers=["incident_created"],
incident_statuses=["started"],
incident_condition_status="IS",
),
enabled=True)
send_sms_workflow_task_send_sms = rootly.WorkflowTaskSendSms("sendSmsWorkflowTaskSendSms",
workflow_id=send_sms_workflow_incident.id,
skip_on_failure=False,
enabled=True,
task_params=rootly.WorkflowTaskSendSmsTaskParamsArgs(
name="Send SMS",
content="We have an ongoing incident {{ incident.title }} of severity {{ incident.severity }} and your assistance is required.",
phone_numbers=[
"+11231231231",
"+11231231232",
],
))
import * as pulumi from "@pulumi/pulumi";
import * as rootly from "@pulumi/rootly";
const sendSmsWorkflowIncident = new rootly.WorkflowIncident("sendSmsWorkflowIncident", {
description: "Automatically send SMS to a specific teammate.",
triggerParams: {
triggers: ["incident_created"],
incidentStatuses: ["started"],
incidentConditionStatus: "IS",
},
enabled: true,
});
const sendSmsWorkflowTaskSendSms = new rootly.WorkflowTaskSendSms("sendSmsWorkflowTaskSendSms", {
workflowId: sendSmsWorkflowIncident.id,
skipOnFailure: false,
enabled: true,
taskParams: {
name: "Send SMS",
content: "We have an ongoing incident {{ incident.title }} of severity {{ incident.severity }} and your assistance is required.",
phoneNumbers: [
"+11231231231",
"+11231231232",
],
},
});
resources:
sendSmsWorkflowIncident:
type: rootly:WorkflowIncident
properties:
description: Automatically send SMS to a specific teammate.
triggerParams:
triggers:
- incident_created
incidentStatuses:
- started
incidentConditionStatus: IS
enabled: true
sendSmsWorkflowTaskSendSms:
type: rootly:WorkflowTaskSendSms
properties:
workflowId: ${sendSmsWorkflowIncident.id}
skipOnFailure: false
enabled: true
taskParams:
name: Send SMS
content: We have an ongoing incident {{ incident.title }} of severity {{ incident.severity }} and your assistance is required.
phoneNumbers:
- '+11231231231'
- '+11231231232'
Create WorkflowTaskSendSms Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WorkflowTaskSendSms(name: string, args: WorkflowTaskSendSmsArgs, opts?: CustomResourceOptions);
@overload
def WorkflowTaskSendSms(resource_name: str,
args: WorkflowTaskSendSmsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def WorkflowTaskSendSms(resource_name: str,
opts: Optional[ResourceOptions] = None,
task_params: Optional[WorkflowTaskSendSmsTaskParamsArgs] = 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 NewWorkflowTaskSendSms(ctx *Context, name string, args WorkflowTaskSendSmsArgs, opts ...ResourceOption) (*WorkflowTaskSendSms, error)
public WorkflowTaskSendSms(string name, WorkflowTaskSendSmsArgs args, CustomResourceOptions? opts = null)
public WorkflowTaskSendSms(String name, WorkflowTaskSendSmsArgs args)
public WorkflowTaskSendSms(String name, WorkflowTaskSendSmsArgs args, CustomResourceOptions options)
type: rootly:WorkflowTaskSendSms
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 WorkflowTaskSendSmsArgs
- 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 WorkflowTaskSendSmsArgs
- 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 WorkflowTaskSendSmsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkflowTaskSendSmsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkflowTaskSendSmsArgs
- 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 workflowTaskSendSmsResource = new Rootly.WorkflowTaskSendSms("workflowTaskSendSmsResource", new()
{
TaskParams = new Rootly.Inputs.WorkflowTaskSendSmsTaskParamsArgs
{
Content = "string",
Name = "string",
PhoneNumbers = new[]
{
"string",
},
TaskType = "string",
},
WorkflowId = "string",
Enabled = false,
Name = "string",
Position = 0,
SkipOnFailure = false,
});
example, err := rootly.NewWorkflowTaskSendSms(ctx, "workflowTaskSendSmsResource", &rootly.WorkflowTaskSendSmsArgs{
TaskParams: &rootly.WorkflowTaskSendSmsTaskParamsArgs{
Content: pulumi.String("string"),
Name: pulumi.String("string"),
PhoneNumbers: pulumi.StringArray{
pulumi.String("string"),
},
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 workflowTaskSendSmsResource = new WorkflowTaskSendSms("workflowTaskSendSmsResource", WorkflowTaskSendSmsArgs.builder()
.taskParams(WorkflowTaskSendSmsTaskParamsArgs.builder()
.content("string")
.name("string")
.phoneNumbers("string")
.taskType("string")
.build())
.workflowId("string")
.enabled(false)
.name("string")
.position(0)
.skipOnFailure(false)
.build());
workflow_task_send_sms_resource = rootly.WorkflowTaskSendSms("workflowTaskSendSmsResource",
task_params={
"content": "string",
"name": "string",
"phone_numbers": ["string"],
"task_type": "string",
},
workflow_id="string",
enabled=False,
name="string",
position=0,
skip_on_failure=False)
const workflowTaskSendSmsResource = new rootly.WorkflowTaskSendSms("workflowTaskSendSmsResource", {
taskParams: {
content: "string",
name: "string",
phoneNumbers: ["string"],
taskType: "string",
},
workflowId: "string",
enabled: false,
name: "string",
position: 0,
skipOnFailure: false,
});
type: rootly:WorkflowTaskSendSms
properties:
enabled: false
name: string
position: 0
skipOnFailure: false
taskParams:
content: string
name: string
phoneNumbers:
- string
taskType: string
workflowId: string
WorkflowTaskSendSms 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 WorkflowTaskSendSms resource accepts the following input properties:
- Task
Params WorkflowTask Send Sms Task Params - The parameters for this workflow task.
- Workflow
Id string - The ID of the parent workflow
- Enabled bool
- Enable/disable this workflow task
- Name string
- The name
- 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 Send Sms Task Params Args - The parameters for this workflow task.
- Workflow
Id string - The ID of the parent workflow
- Enabled bool
- Enable/disable this workflow task
- Name string
- The name
- 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 Send Sms Task Params - The parameters for this workflow task.
- workflow
Id String - The ID of the parent workflow
- enabled Boolean
- Enable/disable this workflow task
- name String
- The name
- position Integer
- The position of the workflow task (1 being top of list)
- skip
On BooleanFailure - Skip workflow task if any failures
- task
Params WorkflowTask Send Sms Task Params - The parameters for this workflow task.
- workflow
Id string - The ID of the parent workflow
- enabled boolean
- Enable/disable this workflow task
- name string
- The name
- position number
- The position of the workflow task (1 being top of list)
- skip
On booleanFailure - Skip workflow task if any failures
- task_
params WorkflowTask Send Sms 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
- The name
- position int
- The position of the workflow task (1 being top of list)
- skip_
on_ boolfailure - Skip workflow task if any failures
- task
Params Property Map - The parameters for this workflow task.
- workflow
Id String - The ID of the parent workflow
- enabled Boolean
- Enable/disable this workflow task
- name String
- The name
- position Number
- The position of the workflow task (1 being top of list)
- skip
On BooleanFailure - Skip workflow task if any failures
Outputs
All input properties are implicitly available as output properties. Additionally, the WorkflowTaskSendSms 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 WorkflowTaskSendSms Resource
Get an existing WorkflowTaskSendSms 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?: WorkflowTaskSendSmsState, opts?: CustomResourceOptions): WorkflowTaskSendSms
@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[WorkflowTaskSendSmsTaskParamsArgs] = None,
workflow_id: Optional[str] = None) -> WorkflowTaskSendSms
func GetWorkflowTaskSendSms(ctx *Context, name string, id IDInput, state *WorkflowTaskSendSmsState, opts ...ResourceOption) (*WorkflowTaskSendSms, error)
public static WorkflowTaskSendSms Get(string name, Input<string> id, WorkflowTaskSendSmsState? state, CustomResourceOptions? opts = null)
public static WorkflowTaskSendSms get(String name, Output<String> id, WorkflowTaskSendSmsState 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.
- Enabled bool
- Enable/disable this workflow task
- Name string
- The name
- 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 Send Sms Task Params - The parameters for this workflow task.
- Workflow
Id string - The ID of the parent workflow
- Enabled bool
- Enable/disable this workflow task
- Name string
- The name
- 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 Send Sms Task Params Args - The parameters for this workflow task.
- Workflow
Id string - The ID of the parent workflow
- enabled Boolean
- Enable/disable this workflow task
- name String
- The name
- position Integer
- The position of the workflow task (1 being top of list)
- skip
On BooleanFailure - Skip workflow task if any failures
- task
Params WorkflowTask Send Sms Task Params - The parameters for this workflow task.
- workflow
Id String - The ID of the parent workflow
- enabled boolean
- Enable/disable this workflow task
- name string
- The name
- position number
- The position of the workflow task (1 being top of list)
- skip
On booleanFailure - Skip workflow task if any failures
- task
Params WorkflowTask Send Sms Task Params - The parameters for this workflow task.
- workflow
Id string - The ID of the parent workflow
- enabled bool
- Enable/disable this workflow task
- name str
- The name
- 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 Send Sms 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
- The name
- position Number
- The position of the workflow task (1 being top of list)
- skip
On BooleanFailure - Skip workflow task if any failures
- task
Params Property Map - The parameters for this workflow task.
- workflow
Id String - The ID of the parent workflow
Supporting Types
WorkflowTaskSendSmsTaskParams, WorkflowTaskSendSmsTaskParamsArgs
- Content string
- The SMS message
- Name string
- The name
- Phone
Numbers List<string> - Task
Type string
- Content string
- The SMS message
- Name string
- The name
- Phone
Numbers []string - Task
Type string
- content String
- The SMS message
- name String
- The name
- phone
Numbers List<String> - task
Type String
- content string
- The SMS message
- name string
- The name
- phone
Numbers string[] - task
Type string
- content str
- The SMS message
- name str
- The name
- phone_
numbers Sequence[str] - task_
type str
- content String
- The SMS message
- name String
- The name
- phone
Numbers List<String> - task
Type String
Package Details
- Repository
- rootly rootlyhq/pulumi-rootly
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
rootly
Terraform Provider.