1. Packages
  2. Rootly
  3. API Docs
  4. WorkflowPostMortem
Rootly v1.5.0 published on Thursday, Apr 25, 2024 by Rootly

rootly.WorkflowPostMortem

Explore with Pulumi AI

Create WorkflowPostMortem Resource

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

Constructor syntax

new WorkflowPostMortem(name: string, args?: WorkflowPostMortemArgs, opts?: CustomResourceOptions);
@overload
def WorkflowPostMortem(resource_name: str,
                       args: Optional[WorkflowPostMortemArgs] = None,
                       opts: Optional[ResourceOptions] = None)

@overload
def WorkflowPostMortem(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       cause_ids: Optional[Sequence[str]] = None,
                       command: Optional[str] = None,
                       command_feedback_enabled: Optional[bool] = None,
                       description: Optional[str] = None,
                       enabled: Optional[bool] = None,
                       environment_ids: Optional[Sequence[str]] = None,
                       functionality_ids: Optional[Sequence[str]] = None,
                       group_ids: Optional[Sequence[str]] = None,
                       incident_role_ids: Optional[Sequence[str]] = None,
                       incident_type_ids: Optional[Sequence[str]] = None,
                       name: Optional[str] = None,
                       position: Optional[int] = None,
                       repeat_every_duration: Optional[str] = None,
                       repeat_ons: Optional[Sequence[str]] = None,
                       service_ids: Optional[Sequence[str]] = None,
                       severity_ids: Optional[Sequence[str]] = None,
                       slug: Optional[str] = None,
                       trigger_params: Optional[WorkflowPostMortemTriggerParamsArgs] = None,
                       wait: Optional[str] = None,
                       workflow_group_id: Optional[str] = None)
