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 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 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 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 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 String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
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")
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",
});
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
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
- CommandFeedback boolEnabled 
- 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>
- IncidentRole List<string>Ids 
- IncidentType List<string>Ids 
- Name string
- The title of the workflow
- Position int
- The order which the workflow should run with other workflows.
- RepeatEvery stringDuration 
- 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 WorkflowPost Mortem Trigger Params 
- Wait string
- Wait this duration before executing
- WorkflowGroup stringId 
- The group this workflow belongs to.
- CauseIds []string
- Command string
- Workflow command
- CommandFeedback boolEnabled 
- 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
- IncidentRole []stringIds 
- IncidentType []stringIds 
- Name string
- The title of the workflow
- Position int
- The order which the workflow should run with other workflows.
- RepeatEvery stringDuration 
- 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 WorkflowPost Mortem Trigger Params Args 
- Wait string
- Wait this duration before executing
- WorkflowGroup stringId 
- The group this workflow belongs to.
- causeIds List<String>
- command String
- Workflow command
- commandFeedback BooleanEnabled 
- 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>
- incidentRole List<String>Ids 
- incidentType List<String>Ids 
- name String
- The title of the workflow
- position Integer
- The order which the workflow should run with other workflows.
- repeatEvery StringDuration 
- 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 WorkflowPost Mortem Trigger Params 
- wait_ String
- Wait this duration before executing
- workflowGroup StringId 
- The group this workflow belongs to.
- causeIds string[]
- command string
- Workflow command
- commandFeedback booleanEnabled 
- 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[]
- incidentRole string[]Ids 
- incidentType string[]Ids 
- name string
- The title of the workflow
- position number
- The order which the workflow should run with other workflows.
- repeatEvery stringDuration 
- 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 WorkflowPost Mortem Trigger Params 
- wait string
- Wait this duration before executing
- workflowGroup stringId 
- The group this workflow belongs to.
- cause_ids Sequence[str]
- command str
- Workflow command
- command_feedback_ boolenabled 
- 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_ Sequence[str]ids 
- incident_type_ Sequence[str]ids 
- name str
- The title of the workflow
- position int
- The order which the workflow should run with other workflows.
- repeat_every_ strduration 
- 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 WorkflowPost Mortem Trigger Params Args 
- wait str
- Wait this duration before executing
- workflow_group_ strid 
- The group this workflow belongs to.
- causeIds List<String>
- command String
- Workflow command
- commandFeedback BooleanEnabled 
- 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>
- incidentRole List<String>Ids 
- incidentType List<String>Ids 
- name String
- The title of the workflow
- position Number
- The order which the workflow should run with other workflows.
- repeatEvery StringDuration 
- 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
- workflowGroup StringId 
- 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) -> WorkflowPostMortemfunc 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
- 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.
- CauseIds List<string>
- Command string
- Workflow command
- CommandFeedback boolEnabled 
- 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>
- IncidentRole List<string>Ids 
- IncidentType List<string>Ids 
- Name string
- The title of the workflow
- Position int
- The order which the workflow should run with other workflows.
- RepeatEvery stringDuration 
- 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 WorkflowPost Mortem Trigger Params 
- Wait string
- Wait this duration before executing
- WorkflowGroup stringId 
- The group this workflow belongs to.
- CauseIds []string
- Command string
- Workflow command
- CommandFeedback boolEnabled 
- 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
- IncidentRole []stringIds 
- IncidentType []stringIds 
- Name string
- The title of the workflow
- Position int
- The order which the workflow should run with other workflows.
- RepeatEvery stringDuration 
- 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 WorkflowPost Mortem Trigger Params Args 
- Wait string
- Wait this duration before executing
- WorkflowGroup stringId 
- The group this workflow belongs to.
- causeIds List<String>
- command String
- Workflow command
- commandFeedback BooleanEnabled 
- 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>
- incidentRole List<String>Ids 
- incidentType List<String>Ids 
- name String
- The title of the workflow
- position Integer
- The order which the workflow should run with other workflows.
- repeatEvery StringDuration 
- 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 WorkflowPost Mortem Trigger Params 
- wait_ String
- Wait this duration before executing
- workflowGroup StringId 
- The group this workflow belongs to.
- causeIds string[]
- command string
- Workflow command
- commandFeedback booleanEnabled 
- 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[]
- incidentRole string[]Ids 
- incidentType string[]Ids 
- name string
- The title of the workflow
- position number
- The order which the workflow should run with other workflows.
- repeatEvery stringDuration 
- 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 WorkflowPost Mortem Trigger Params 
- wait string
- Wait this duration before executing
- workflowGroup stringId 
- The group this workflow belongs to.
- cause_ids Sequence[str]
- command str
- Workflow command
- command_feedback_ boolenabled 
- 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_ Sequence[str]ids 
- incident_type_ Sequence[str]ids 
- name str
- The title of the workflow
- position int
- The order which the workflow should run with other workflows.
- repeat_every_ strduration 
- 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 WorkflowPost Mortem Trigger Params Args 
- wait str
- Wait this duration before executing
- workflow_group_ strid 
- The group this workflow belongs to.
- causeIds List<String>
- command String
- Workflow command
- commandFeedback BooleanEnabled 
- 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>
- incidentRole List<String>Ids 
- incidentType List<String>Ids 
- name String
- The title of the workflow
- position Number
- The order which the workflow should run with other workflows.
- repeatEvery StringDuration 
- 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
- workflowGroup StringId 
- The group this workflow belongs to.
Supporting Types
WorkflowPostMortemTriggerParams, WorkflowPostMortemTriggerParamsArgs          
- IncidentCondition string
- Value must be one off ALL,ANY,NONE.
- IncidentCondition stringAcknowledged At 
- IncidentCondition stringCause 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- IncidentCondition stringDetected At 
- IncidentCondition stringEnvironment 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- IncidentCondition stringFunctionality 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- IncidentCondition stringGroup 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- IncidentCondition stringIncident Roles 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- IncidentCondition stringIncident Type 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- IncidentCondition stringKind 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- IncidentCondition stringMitigated At 
- IncidentCondition stringResolved At 
- IncidentCondition stringService 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- IncidentCondition stringSeverity 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- IncidentCondition stringStarted At 
- IncidentCondition stringStatus 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- IncidentCondition stringSummary 
- IncidentCondition stringVisibility 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- IncidentConditional stringInactivity 
- IncidentInactivity stringDuration 
- 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.
- IncidentPost stringMortem Condition 
- Value must be one off ALL,ANY,NONE.
- IncidentPost stringMortem Condition Cause 
- [DEPRECATED] Use incidentconditioncause instead. Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- IncidentPost stringMortem Condition Status 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- IncidentPost List<string>Mortem Statuses 
- 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.
- IncidentCondition stringAcknowledged At 
- IncidentCondition stringCause 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- IncidentCondition stringDetected At 
- IncidentCondition stringEnvironment 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- IncidentCondition stringFunctionality 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- IncidentCondition stringGroup 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- IncidentCondition stringIncident Roles 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- IncidentCondition stringIncident Type 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- IncidentCondition stringKind 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- IncidentCondition stringMitigated At 
- IncidentCondition stringResolved At 
- IncidentCondition stringService 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- IncidentCondition stringSeverity 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- IncidentCondition stringStarted At 
- IncidentCondition stringStatus 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- IncidentCondition stringSummary 
- IncidentCondition stringVisibility 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- IncidentConditional stringInactivity 
- IncidentInactivity stringDuration 
- 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.
- IncidentPost stringMortem Condition 
- Value must be one off ALL,ANY,NONE.
- IncidentPost stringMortem Condition Cause 
- [DEPRECATED] Use incidentconditioncause instead. Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- IncidentPost stringMortem Condition Status 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- IncidentPost []stringMortem Statuses 
- 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.
- incidentCondition StringAcknowledged At 
- incidentCondition StringCause 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition StringDetected At 
- incidentCondition StringEnvironment 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition StringFunctionality 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition StringGroup 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition StringIncident Roles 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition StringIncident Type 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition StringKind 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition StringMitigated At 
- incidentCondition StringResolved At 
- incidentCondition StringService 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition StringSeverity 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition StringStarted At 
- incidentCondition StringStatus 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition StringSummary 
- incidentCondition StringVisibility 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentConditional StringInactivity 
- incidentInactivity StringDuration 
- 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.
- incidentPost StringMortem Condition 
- Value must be one off ALL,ANY,NONE.
- incidentPost StringMortem Condition Cause 
- [DEPRECATED] Use incidentconditioncause instead. Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentPost StringMortem Condition Status 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentPost List<String>Mortem Statuses 
- 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.
- incidentCondition stringAcknowledged At 
- incidentCondition stringCause 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition stringDetected At 
- incidentCondition stringEnvironment 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition stringFunctionality 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition stringGroup 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition stringIncident Roles 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition stringIncident Type 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition stringKind 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition stringMitigated At 
- incidentCondition stringResolved At 
- incidentCondition stringService 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition stringSeverity 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition stringStarted At 
- incidentCondition stringStatus 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition stringSummary 
- incidentCondition stringVisibility 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentConditional stringInactivity 
- incidentInactivity stringDuration 
- 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.
- incidentPost stringMortem Condition 
- Value must be one off ALL,ANY,NONE.
- incidentPost stringMortem Condition Cause 
- [DEPRECATED] Use incidentconditioncause instead. Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentPost stringMortem Condition Status 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentPost string[]Mortem Statuses 
- 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_ stracknowledged_ at 
- incident_condition_ strcause 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incident_condition_ strdetected_ at 
- incident_condition_ strenvironment 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incident_condition_ strfunctionality 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incident_condition_ strgroup 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incident_condition_ strincident_ roles 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incident_condition_ strincident_ type 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incident_condition_ strkind 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incident_condition_ strmitigated_ at 
- incident_condition_ strresolved_ at 
- incident_condition_ strservice 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incident_condition_ strseverity 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incident_condition_ strstarted_ at 
- incident_condition_ strstatus 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incident_condition_ strsummary 
- incident_condition_ strvisibility 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incident_conditional_ strinactivity 
- incident_inactivity_ strduration 
- 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_ strmortem_ condition 
- Value must be one off ALL,ANY,NONE.
- incident_post_ strmortem_ condition_ cause 
- [DEPRECATED] Use incidentconditioncause instead. Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incident_post_ strmortem_ condition_ status 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incident_post_ Sequence[str]mortem_ statuses 
- 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.
- incidentCondition StringAcknowledged At 
- incidentCondition StringCause 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition StringDetected At 
- incidentCondition StringEnvironment 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition StringFunctionality 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition StringGroup 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition StringIncident Roles 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition StringIncident Type 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition StringKind 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition StringMitigated At 
- incidentCondition StringResolved At 
- incidentCondition StringService 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition StringSeverity 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition StringStarted At 
- incidentCondition StringStatus 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentCondition StringSummary 
- incidentCondition StringVisibility 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentConditional StringInactivity 
- incidentInactivity StringDuration 
- 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.
- incidentPost StringMortem Condition 
- Value must be one off ALL,ANY,NONE.
- incidentPost StringMortem Condition Cause 
- [DEPRECATED] Use incidentconditioncause instead. Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentPost StringMortem Condition Status 
- Value must be one off IS,ANY,CONTAINS,CONTAINS_ALL,CONTAINS_NONE,NONE,SET,UNSET.
- incidentPost List<String>Mortem Statuses 
- 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 rootlyTerraform Provider.