func NewWorkflowPostMortem(ctx *Context, name string, args *WorkflowPostMortemArgs, opts ...ResourceOption) (*WorkflowPostMortem, error)
public WorkflowPostMortem(string name, WorkflowPostMortemArgs? args = null, CustomResourceOptions? opts = null)
public WorkflowPostMortem(String name, WorkflowPostMortemArgs args)
public WorkflowPostMortem(String name, WorkflowPostMortemArgs args, CustomResourceOptions options)
type: rootly:WorkflowPostMortem
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args WorkflowPostMortemArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args WorkflowPostMortemArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args WorkflowPostMortemArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args WorkflowPostMortemArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. WorkflowPostMortemArgs
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 workflowPostMortemResource = new Rootly.WorkflowPostMortem("workflowPostMortemResource", new()
{
    CauseIds = new[]
    {
        "string",
    },
    Command = "string",
    CommandFeedbackEnabled = false,
    Description = "string",
    Enabled = false,
    EnvironmentIds = new[]
    {
        "string",
    },
    FunctionalityIds = new[]
    {
        "string",
    },
    GroupIds = new[]
    {
        "string",
    },
    IncidentRoleIds = new[]
    {
        "string",
    },
    IncidentTypeIds = new[]
    {
        "string",
    },
    Name = "string",
    Position = 0,
    RepeatEveryDuration = "string",
    RepeatOns = new[]
    {
        "string",
    },
    ServiceIds = new[]
    {
        "string",
    },
    SeverityIds = new[]
    {
        "string",
    },
    Slug = "string",
    TriggerParams = new Rootly.Inputs.WorkflowPostMortemTriggerParamsArgs
    {
        IncidentCondition = "string",
        IncidentConditionAcknowledgedAt = "string",
        IncidentConditionCause = "string",
        IncidentConditionDetectedAt = "string",
        IncidentConditionEnvironment = "string",
        IncidentConditionFunctionality = "string",
        IncidentConditionGroup = "string",
        IncidentConditionIncidentRoles = "string",
        IncidentConditionIncidentType = "string",
        IncidentConditionKind = "string",
        IncidentConditionMitigatedAt = "string",
        IncidentConditionResolvedAt = "string",
        IncidentConditionService = "string",
        IncidentConditionSeverity = "string",
        IncidentConditionStartedAt = "string",
        IncidentConditionStatus = "string",
        IncidentConditionSummary = "string",
        IncidentConditionVisibility = "string",
        IncidentConditionalInactivity = "string",
        IncidentInactivityDuration = "string",
        IncidentKinds = new[]
        {
            "string",
        },
        IncidentPostMortemCondition = "string",
        IncidentPostMortemConditionCause = "string",
        IncidentPostMortemConditionStatus = "string",
        IncidentPostMortemStatuses = new[]
        {
            "string",
        },
        IncidentStatuses = new[]
        {
            "string",
        },
        IncidentVisibilities = new[]
        {
            "string",
        },
        TriggerType = "string",
        Triggers = new[]
        {
            "string",
        },
    },
    Wait = "string",
    WorkflowGroupId = "string",
});
Copy
example, err := rootly.NewWorkflowPostMortem(ctx, "workflowPostMortemResource", &rootly.WorkflowPostMortemArgs{
	CauseIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	Command:                pulumi.String("string"),
	CommandFeedbackEnabled: pulumi.Bool(false),
	Description:            pulumi.String("string"),
	Enabled:                pulumi.Bool(false),
	EnvironmentIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	FunctionalityIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	GroupIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	IncidentRoleIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	IncidentTypeIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	Name:                pulumi.String("string"),
	Position:            pulumi.Int(0),
	RepeatEveryDuration: pulumi.String("string"),
	RepeatOns: pulumi.StringArray{
		pulumi.String("string"),
	},
	ServiceIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	SeverityIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	Slug: pulumi.String("string"),
	TriggerParams: &rootly.WorkflowPostMortemTriggerParamsArgs{
		IncidentCondition:               pulumi.String("string"),
		IncidentConditionAcknowledgedAt: pulumi.String("string"),
		IncidentConditionCause:          pulumi.String("string"),
		IncidentConditionDetectedAt:     pulumi.String("string"),
		IncidentConditionEnvironment:    pulumi.String("string"),
		IncidentConditionFunctionality:  pulumi.String("string"),
		IncidentConditionGroup:          pulumi.String("string"),
		IncidentConditionIncidentRoles:  pulumi.String("string"),
		IncidentConditionIncidentType:   pulumi.String("string"),
		IncidentConditionKind:           pulumi.String("string"),
		IncidentConditionMitigatedAt:    pulumi.String("string"),
		IncidentConditionResolvedAt:     pulumi.String("string"),
		IncidentConditionService:        pulumi.String("string"),
		IncidentConditionSeverity:       pulumi.String("string"),
		IncidentConditionStartedAt:      pulumi.String("string"),
		IncidentConditionStatus:         pulumi.String("string"),
		IncidentConditionSummary:        pulumi.String("string"),
		IncidentConditionVisibility:     pulumi.String("string"),
		IncidentConditionalInactivity:   pulumi.String("string"),
		IncidentInactivityDuration:      pulumi.String("string"),
		IncidentKinds: pulumi.StringArray{
			pulumi.String("string"),
		},
		IncidentPostMortemCondition:       pulumi.String("string"),
		IncidentPostMortemConditionCause:  pulumi.String("string"),
		IncidentPostMortemConditionStatus: pulumi.String("string"),
		IncidentPostMortemStatuses: pulumi.StringArray{
			pulumi.String("string"),
		},
		IncidentStatuses: pulumi.StringArray{
			pulumi.String("string"),
		},
		IncidentVisibilities: pulumi.StringArray{
			pulumi.String("string"),
		},
		TriggerType: pulumi.String("string"),
		Triggers: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	Wait:            pulumi.String("string"),
	WorkflowGroupId: pulumi.String("string"),
})
Copy
var workflowPostMortemResource = new WorkflowPostMortem("workflowPostMortemResource", WorkflowPostMortemArgs.builder()
    .causeIds("string")
    .command("string")
    .commandFeedbackEnabled(false)
    .description("string")
    .enabled(false)
    .environmentIds("string")
    .functionalityIds("string")
    .groupIds("string")
    .incidentRoleIds("string")
    .incidentTypeIds("string")
    .name("string")
    .position(0)
    .repeatEveryDuration("string")
    .repeatOns("string")
    .serviceIds("string")
    .severityIds("string")
    .slug("string")
    .triggerParams(WorkflowPostMortemTriggerParamsArgs.builder()
        .incidentCondition("string")
        .incidentConditionAcknowledgedAt("string")
        .incidentConditionCause("string")
        .incidentConditionDetectedAt("string")
        .incidentConditionEnvironment("string")
        .incidentConditionFunctionality("string")
        .incidentConditionGroup("string")
        .incidentConditionIncidentRoles("string")
        .incidentConditionIncidentType("string")
        .incidentConditionKind("string")
        .incidentConditionMitigatedAt("string")
        .incidentConditionResolvedAt("string")
        .incidentConditionService("string")
        .incidentConditionSeverity("string")
        .incidentConditionStartedAt("string")
        .incidentConditionStatus("string")
        .incidentConditionSummary("string")
        .incidentConditionVisibility("string")
        .incidentConditionalInactivity("string")
        .incidentInactivityDuration("string")
        .incidentKinds("string")
        .incidentPostMortemCondition("string")
        .incidentPostMortemConditionCause("string")
        .incidentPostMortemConditionStatus("string")
        .incidentPostMortemStatuses("string")
        .incidentStatuses("string")
        .incidentVisibilities("string")
        .triggerType("string")
        .triggers("string")
        .build())
    .wait("string")
    .workflowGroupId("string")
    .build());
Copy
workflow_post_mortem_resource = rootly.WorkflowPostMortem("workflowPostMortemResource",
    cause_ids=["string"],
    command="string",
    command_feedback_enabled=False,
    description="string",
    enabled=False,
    environment_ids=["string"],
    functionality_ids=["string"],
    group_ids=["string"],
    incident_role_ids=["string"],
    incident_type_ids=["string"],
    name="string",
    position=0,
    repeat_every_duration="string",
    repeat_ons=["string"],
    service_ids=["string"],
    severity_ids=["string"],
    slug="string",
    trigger_params={
        "incident_condition": "string",
        "incident_condition_acknowledged_at": "string",
        "incident_condition_cause": "string",
        "incident_condition_detected_at": "string",
        "incident_condition_environment": "string",
        "incident_condition_functionality": "string",
        "incident_condition_group": "string",
        "incident_condition_incident_roles": "string",
        "incident_condition_incident_type": "string",
        "incident_condition_kind": "string",
        "incident_condition_mitigated_at": "string",
        "incident_condition_resolved_at": "string",
        "incident_condition_service": "string",
        "incident_condition_severity": "string",
        "incident_condition_started_at": "string",
        "incident_condition_status": "string",
        "incident_condition_summary": "string",
        "incident_condition_visibility": "string",
        "incident_conditional_inactivity": "string",
        "incident_inactivity_duration": "string",
        "incident_kinds": ["string"],
        "incident_post_mortem_condition": "string",
        "incident_post_mortem_condition_cause": "string",
        "incident_post_mortem_condition_status": "string",
        "incident_post_mortem_statuses": ["string"],
        "incident_statuses": ["string"],
        "incident_visibilities": ["string"],
        "trigger_type": "string",
        "triggers": ["string"],
    },
    wait="string",
    workflow_group_id="string")
Copy
const workflowPostMortemResource = new rootly.WorkflowPostMortem("workflowPostMortemResource", {
    causeIds: ["string"],
    command: "string",
    commandFeedbackEnabled: false,
    description: "string",
    enabled: false,
    environmentIds: ["string"],
    functionalityIds: ["string"],
    groupIds: ["string"],
    incidentRoleIds: ["string"],
    incidentTypeIds: ["string"],
    name: "string",
    position: 0,
    repeatEveryDuration: "string",
    repeatOns: ["string"],
    serviceIds: ["string"],
    severityIds: ["string"],
    slug: "string",
    triggerParams: {
        incidentCondition: "string",
        incidentConditionAcknowledgedAt: "string",
        incidentConditionCause: "string",
        incidentConditionDetectedAt: "string",
        incidentConditionEnvironment: "string",
        incidentConditionFunctionality: "string",
        incidentConditionGroup: "string",
        incidentConditionIncidentRoles: "string",
        incidentConditionIncidentType: "string",
        incidentConditionKind: "string",
        incidentConditionMitigatedAt: "string",
        incidentConditionResolvedAt: "string",
        incidentConditionService: "string",
        incidentConditionSeverity: "string",
        incidentConditionStartedAt: "string",
        incidentConditionStatus: "string",
        incidentConditionSummary: "string",
        incidentConditionVisibility: "string",
        incidentConditionalInactivity: "string",
        incidentInactivityDuration: "string",
        incidentKinds: ["string"],
        incidentPostMortemCondition: "string",
        incidentPostMortemConditionCause: "string",
        incidentPostMortemConditionStatus: "string",
        incidentPostMortemStatuses: ["string"],
        incidentStatuses: ["string"],
        incidentVisibilities: ["string"],
        triggerType: "string",
        triggers: ["string"],
    },
    wait: "string",
    workflowGroupId: "string",
});
Copy
type: rootly:WorkflowPostMortem
properties:
    causeIds:
        - string
    command: string
    commandFeedbackEnabled: false
    description: string
    enabled: false
    environmentIds:
        - string
    functionalityIds:
        - string
    groupIds:
        - string
    incidentRoleIds:
        - string
    incidentTypeIds:
        - string
    name: string
    position: 0
    repeatEveryDuration: string
    repeatOns:
        - string
    serviceIds:
        - string
    severityIds:
        - string
    slug: string
    triggerParams:
        incidentCondition: string
        incidentConditionAcknowledgedAt: string
        incidentConditionCause: string
        incidentConditionDetectedAt: string
        incidentConditionEnvironment: string
        incidentConditionFunctionality: string
        incidentConditionGroup: string
        incidentConditionIncidentRoles: string
        incidentConditionIncidentType: string
        incidentConditionKind: string
        incidentConditionMitigatedAt: string
        incidentConditionResolvedAt: string
        incidentConditionService: string
        incidentConditionSeverity: string
        incidentConditionStartedAt: string
        incidentConditionStatus: string
        incidentConditionSummary: string
        incidentConditionVisibility: string
        incidentConditionalInactivity: string
        incidentInactivityDuration: string
        incidentKinds:
            - string
        incidentPostMortemCondition: string
        incidentPostMortemConditionCause: string
        incidentPostMortemConditionStatus: string
        incidentPostMortemStatuses:
            - string
        incidentStatuses:
            - string
        incidentVisibilities:
            - string
        triggerType: string
        triggers:
            - string
    wait: string
    workflowGroupId: string
Copy

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

CauseIds List<string>
Command string
Workflow command
CommandFeedbackEnabled bool
This will notify you back when the workflow is starting. Value must be one of true or false
Description string
The description of the workflow
Enabled bool
EnvironmentIds List<string>
FunctionalityIds List<string>
GroupIds List<string>
IncidentRoleIds List<string>
IncidentTypeIds List<string>
Name string
The title of the workflow
Position int
The order which the workflow should run with other workflows.
RepeatEveryDuration string
Repeat workflow every duration
RepeatOns List<string>
Repeat on weekdays. Value must be one of S, M, T, W, R, F, U.
ServiceIds List<string>
SeverityIds List<string>
Slug string
The slug of the workflow
TriggerParams WorkflowPostMortemTriggerParams
Wait string
Wait this duration before executing
WorkflowGroupId string
The group this workflow belongs to.
CauseIds []string
Command string
Workflow command
CommandFeedbackEnabled bool
This will notify you back when the workflow is starting. Value must be one of true or false
Description string
The description of the workflow
Enabled bool
EnvironmentIds []string
FunctionalityIds []string
GroupIds []string
IncidentRoleIds []string
IncidentTypeIds []string
Name string
The title of the workflow
Position int
The order which the workflow should run with other workflows.
RepeatEveryDuration string
Repeat workflow every duration
RepeatOns []string
Repeat on weekdays. Value must be one of S, M, T, W, R, F, U.
ServiceIds []string
SeverityIds []string
Slug string
The slug of the workflow
TriggerParams WorkflowPostMortemTriggerParamsArgs
Wait string
Wait this duration before executing
WorkflowGroupId string
The group this workflow belongs to.
causeIds List<String>
command String
Workflow command
commandFeedbackEnabled Boolean
This will notify you back when the workflow is starting. Value must be one of true or false
description String
The description of the workflow
enabled Boolean
environmentIds List<String>
functionalityIds List<String>
groupIds List<String>
incidentRoleIds List<String>
incidentTypeIds List<String>
name String
The title of the workflow
position Integer
The order which the workflow should run with other workflows.
repeatEveryDuration String
Repeat workflow every duration
repeatOns List<String>
Repeat on weekdays. Value must be one of S, M, T, W, R, F, U.
serviceIds List<String>
severityIds List<String>
slug String
The slug of the workflow
triggerParams WorkflowPostMortemTriggerParams
wait_ String
Wait this duration before executing
workflowGroupId String
The group this workflow belongs to.
causeIds string[]
command string
Workflow command
commandFeedbackEnabled boolean
This will notify you back when the workflow is starting. Value must be one of true or false
description string
The description of the workflow
enabled boolean
environmentIds string[]
functionalityIds string[]
groupIds string[]
incidentRoleIds string[]
incidentTypeIds string[]
name string
The title of the workflow
position number
The order which the workflow should run with other workflows.
repeatEveryDuration string
Repeat workflow every duration
repeatOns string[]
Repeat on weekdays. Value must be one of S, M, T, W, R, F, U.
serviceIds string[]
severityIds string[]
slug string
The slug of the workflow
triggerParams WorkflowPostMortemTriggerParams
wait string
Wait this duration before executing
workflowGroupId string
The group this workflow belongs to.
cause_ids Sequence[str]
command str
Workflow command
command_feedback_enabled bool
This will notify you back when the workflow is starting. Value must be one of true or false
description str
The description of the workflow
enabled bool
environment_ids Sequence[str]
functionality_ids Sequence[str]
group_ids Sequence[str]
incident_role_ids Sequence[str]
incident_type_ids Sequence[str]
name str
The title of the workflow
position int
The order which the workflow should run with other workflows.
repeat_every_duration str
Repeat workflow every duration
repeat_ons Sequence[str]
Repeat on weekdays. Value must be one of S, M, T, W, R, F, U.
service_ids Sequence[str]
severity_ids Sequence[str]
slug str
The slug of the workflow
trigger_params WorkflowPostMortemTriggerParamsArgs
wait str
Wait this duration before executing
workflow_group_id str
The group this workflow belongs to.
causeIds List<String>
command String
Workflow command
commandFeedbackEnabled Boolean
This will notify you back when the workflow is starting. Value must be one of true or false
description String
The description of the workflow
enabled Boolean
environmentIds List<String>
functionalityIds List<String>
groupIds List<String>
incidentRoleIds List<String>
incidentTypeIds List<String>
name String
The title of the workflow
position Number
The order which the workflow should run with other workflows.
repeatEveryDuration String
Repeat workflow every duration
repeatOns List<String>
Repeat on weekdays. Value must be one of S, M, T, W, R, F, U.
serviceIds List<String>
severityIds List<String>
slug String
The slug of the workflow
triggerParams Property Map
wait String
Wait this duration before executing
workflowGroupId String
The group this workflow belongs to.

Outputs

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

Get an existing WorkflowPostMortem 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?: WorkflowPostMortemState, opts?: CustomResourceOptions): WorkflowPostMortem
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        cause_ids: Optional[Sequence[str]] = None,
        command: Optional[str] = None,
        command_feedback_enabled: Optional[bool] = None,
        description: Optional[str] = None,
        enabled: Optional[bool] = None,
        environment_ids: Optional[Sequence[str]] = None,
        functionality_ids: Optional[Sequence[str]] = None,
        group_ids: Optional[Sequence[str]] = None,
        incident_role_ids: Optional[Sequence[str]] = None,
        incident_type_ids: Optional[Sequence[str]] = None,
        name: Optional[str] = None,
        position: Optional[int] = None,
        repeat_every_duration: Optional[str] = None,
        repeat_ons: Optional[Sequence[str]] = None,
        service_ids: Optional[Sequence[str]] = None,
        severity_ids: Optional[Sequence[str]] = None,
        slug: Optional[str] = None,
        trigger_params: Optional[WorkflowPostMortemTriggerParamsArgs] = None,
        wait: Optional[str] = None,
        workflow_group_id: Optional[str] = None) -> WorkflowPostMortem
func GetWorkflowPostMortem(ctx *Context, name string, id IDInput, state *WorkflowPostMortemState, opts ...ResourceOption) (*WorkflowPostMortem, error)
public static WorkflowPostMortem Get(string name, Input<string> id, WorkflowPostMortemState? state, CustomResourceOptions? opts = null)
public static WorkflowPostMortem get(String name, Output<String> id, WorkflowPostMortemState state, CustomResourceOptions options)
resources:  _:    type: rootly:WorkflowPostMortem    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
CauseIds List<string>
Command string
Workflow command
CommandFeedbackEnabled bool
This will notify you back when the workflow is starting. Value must be one of true or false
Description string
The description of the workflow
Enabled bool
EnvironmentIds List<string>
FunctionalityIds List<string>
GroupIds List<string>
IncidentRoleIds List<string>
IncidentTypeIds List<string>
Name string
The title of the workflow
Position int
The order which the workflow should run with other workflows.
RepeatEveryDuration string
Repeat workflow every duration
RepeatOns List<string>
Repeat on weekdays. Value must be one of S, M, T, W, R, F, U.
ServiceIds List<string>
SeverityIds List<string>
Slug string
The slug of the workflow
TriggerParams WorkflowPostMortemTriggerParams
Wait string
Wait this duration before executing
WorkflowGroupId string
The group this workflow belongs to.
CauseIds []string
Command string
Workflow command
CommandFeedbackEnabled bool
This will notify you back when the workflow is starting. Value must be one of true or false
Description string
The description of the workflow
Enabled bool
EnvironmentIds []string
FunctionalityIds []string
GroupIds []string
IncidentRoleIds []string
IncidentTypeIds []string
Name string
The title of the workflow
Position int
The order which the workflow should run with other workflows.
RepeatEveryDuration string
Repeat workflow every duration
RepeatOns []string
Repeat on weekdays. Value must be one of S, M, T, W, R, F, U.
ServiceIds []string
SeverityIds []string
Slug string
The slug of the workflow
TriggerParams WorkflowPostMortemTriggerParamsArgs
Wait string
Wait this duration before executing
WorkflowGroupId string
The group this workflow belongs to.
causeIds List<String>
command String
Workflow command
commandFeedbackEnabled Boolean
This will notify you back when the workflow is starting. Value must be one of true or false
description String
The description of the workflow
enabled Boolean
environmentIds List<String>
functionalityIds List<String>
groupIds List<String>
incidentRoleIds List<String>
incidentTypeIds List<String>
name String
The title of the workflow
position Integer
The order which the workflow should run with other workflows.
repeatEveryDuration String
Repeat workflow every duration
repeatOns List<String>
Repeat on weekdays. Value must be one of S, M, T, W, R, F, U.
serviceIds List<String>
severityIds List<String>
slug String
The slug of the workflow
triggerParams WorkflowPostMortemTriggerParams
wait_ String
Wait this duration before executing
workflowGroupId String
The group this workflow belongs to.
causeIds string[]
command string
Workflow command
commandFeedbackEnabled boolean
This will notify you back when the workflow is starting. Value must be one of true or false
description string
The description of the workflow
enabled boolean
environmentIds string[]
functionalityIds string[]
groupIds string[]
incidentRoleIds string[]
incidentTypeIds string[]
name string
The title of the workflow
position number
The order which the workflow should run with other workflows.
repeatEveryDuration string
Repeat workflow every duration
repeatOns string[]
Repeat on weekdays. Value must be one of S, M, T, W, R, F, U.
serviceIds string[]
severityIds string[]
slug string
The slug of the workflow
triggerParams WorkflowPostMortemTriggerParams
wait string
Wait this duration before executing
workflowGroupId string
The group this workflow belongs to.
cause_ids Sequence[str]
command str
Workflow command
command_feedback_enabled bool
This will notify you back when the workflow is starting. Value must be one of true or false
description str
The description of the workflow
enabled bool
environment_ids Sequence[str]
functionality_ids Sequence[str]
group_ids Sequence[str]
incident_role_ids Sequence[str]
incident_type_ids Sequence[str]
name str
The title of the workflow
position int
The order which the workflow should run with other workflows.
repeat_every_duration str
Repeat workflow every duration
repeat_ons Sequence[str]
Repeat on weekdays. Value must be one of S, M, T, W, R, F, U.
service_ids Sequence[str]
severity_ids Sequence[str]
slug str
The slug of the workflow
trigger_params WorkflowPostMortemTriggerParamsArgs
wait str
Wait this duration before executing
workflow_group_id str
The group this workflow belongs to.
causeIds List<String>
command String
Workflow command
commandFeedbackEnabled Boolean
This will notify you back when the workflow is starting. Value must be one of true or false
description String
The description of the workflow
enabled Boolean
environmentIds List<String>
functionalityIds List<String>
groupIds List<String>
incidentRoleIds List<String>
incidentTypeIds List<String>
name String
The title of the workflow
position Number
The order which the workflow should run with other workflows.
repeatEveryDuration String
Repeat workflow every duration
repeatOns List<String>
Repeat on weekdays. Value must be one of S, M, T, W, R, F, U.
serviceIds List<String>
severityIds List<String>
slug String
The slug of the workflow
triggerParams Property Map
wait String
Wait this duration before executing
workflowGroupId String
The group this workflow belongs to.

Supporting Types

WorkflowPostMortemTriggerParams
, WorkflowPostMortemTriggerParamsArgs

IncidentCondition string
Value must be one off ALL, ANY, NONE.
IncidentConditionAcknowledgedAt string
IncidentConditionCause string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
IncidentConditionDetectedAt string
IncidentConditionEnvironment string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
IncidentConditionFunctionality string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
IncidentConditionGroup string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
IncidentConditionIncidentRoles string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
IncidentConditionIncidentType string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
IncidentConditionKind string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
IncidentConditionMitigatedAt string
IncidentConditionResolvedAt string
IncidentConditionService string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
IncidentConditionSeverity string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
IncidentConditionStartedAt string
IncidentConditionStatus string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
IncidentConditionSummary string
IncidentConditionVisibility string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
IncidentConditionalInactivity string
IncidentInactivityDuration string
ex. 10 min, 1h, 3 days, 2 weeks
IncidentKinds List<string>
Value must be one of test, test_sub, example, example_sub, normal, normal_sub, backfilled, scheduled.
IncidentPostMortemCondition string
Value must be one off ALL, ANY, NONE.
IncidentPostMortemConditionCause string
[DEPRECATED] Use incidentconditioncause instead. Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
IncidentPostMortemConditionStatus string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
IncidentPostMortemStatuses List<string>
Value must be one of draft, published.
IncidentStatuses List<string>
Value must be one of in_triage, started, detected, acknowledged, mitigated, resolved, cancelled, scheduled, in_progress, completed.
IncidentVisibilities List<string>
TriggerType string
Value must be one off post_mortem.
Triggers List<string>
Actions that trigger the workflow. One of customfields.\n\n.updated, postmortemcreated, postmortemupdated, statusupdated, slack_command
IncidentCondition string
Value must be one off ALL, ANY, NONE.
IncidentConditionAcknowledgedAt string
IncidentConditionCause string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
IncidentConditionDetectedAt string
IncidentConditionEnvironment string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
IncidentConditionFunctionality string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
IncidentConditionGroup string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
IncidentConditionIncidentRoles string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
IncidentConditionIncidentType string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
IncidentConditionKind string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
IncidentConditionMitigatedAt string
IncidentConditionResolvedAt string
IncidentConditionService string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
IncidentConditionSeverity string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
IncidentConditionStartedAt string
IncidentConditionStatus string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
IncidentConditionSummary string
IncidentConditionVisibility string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
IncidentConditionalInactivity string
IncidentInactivityDuration string
ex. 10 min, 1h, 3 days, 2 weeks
IncidentKinds []string
Value must be one of test, test_sub, example, example_sub, normal, normal_sub, backfilled, scheduled.
IncidentPostMortemCondition string
Value must be one off ALL, ANY, NONE.
IncidentPostMortemConditionCause string
[DEPRECATED] Use incidentconditioncause instead. Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
IncidentPostMortemConditionStatus string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
IncidentPostMortemStatuses []string
Value must be one of draft, published.
IncidentStatuses []string
Value must be one of in_triage, started, detected, acknowledged, mitigated, resolved, cancelled, scheduled, in_progress, completed.
IncidentVisibilities []string
TriggerType string
Value must be one off post_mortem.
Triggers []string
Actions that trigger the workflow. One of customfields.\n\n.updated, postmortemcreated, postmortemupdated, statusupdated, slack_command
incidentCondition String
Value must be one off ALL, ANY, NONE.
incidentConditionAcknowledgedAt String
incidentConditionCause String
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionDetectedAt String
incidentConditionEnvironment String
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionFunctionality String
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionGroup String
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionIncidentRoles String
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionIncidentType String
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionKind String
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionMitigatedAt String
incidentConditionResolvedAt String
incidentConditionService String
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionSeverity String
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionStartedAt String
incidentConditionStatus String
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionSummary String
incidentConditionVisibility String
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionalInactivity String
incidentInactivityDuration String
ex. 10 min, 1h, 3 days, 2 weeks
incidentKinds List<String>
Value must be one of test, test_sub, example, example_sub, normal, normal_sub, backfilled, scheduled.
incidentPostMortemCondition String
Value must be one off ALL, ANY, NONE.
incidentPostMortemConditionCause String
[DEPRECATED] Use incidentconditioncause instead. Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentPostMortemConditionStatus String
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentPostMortemStatuses List<String>
Value must be one of draft, published.
incidentStatuses List<String>
Value must be one of in_triage, started, detected, acknowledged, mitigated, resolved, cancelled, scheduled, in_progress, completed.
incidentVisibilities List<String>
triggerType String
Value must be one off post_mortem.
triggers List<String>
Actions that trigger the workflow. One of customfields.\n\n.updated, postmortemcreated, postmortemupdated, statusupdated, slack_command
incidentCondition string
Value must be one off ALL, ANY, NONE.
incidentConditionAcknowledgedAt string
incidentConditionCause string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionDetectedAt string
incidentConditionEnvironment string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionFunctionality string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionGroup string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionIncidentRoles string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionIncidentType string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionKind string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionMitigatedAt string
incidentConditionResolvedAt string
incidentConditionService string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionSeverity string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionStartedAt string
incidentConditionStatus string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionSummary string
incidentConditionVisibility string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionalInactivity string
incidentInactivityDuration string
ex. 10 min, 1h, 3 days, 2 weeks
incidentKinds string[]
Value must be one of test, test_sub, example, example_sub, normal, normal_sub, backfilled, scheduled.
incidentPostMortemCondition string
Value must be one off ALL, ANY, NONE.
incidentPostMortemConditionCause string
[DEPRECATED] Use incidentconditioncause instead. Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentPostMortemConditionStatus string
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentPostMortemStatuses string[]
Value must be one of draft, published.
incidentStatuses string[]
Value must be one of in_triage, started, detected, acknowledged, mitigated, resolved, cancelled, scheduled, in_progress, completed.
incidentVisibilities string[]
triggerType string
Value must be one off post_mortem.
triggers string[]
Actions that trigger the workflow. One of customfields.\n\n.updated, postmortemcreated, postmortemupdated, statusupdated, slack_command
incident_condition str
Value must be one off ALL, ANY, NONE.
incident_condition_acknowledged_at str
incident_condition_cause str
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incident_condition_detected_at str
incident_condition_environment str
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incident_condition_functionality str
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incident_condition_group str
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incident_condition_incident_roles str
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incident_condition_incident_type str
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incident_condition_kind str
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incident_condition_mitigated_at str
incident_condition_resolved_at str
incident_condition_service str
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incident_condition_severity str
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incident_condition_started_at str
incident_condition_status str
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incident_condition_summary str
incident_condition_visibility str
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incident_conditional_inactivity str
incident_inactivity_duration str
ex. 10 min, 1h, 3 days, 2 weeks
incident_kinds Sequence[str]
Value must be one of test, test_sub, example, example_sub, normal, normal_sub, backfilled, scheduled.
incident_post_mortem_condition str
Value must be one off ALL, ANY, NONE.
incident_post_mortem_condition_cause str
[DEPRECATED] Use incidentconditioncause instead. Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incident_post_mortem_condition_status str
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incident_post_mortem_statuses Sequence[str]
Value must be one of draft, published.
incident_statuses Sequence[str]
Value must be one of in_triage, started, detected, acknowledged, mitigated, resolved, cancelled, scheduled, in_progress, completed.
incident_visibilities Sequence[str]
trigger_type str
Value must be one off post_mortem.
triggers Sequence[str]
Actions that trigger the workflow. One of customfields.\n\n.updated, postmortemcreated, postmortemupdated, statusupdated, slack_command
incidentCondition String
Value must be one off ALL, ANY, NONE.
incidentConditionAcknowledgedAt String
incidentConditionCause String
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionDetectedAt String
incidentConditionEnvironment String
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionFunctionality String
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionGroup String
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionIncidentRoles String
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionIncidentType String
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionKind String
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionMitigatedAt String
incidentConditionResolvedAt String
incidentConditionService String
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionSeverity String
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionStartedAt String
incidentConditionStatus String
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionSummary String
incidentConditionVisibility String
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentConditionalInactivity String
incidentInactivityDuration String
ex. 10 min, 1h, 3 days, 2 weeks
incidentKinds List<String>
Value must be one of test, test_sub, example, example_sub, normal, normal_sub, backfilled, scheduled.
incidentPostMortemCondition String
Value must be one off ALL, ANY, NONE.
incidentPostMortemConditionCause String
[DEPRECATED] Use incidentconditioncause instead. Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentPostMortemConditionStatus String
Value must be one off IS, ANY, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, NONE, SET, UNSET.
incidentPostMortemStatuses List<String>
Value must be one of draft, published.
incidentStatuses List<String>
Value must be one of in_triage, started, detected, acknowledged, mitigated, resolved, cancelled, scheduled, in_progress, completed.
incidentVisibilities List<String>
triggerType String
Value must be one off post_mortem.
triggers List<String>
Actions that trigger the workflow. One of customfields.\n\n.updated, postmortemcreated, postmortemupdated, statusupdated, slack_command

Package Details

Repository
rootly rootlyhq/pulumi-rootly
License
Apache-2.0
Notes
This Pulumi package is based on the rootly Terraform Provider.