1. Registry
  2. Packages
  3. Incident Provider
  4. API Docs
  5. getIncidentTemplate
Viewing docs for incident 7.0.0
published on Friday, Sep 11, 2026 by incident-io
Viewing docs for incident 7.0.0
published on Friday, Sep 11, 2026 by incident-io

    Manage incident templates: reusable sets of values applied to incidents created from alerts.

    Use this data source to look up an existing incident template, either by id or by name. This is useful for referencing a template the dashboard owns — for example pointing an incident.AlertRoute at it via incident_config.incident_template — without managing the template as an incident.IncidentTemplate resource. Set exactly one of the two lookup attributes; setting both, or neither, is rejected at plan time.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as incident from "@pulumi/incident";
    
    // Look up an incident template by name, to reference one the dashboard owns
    // rather than managing it here — for example from an alert route.
    const payments = incident.getIncidentTemplate({
        name: "Payments incidents",
    });
    // Or by ID, for example one copied out of your organisation's settings.
    const _default = incident.getIncidentTemplate({
        id: "01FCNDV6P870EA6S7TK1DSYD5H",
    });
    export const paymentsTemplateId = payments.then(payments => payments.id);
    
    import pulumi
    import pulumi_incident as incident
    
    # Look up an incident template by name, to reference one the dashboard owns
    # rather than managing it here — for example from an alert route.
    payments = incident.get_incident_template(name="Payments incidents")
    # Or by ID, for example one copied out of your organisation's settings.
    default = incident.get_incident_template(id="01FCNDV6P870EA6S7TK1DSYD5H")
    pulumi.export("paymentsTemplateId", payments.id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/incident/v7/incident"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Look up an incident template by name, to reference one the dashboard owns
    		// rather than managing it here — for example from an alert route.
    		payments, err := incident.LookupIncidentTemplate(ctx, &incident.LookupIncidentTemplateArgs{
    			Name: pulumi.StringRef("Payments incidents"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		// Or by ID, for example one copied out of your organisation's settings.
    		_, err = incident.LookupIncidentTemplate(ctx, &incident.LookupIncidentTemplateArgs{
    			Id: pulumi.StringRef("01FCNDV6P870EA6S7TK1DSYD5H"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("paymentsTemplateId", payments.Id)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Incident = Pulumi.Incident;
    
    return await Deployment.RunAsync(() => 
    {
        // Look up an incident template by name, to reference one the dashboard owns
        // rather than managing it here — for example from an alert route.
        var payments = Incident.GetIncidentTemplate.Invoke(new()
        {
            Name = "Payments incidents",
        });
    
        // Or by ID, for example one copied out of your organisation's settings.
        var @default = Incident.GetIncidentTemplate.Invoke(new()
        {
            Id = "01FCNDV6P870EA6S7TK1DSYD5H",
        });
    
        return new Dictionary<string, object?>
        {
            ["paymentsTemplateId"] = payments.Apply(getIncidentTemplateResult => getIncidentTemplateResult.Id),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.incident.IncidentFunctions;
    import com.pulumi.incident.inputs.GetIncidentTemplateArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            // Look up an incident template by name, to reference one the dashboard owns
            // rather than managing it here — for example from an alert route.
            final var payments = IncidentFunctions.getIncidentTemplate(GetIncidentTemplateArgs.builder()
                .name("Payments incidents")
                .build());
    
            // Or by ID, for example one copied out of your organisation's settings.
            final var default = IncidentFunctions.getIncidentTemplate(GetIncidentTemplateArgs.builder()
                .id("01FCNDV6P870EA6S7TK1DSYD5H")
                .build());
    
            ctx.export("paymentsTemplateId", payments.id());
        }
    }
    
    variables:
      # Look up an incident template by name, to reference one the dashboard owns
      # rather than managing it here — for example from an alert route.
      payments:
        fn::invoke:
          function: incident:getIncidentTemplate
          arguments:
            name: Payments incidents
      # Or by ID, for example one copied out of your organisation's settings.
      default:
        fn::invoke:
          function: incident:getIncidentTemplate
          arguments:
            id: 01FCNDV6P870EA6S7TK1DSYD5H
    outputs:
      paymentsTemplateId: ${payments.id}
    
    Example coming soon!
    

    Using getIncidentTemplate

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getIncidentTemplate(args: GetIncidentTemplateArgs, opts?: InvokeOptions): Promise<GetIncidentTemplateResult>
    function getIncidentTemplateOutput(args: GetIncidentTemplateOutputArgs, opts?: InvokeOutputOptions): Output<GetIncidentTemplateResult>
    def get_incident_template(id: Optional[str] = None,
                              name: Optional[str] = None,
                              opts: Optional[InvokeOptions] = None) -> GetIncidentTemplateResult
    def get_incident_template_output(id: pulumi.Input[Optional[str]] = None,
                              name: pulumi.Input[Optional[str]] = None,
                              opts: Optional[InvokeOutputOptions] = None) -> Output[GetIncidentTemplateResult]
    func LookupIncidentTemplate(ctx *Context, args *LookupIncidentTemplateArgs, opts ...InvokeOption) (*LookupIncidentTemplateResult, error)
    func LookupIncidentTemplateOutput(ctx *Context, args *LookupIncidentTemplateOutputArgs, opts ...InvokeOption) LookupIncidentTemplateResultOutput

    > Note: This function is named LookupIncidentTemplate in the Go SDK.

    public static class GetIncidentTemplate 
    {
        public static Task<GetIncidentTemplateResult> InvokeAsync(GetIncidentTemplateArgs args, InvokeOptions? opts = null)
        public static Output<GetIncidentTemplateResult> Invoke(GetIncidentTemplateInvokeArgs args, InvokeOptions? opts = null)
        public static Output<GetIncidentTemplateResult> Invoke(GetIncidentTemplateInvokeArgs args, InvokeOutputOptions opts)
    }
    public static CompletableFuture<GetIncidentTemplateResult> getIncidentTemplate(GetIncidentTemplateArgs args, InvokeOptions options)
    public static Output<GetIncidentTemplateResult> getIncidentTemplate(GetIncidentTemplateArgs args, InvokeOptions options)
    public static Output<GetIncidentTemplateResult> getIncidentTemplate(GetIncidentTemplateArgs args, InvokeOutputOptions options)
    
    fn::invoke:
      function: incident:index/getIncidentTemplate:getIncidentTemplate
      arguments:
        # arguments dictionary
    data "incident_get_incident_template" "name" {
        # arguments
    }

    The following arguments are supported:

    Id string
    Unique identifier for this incident template
    Name string
    The name of this incident template, for the user's reference
    Id string
    Unique identifier for this incident template
    Name string
    The name of this incident template, for the user's reference
    id string
    Unique identifier for this incident template
    name string
    The name of this incident template, for the user's reference
    id String
    Unique identifier for this incident template
    name String
    The name of this incident template, for the user's reference
    id string
    Unique identifier for this incident template
    name string
    The name of this incident template, for the user's reference
    id str
    Unique identifier for this incident template
    name str
    The name of this incident template, for the user's reference
    id String
    Unique identifier for this incident template
    name String
    The name of this incident template, for the user's reference

    getIncidentTemplate Result

    The following output properties are available:

    Expressions List<GetIncidentTemplateExpression>
    Expressions that make variables available in the scope
    Id string
    Unique identifier for this incident template
    Name string
    The name of this incident template, for the user's reference
    Template GetIncidentTemplateTemplate
    The values an incident template applies to the incidents it creates.
    Expressions []GetIncidentTemplateExpression
    Expressions that make variables available in the scope
    Id string
    Unique identifier for this incident template
    Name string
    The name of this incident template, for the user's reference
    Template GetIncidentTemplateTemplate
    The values an incident template applies to the incidents it creates.
    expressions list(object)
    Expressions that make variables available in the scope
    id string
    Unique identifier for this incident template
    name string
    The name of this incident template, for the user's reference
    template object
    The values an incident template applies to the incidents it creates.
    expressions List<GetIncidentTemplateExpression>
    Expressions that make variables available in the scope
    id String
    Unique identifier for this incident template
    name String
    The name of this incident template, for the user's reference
    template GetIncidentTemplateTemplate
    The values an incident template applies to the incidents it creates.
    expressions GetIncidentTemplateExpression[]
    Expressions that make variables available in the scope
    id string
    Unique identifier for this incident template
    name string
    The name of this incident template, for the user's reference
    template GetIncidentTemplateTemplate
    The values an incident template applies to the incidents it creates.
    expressions Sequence[GetIncidentTemplateExpression]
    Expressions that make variables available in the scope
    id str
    Unique identifier for this incident template
    name str
    The name of this incident template, for the user's reference
    template GetIncidentTemplateTemplate
    The values an incident template applies to the incidents it creates.
    expressions List<Property Map>
    Expressions that make variables available in the scope
    id String
    Unique identifier for this incident template
    name String
    The name of this incident template, for the user's reference
    template Property Map
    The values an incident template applies to the incidents it creates.

    Supporting Types

    GetIncidentTemplateExpression

    ElseBranch GetIncidentTemplateExpressionElseBranch
    Label string
    The human readable label of the expression
    Operations List<GetIncidentTemplateExpressionOperation>
    Reference string
    A short ID that can be used to reference the expression
    RootReference string
    The root reference for this expression (i.e. where the expression starts)
    ElseBranch GetIncidentTemplateExpressionElseBranch
    Label string
    The human readable label of the expression
    Operations []GetIncidentTemplateExpressionOperation
    Reference string
    A short ID that can be used to reference the expression
    RootReference string
    The root reference for this expression (i.e. where the expression starts)
    else_branch object
    label string
    The human readable label of the expression
    operations list(object)
    reference string
    A short ID that can be used to reference the expression
    root_reference string
    The root reference for this expression (i.e. where the expression starts)
    elseBranch GetIncidentTemplateExpressionElseBranch
    label String
    The human readable label of the expression
    operations List<GetIncidentTemplateExpressionOperation>
    reference String
    A short ID that can be used to reference the expression
    rootReference String
    The root reference for this expression (i.e. where the expression starts)
    elseBranch GetIncidentTemplateExpressionElseBranch
    label string
    The human readable label of the expression
    operations GetIncidentTemplateExpressionOperation[]
    reference string
    A short ID that can be used to reference the expression
    rootReference string
    The root reference for this expression (i.e. where the expression starts)
    else_branch GetIncidentTemplateExpressionElseBranch
    label str
    The human readable label of the expression
    operations Sequence[GetIncidentTemplateExpressionOperation]
    reference str
    A short ID that can be used to reference the expression
    root_reference str
    The root reference for this expression (i.e. where the expression starts)
    elseBranch Property Map
    label String
    The human readable label of the expression
    operations List<Property Map>
    reference String
    A short ID that can be used to reference the expression
    rootReference String
    The root reference for this expression (i.e. where the expression starts)

    GetIncidentTemplateExpressionElseBranch

    GetIncidentTemplateExpressionElseBranchResult

    array_values list(object)
    If array*value is set, this helps render the values
    expression_ref string
    value object
    value_literal string
    value_reference string
    values list(string)
    arrayValues List<Property Map>
    If array*value is set, this helps render the values
    expressionRef String
    value Property Map
    valueLiteral String
    valueReference String
    values List<String>

    GetIncidentTemplateExpressionElseBranchResultArrayValue

    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal str
    If set, this is the literal value of the step parameter
    reference str
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter

    GetIncidentTemplateExpressionElseBranchResultValue

    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal str
    If set, this is the literal value of the step parameter
    reference str
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter

    GetIncidentTemplateExpressionOperation

    Branches GetIncidentTemplateExpressionOperationBranches
    Cast GetIncidentTemplateExpressionOperationCast
    The cast target of this operation, set when the operation type is cast
    Concatenate GetIncidentTemplateExpressionOperationConcatenate
    Filter GetIncidentTemplateExpressionOperationFilter
    Navigate GetIncidentTemplateExpressionOperationNavigate
    OperationType string
    The type of the operation. Possible values are: navigate, filter, concatenate, count, min, max, sum, random, first, parse, branches, cast.
    Parse GetIncidentTemplateExpressionOperationParse
    Branches GetIncidentTemplateExpressionOperationBranches
    Cast GetIncidentTemplateExpressionOperationCast
    The cast target of this operation, set when the operation type is cast
    Concatenate GetIncidentTemplateExpressionOperationConcatenate
    Filter GetIncidentTemplateExpressionOperationFilter
    Navigate GetIncidentTemplateExpressionOperationNavigate
    OperationType string
    The type of the operation. Possible values are: navigate, filter, concatenate, count, min, max, sum, random, first, parse, branches, cast.
    Parse GetIncidentTemplateExpressionOperationParse
    branches object
    cast object
    The cast target of this operation, set when the operation type is cast
    concatenate object
    filter object
    navigate object
    operation_type string
    The type of the operation. Possible values are: navigate, filter, concatenate, count, min, max, sum, random, first, parse, branches, cast.
    parse object
    branches GetIncidentTemplateExpressionOperationBranches
    cast GetIncidentTemplateExpressionOperationCast
    The cast target of this operation, set when the operation type is cast
    concatenate GetIncidentTemplateExpressionOperationConcatenate
    filter GetIncidentTemplateExpressionOperationFilter
    navigate GetIncidentTemplateExpressionOperationNavigate
    operationType String
    The type of the operation. Possible values are: navigate, filter, concatenate, count, min, max, sum, random, first, parse, branches, cast.
    parse GetIncidentTemplateExpressionOperationParse
    branches GetIncidentTemplateExpressionOperationBranches
    cast GetIncidentTemplateExpressionOperationCast
    The cast target of this operation, set when the operation type is cast
    concatenate GetIncidentTemplateExpressionOperationConcatenate
    filter GetIncidentTemplateExpressionOperationFilter
    navigate GetIncidentTemplateExpressionOperationNavigate
    operationType string
    The type of the operation. Possible values are: navigate, filter, concatenate, count, min, max, sum, random, first, parse, branches, cast.
    parse GetIncidentTemplateExpressionOperationParse
    branches GetIncidentTemplateExpressionOperationBranches
    cast GetIncidentTemplateExpressionOperationCast
    The cast target of this operation, set when the operation type is cast
    concatenate GetIncidentTemplateExpressionOperationConcatenate
    filter GetIncidentTemplateExpressionOperationFilter
    navigate GetIncidentTemplateExpressionOperationNavigate
    operation_type str
    The type of the operation. Possible values are: navigate, filter, concatenate, count, min, max, sum, random, first, parse, branches, cast.
    parse GetIncidentTemplateExpressionOperationParse
    branches Property Map
    cast Property Map
    The cast target of this operation, set when the operation type is cast
    concatenate Property Map
    filter Property Map
    navigate Property Map
    operationType String
    The type of the operation. Possible values are: navigate, filter, concatenate, count, min, max, sum, random, first, parse, branches, cast.
    parse Property Map

    GetIncidentTemplateExpressionOperationBranches

    branches list(object)
    The branches to apply for this operation
    returns object
    branches List<Property Map>
    The branches to apply for this operation
    returns Property Map

    GetIncidentTemplateExpressionOperationBranchesBranch

    ConditionGroups List<GetIncidentTemplateExpressionOperationBranchesBranchConditionGroup>
    The condition groups to apply in this filter. Only one group needs to be satisfied for the filter to pass.
    Result GetIncidentTemplateExpressionOperationBranchesBranchResult
    ConditionGroups []GetIncidentTemplateExpressionOperationBranchesBranchConditionGroup
    The condition groups to apply in this filter. Only one group needs to be satisfied for the filter to pass.
    Result GetIncidentTemplateExpressionOperationBranchesBranchResult
    condition_groups list(object)
    The condition groups to apply in this filter. Only one group needs to be satisfied for the filter to pass.
    result object
    conditionGroups List<GetIncidentTemplateExpressionOperationBranchesBranchConditionGroup>
    The condition groups to apply in this filter. Only one group needs to be satisfied for the filter to pass.
    result GetIncidentTemplateExpressionOperationBranchesBranchResult
    conditionGroups GetIncidentTemplateExpressionOperationBranchesBranchConditionGroup[]
    The condition groups to apply in this filter. Only one group needs to be satisfied for the filter to pass.
    result GetIncidentTemplateExpressionOperationBranchesBranchResult
    condition_groups Sequence[GetIncidentTemplateExpressionOperationBranchesBranchConditionGroup]
    The condition groups to apply in this filter. Only one group needs to be satisfied for the filter to pass.
    result GetIncidentTemplateExpressionOperationBranchesBranchResult
    conditionGroups List<Property Map>
    The condition groups to apply in this filter. Only one group needs to be satisfied for the filter to pass.
    result Property Map

    GetIncidentTemplateExpressionOperationBranchesBranchConditionGroup

    Conditions List<GetIncidentTemplateExpressionOperationBranchesBranchConditionGroupCondition>
    All conditions in this list must be satisfied for the group to be satisfied
    Conditions []GetIncidentTemplateExpressionOperationBranchesBranchConditionGroupCondition
    All conditions in this list must be satisfied for the group to be satisfied
    conditions list(object)
    All conditions in this list must be satisfied for the group to be satisfied
    conditions List<GetIncidentTemplateExpressionOperationBranchesBranchConditionGroupCondition>
    All conditions in this list must be satisfied for the group to be satisfied
    conditions GetIncidentTemplateExpressionOperationBranchesBranchConditionGroupCondition[]
    All conditions in this list must be satisfied for the group to be satisfied
    conditions Sequence[GetIncidentTemplateExpressionOperationBranchesBranchConditionGroupCondition]
    All conditions in this list must be satisfied for the group to be satisfied
    conditions List<Property Map>
    All conditions in this list must be satisfied for the group to be satisfied

    GetIncidentTemplateExpressionOperationBranchesBranchConditionGroupCondition

    operation string
    param_bindings list(object)
    Bindings for the operation parameters
    subject string
    operation String
    paramBindings List<Property Map>
    Bindings for the operation parameters
    subject String

    GetIncidentTemplateExpressionOperationBranchesBranchConditionGroupConditionParamBinding

    array_values list(object)
    If array*value is set, this helps render the values
    expression_ref string
    value object
    value_literal string
    value_reference string
    values list(string)
    arrayValues List<Property Map>
    If array*value is set, this helps render the values
    expressionRef String
    value Property Map
    valueLiteral String
    valueReference String
    values List<String>

    GetIncidentTemplateExpressionOperationBranchesBranchConditionGroupConditionParamBindingArrayValue

    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal str
    If set, this is the literal value of the step parameter
    reference str
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter

    GetIncidentTemplateExpressionOperationBranchesBranchConditionGroupConditionParamBindingValue

    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal str
    If set, this is the literal value of the step parameter
    reference str
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter

    GetIncidentTemplateExpressionOperationBranchesBranchResult

    array_values list(object)
    If array*value is set, this helps render the values
    expression_ref string
    value object
    value_literal string
    value_reference string
    values list(string)
    arrayValues List<Property Map>
    If array*value is set, this helps render the values
    expressionRef String
    value Property Map
    valueLiteral String
    valueReference String
    values List<String>

    GetIncidentTemplateExpressionOperationBranchesBranchResultArrayValue

    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal str
    If set, this is the literal value of the step parameter
    reference str
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter

    GetIncidentTemplateExpressionOperationBranchesBranchResultValue

    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal str
    If set, this is the literal value of the step parameter
    reference str
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter

    GetIncidentTemplateExpressionOperationBranchesReturns

    Array bool
    Whether the return value should be single or multi-value
    Type string
    Expected return type of this expression (what to try casting the result to)
    Array bool
    Whether the return value should be single or multi-value
    Type string
    Expected return type of this expression (what to try casting the result to)
    array bool
    Whether the return value should be single or multi-value
    type string
    Expected return type of this expression (what to try casting the result to)
    array Boolean
    Whether the return value should be single or multi-value
    type String
    Expected return type of this expression (what to try casting the result to)
    array boolean
    Whether the return value should be single or multi-value
    type string
    Expected return type of this expression (what to try casting the result to)
    array bool
    Whether the return value should be single or multi-value
    type str
    Expected return type of this expression (what to try casting the result to)
    array Boolean
    Whether the return value should be single or multi-value
    type String
    Expected return type of this expression (what to try casting the result to)

    GetIncidentTemplateExpressionOperationCast

    GetIncidentTemplateExpressionOperationCastReturns

    Array bool
    Whether the return value should be single or multi-value
    Type string
    Expected return type of this expression (what to try casting the result to)
    Array bool
    Whether the return value should be single or multi-value
    Type string
    Expected return type of this expression (what to try casting the result to)
    array bool
    Whether the return value should be single or multi-value
    type string
    Expected return type of this expression (what to try casting the result to)
    array Boolean
    Whether the return value should be single or multi-value
    type String
    Expected return type of this expression (what to try casting the result to)
    array boolean
    Whether the return value should be single or multi-value
    type string
    Expected return type of this expression (what to try casting the result to)
    array bool
    Whether the return value should be single or multi-value
    type str
    Expected return type of this expression (what to try casting the result to)
    array Boolean
    Whether the return value should be single or multi-value
    type String
    Expected return type of this expression (what to try casting the result to)

    GetIncidentTemplateExpressionOperationConcatenate

    Reference string
    The reference within the scope to concatenate with
    Reference string
    The reference within the scope to concatenate with
    reference string
    The reference within the scope to concatenate with
    reference String
    The reference within the scope to concatenate with
    reference string
    The reference within the scope to concatenate with
    reference str
    The reference within the scope to concatenate with
    reference String
    The reference within the scope to concatenate with

    GetIncidentTemplateExpressionOperationFilter

    ConditionGroups List<GetIncidentTemplateExpressionOperationFilterConditionGroup>
    The condition groups to apply in this filter. Only one group needs to be satisfied for the filter to pass.
    ConditionGroups []GetIncidentTemplateExpressionOperationFilterConditionGroup
    The condition groups to apply in this filter. Only one group needs to be satisfied for the filter to pass.
    condition_groups list(object)
    The condition groups to apply in this filter. Only one group needs to be satisfied for the filter to pass.
    conditionGroups List<GetIncidentTemplateExpressionOperationFilterConditionGroup>
    The condition groups to apply in this filter. Only one group needs to be satisfied for the filter to pass.
    conditionGroups GetIncidentTemplateExpressionOperationFilterConditionGroup[]
    The condition groups to apply in this filter. Only one group needs to be satisfied for the filter to pass.
    condition_groups Sequence[GetIncidentTemplateExpressionOperationFilterConditionGroup]
    The condition groups to apply in this filter. Only one group needs to be satisfied for the filter to pass.
    conditionGroups List<Property Map>
    The condition groups to apply in this filter. Only one group needs to be satisfied for the filter to pass.

    GetIncidentTemplateExpressionOperationFilterConditionGroup

    Conditions List<GetIncidentTemplateExpressionOperationFilterConditionGroupCondition>
    All conditions in this list must be satisfied for the group to be satisfied
    Conditions []GetIncidentTemplateExpressionOperationFilterConditionGroupCondition
    All conditions in this list must be satisfied for the group to be satisfied
    conditions list(object)
    All conditions in this list must be satisfied for the group to be satisfied
    conditions List<GetIncidentTemplateExpressionOperationFilterConditionGroupCondition>
    All conditions in this list must be satisfied for the group to be satisfied
    conditions GetIncidentTemplateExpressionOperationFilterConditionGroupCondition[]
    All conditions in this list must be satisfied for the group to be satisfied
    conditions Sequence[GetIncidentTemplateExpressionOperationFilterConditionGroupCondition]
    All conditions in this list must be satisfied for the group to be satisfied
    conditions List<Property Map>
    All conditions in this list must be satisfied for the group to be satisfied

    GetIncidentTemplateExpressionOperationFilterConditionGroupCondition

    operation string
    param_bindings list(object)
    Bindings for the operation parameters
    subject string
    operation String
    paramBindings List<Property Map>
    Bindings for the operation parameters
    subject String

    GetIncidentTemplateExpressionOperationFilterConditionGroupConditionParamBinding

    array_values list(object)
    If array*value is set, this helps render the values
    expression_ref string
    value object
    value_literal string
    value_reference string
    values list(string)
    arrayValues List<Property Map>
    If array*value is set, this helps render the values
    expressionRef String
    value Property Map
    valueLiteral String
    valueReference String
    values List<String>

    GetIncidentTemplateExpressionOperationFilterConditionGroupConditionParamBindingArrayValue

    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal str
    If set, this is the literal value of the step parameter
    reference str
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter

    GetIncidentTemplateExpressionOperationFilterConditionGroupConditionParamBindingValue

    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal str
    If set, this is the literal value of the step parameter
    reference str
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter

    GetIncidentTemplateExpressionOperationNavigate

    Reference string
    The reference within the scope to navigate to
    Reference string
    The reference within the scope to navigate to
    reference string
    The reference within the scope to navigate to
    reference String
    The reference within the scope to navigate to
    reference string
    The reference within the scope to navigate to
    reference str
    The reference within the scope to navigate to
    reference String
    The reference within the scope to navigate to

    GetIncidentTemplateExpressionOperationParse

    Returns GetIncidentTemplateExpressionOperationParseReturns
    Source string
    Source expression that is evaluated to a result
    Returns GetIncidentTemplateExpressionOperationParseReturns
    Source string
    Source expression that is evaluated to a result
    returns object
    source string
    Source expression that is evaluated to a result
    returns GetIncidentTemplateExpressionOperationParseReturns
    source String
    Source expression that is evaluated to a result
    returns GetIncidentTemplateExpressionOperationParseReturns
    source string
    Source expression that is evaluated to a result
    returns GetIncidentTemplateExpressionOperationParseReturns
    source str
    Source expression that is evaluated to a result
    returns Property Map
    source String
    Source expression that is evaluated to a result

    GetIncidentTemplateExpressionOperationParseReturns

    Array bool
    Whether the return value should be single or multi-value
    Type string
    Expected return type of this expression (what to try casting the result to)
    Array bool
    Whether the return value should be single or multi-value
    Type string
    Expected return type of this expression (what to try casting the result to)
    array bool
    Whether the return value should be single or multi-value
    type string
    Expected return type of this expression (what to try casting the result to)
    array Boolean
    Whether the return value should be single or multi-value
    type String
    Expected return type of this expression (what to try casting the result to)
    array boolean
    Whether the return value should be single or multi-value
    type string
    Expected return type of this expression (what to try casting the result to)
    array bool
    Whether the return value should be single or multi-value
    type str
    Expected return type of this expression (what to try casting the result to)
    array Boolean
    Whether the return value should be single or multi-value
    type String
    Expected return type of this expression (what to try casting the result to)

    GetIncidentTemplateTemplate

    GetIncidentTemplateTemplateCustomField

    Binding GetIncidentTemplateTemplateCustomFieldBinding
    CustomFieldId string
    ID of the custom field
    MergeStrategy string
    The strategy to use when multiple alerts match this route. Possible values are: first-wins, last-wins, append.
    Binding GetIncidentTemplateTemplateCustomFieldBinding
    CustomFieldId string
    ID of the custom field
    MergeStrategy string
    The strategy to use when multiple alerts match this route. Possible values are: first-wins, last-wins, append.
    binding object
    custom_field_id string
    ID of the custom field
    merge_strategy string
    The strategy to use when multiple alerts match this route. Possible values are: first-wins, last-wins, append.
    binding GetIncidentTemplateTemplateCustomFieldBinding
    customFieldId String
    ID of the custom field
    mergeStrategy String
    The strategy to use when multiple alerts match this route. Possible values are: first-wins, last-wins, append.
    binding GetIncidentTemplateTemplateCustomFieldBinding
    customFieldId string
    ID of the custom field
    mergeStrategy string
    The strategy to use when multiple alerts match this route. Possible values are: first-wins, last-wins, append.
    binding GetIncidentTemplateTemplateCustomFieldBinding
    custom_field_id str
    ID of the custom field
    merge_strategy str
    The strategy to use when multiple alerts match this route. Possible values are: first-wins, last-wins, append.
    binding Property Map
    customFieldId String
    ID of the custom field
    mergeStrategy String
    The strategy to use when multiple alerts match this route. Possible values are: first-wins, last-wins, append.

    GetIncidentTemplateTemplateCustomFieldBinding

    array_values list(object)
    If array*value is set, this helps render the values
    expression_ref string
    value object
    value_literal string
    value_reference string
    values list(string)
    arrayValues List<Property Map>
    If array*value is set, this helps render the values
    expressionRef String
    value Property Map
    valueLiteral String
    valueReference String
    values List<String>

    GetIncidentTemplateTemplateCustomFieldBindingArrayValue

    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal str
    If set, this is the literal value of the step parameter
    reference str
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter

    GetIncidentTemplateTemplateCustomFieldBindingValue

    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal str
    If set, this is the literal value of the step parameter
    reference str
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter

    GetIncidentTemplateTemplateIncidentMode

    array_values list(object)
    If array*value is set, this helps render the values
    expression_ref string
    value object
    value_literal string
    value_reference string
    values list(string)
    arrayValues List<Property Map>
    If array*value is set, this helps render the values
    expressionRef String
    value Property Map
    valueLiteral String
    valueReference String
    values List<String>

    GetIncidentTemplateTemplateIncidentModeArrayValue

    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal str
    If set, this is the literal value of the step parameter
    reference str
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter

    GetIncidentTemplateTemplateIncidentModeValue

    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal str
    If set, this is the literal value of the step parameter
    reference str
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter

    GetIncidentTemplateTemplateIncidentType

    array_values list(object)
    If array*value is set, this helps render the values
    expression_ref string
    value object
    value_literal string
    value_reference string
    values list(string)
    arrayValues List<Property Map>
    If array*value is set, this helps render the values
    expressionRef String
    value Property Map
    valueLiteral String
    valueReference String
    values List<String>

    GetIncidentTemplateTemplateIncidentTypeArrayValue

    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal str
    If set, this is the literal value of the step parameter
    reference str
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter

    GetIncidentTemplateTemplateIncidentTypeValue

    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal str
    If set, this is the literal value of the step parameter
    reference str
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter

    GetIncidentTemplateTemplateName

    ArrayValues List<GetIncidentTemplateTemplateNameArrayValue>
    The array of literal or reference parameter values
    Autogenerated bool
    Whether this attribute should be autogenerated using AI
    Value GetIncidentTemplateTemplateNameValue
    The literal or reference parameter value
    ArrayValues []GetIncidentTemplateTemplateNameArrayValue
    The array of literal or reference parameter values
    Autogenerated bool
    Whether this attribute should be autogenerated using AI
    Value GetIncidentTemplateTemplateNameValue
    The literal or reference parameter value
    array_values list(object)
    The array of literal or reference parameter values
    autogenerated bool
    Whether this attribute should be autogenerated using AI
    value object
    The literal or reference parameter value
    arrayValues List<GetIncidentTemplateTemplateNameArrayValue>
    The array of literal or reference parameter values
    autogenerated Boolean
    Whether this attribute should be autogenerated using AI
    value GetIncidentTemplateTemplateNameValue
    The literal or reference parameter value
    arrayValues GetIncidentTemplateTemplateNameArrayValue[]
    The array of literal or reference parameter values
    autogenerated boolean
    Whether this attribute should be autogenerated using AI
    value GetIncidentTemplateTemplateNameValue
    The literal or reference parameter value
    array_values Sequence[GetIncidentTemplateTemplateNameArrayValue]
    The array of literal or reference parameter values
    autogenerated bool
    Whether this attribute should be autogenerated using AI
    value GetIncidentTemplateTemplateNameValue
    The literal or reference parameter value
    arrayValues List<Property Map>
    The array of literal or reference parameter values
    autogenerated Boolean
    Whether this attribute should be autogenerated using AI
    value Property Map
    The literal or reference parameter value

    GetIncidentTemplateTemplateNameArrayValue

    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal str
    If set, this is the literal value of the step parameter
    reference str
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter

    GetIncidentTemplateTemplateNameValue

    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal str
    If set, this is the literal value of the step parameter
    reference str
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter

    GetIncidentTemplateTemplateSeverity

    Binding GetIncidentTemplateTemplateSeverityBinding
    MergeStrategy string
    Strategy for merging severity when multiple alerts create/update the same incident. Possible values are: first-wins, max.
    Binding GetIncidentTemplateTemplateSeverityBinding
    MergeStrategy string
    Strategy for merging severity when multiple alerts create/update the same incident. Possible values are: first-wins, max.
    binding object
    merge_strategy string
    Strategy for merging severity when multiple alerts create/update the same incident. Possible values are: first-wins, max.
    binding GetIncidentTemplateTemplateSeverityBinding
    mergeStrategy String
    Strategy for merging severity when multiple alerts create/update the same incident. Possible values are: first-wins, max.
    binding GetIncidentTemplateTemplateSeverityBinding
    mergeStrategy string
    Strategy for merging severity when multiple alerts create/update the same incident. Possible values are: first-wins, max.
    binding GetIncidentTemplateTemplateSeverityBinding
    merge_strategy str
    Strategy for merging severity when multiple alerts create/update the same incident. Possible values are: first-wins, max.
    binding Property Map
    mergeStrategy String
    Strategy for merging severity when multiple alerts create/update the same incident. Possible values are: first-wins, max.

    GetIncidentTemplateTemplateSeverityBinding

    array_values list(object)
    If array*value is set, this helps render the values
    expression_ref string
    value object
    value_literal string
    value_reference string
    values list(string)
    arrayValues List<Property Map>
    If array*value is set, this helps render the values
    expressionRef String
    value Property Map
    valueLiteral String
    valueReference String
    values List<String>

    GetIncidentTemplateTemplateSeverityBindingArrayValue

    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal str
    If set, this is the literal value of the step parameter
    reference str
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter

    GetIncidentTemplateTemplateSeverityBindingValue

    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal str
    If set, this is the literal value of the step parameter
    reference str
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter

    GetIncidentTemplateTemplateStartInTriage

    array_values list(object)
    If array*value is set, this helps render the values
    expression_ref string
    value object
    value_literal string
    value_reference string
    values list(string)
    arrayValues List<Property Map>
    If array*value is set, this helps render the values
    expressionRef String
    value Property Map
    valueLiteral String
    valueReference String
    values List<String>

    GetIncidentTemplateTemplateStartInTriageArrayValue

    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal str
    If set, this is the literal value of the step parameter
    reference str
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter

    GetIncidentTemplateTemplateStartInTriageValue

    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal str
    If set, this is the literal value of the step parameter
    reference str
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter

    GetIncidentTemplateTemplateSummary

    ArrayValues List<GetIncidentTemplateTemplateSummaryArrayValue>
    The array of literal or reference parameter values
    Autogenerated bool
    Whether this attribute should be autogenerated using AI
    Value GetIncidentTemplateTemplateSummaryValue
    The literal or reference parameter value
    ArrayValues []GetIncidentTemplateTemplateSummaryArrayValue
    The array of literal or reference parameter values
    Autogenerated bool
    Whether this attribute should be autogenerated using AI
    Value GetIncidentTemplateTemplateSummaryValue
    The literal or reference parameter value
    array_values list(object)
    The array of literal or reference parameter values
    autogenerated bool
    Whether this attribute should be autogenerated using AI
    value object
    The literal or reference parameter value
    arrayValues List<GetIncidentTemplateTemplateSummaryArrayValue>
    The array of literal or reference parameter values
    autogenerated Boolean
    Whether this attribute should be autogenerated using AI
    value GetIncidentTemplateTemplateSummaryValue
    The literal or reference parameter value
    arrayValues GetIncidentTemplateTemplateSummaryArrayValue[]
    The array of literal or reference parameter values
    autogenerated boolean
    Whether this attribute should be autogenerated using AI
    value GetIncidentTemplateTemplateSummaryValue
    The literal or reference parameter value
    array_values Sequence[GetIncidentTemplateTemplateSummaryArrayValue]
    The array of literal or reference parameter values
    autogenerated bool
    Whether this attribute should be autogenerated using AI
    value GetIncidentTemplateTemplateSummaryValue
    The literal or reference parameter value
    arrayValues List<Property Map>
    The array of literal or reference parameter values
    autogenerated Boolean
    Whether this attribute should be autogenerated using AI
    value Property Map
    The literal or reference parameter value

    GetIncidentTemplateTemplateSummaryArrayValue

    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal str
    If set, this is the literal value of the step parameter
    reference str
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter

    GetIncidentTemplateTemplateSummaryValue

    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal str
    If set, this is the literal value of the step parameter
    reference str
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter

    GetIncidentTemplateTemplateWorkspace

    array_values list(object)
    If array*value is set, this helps render the values
    expression_ref string
    value object
    value_literal string
    value_reference string
    values list(string)
    arrayValues List<Property Map>
    If array*value is set, this helps render the values
    expressionRef String
    value Property Map
    valueLiteral String
    valueReference String
    values List<String>

    GetIncidentTemplateTemplateWorkspaceArrayValue

    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal str
    If set, this is the literal value of the step parameter
    reference str
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter

    GetIncidentTemplateTemplateWorkspaceValue

    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    Literal string
    If set, this is the literal value of the step parameter
    Reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal string
    If set, this is the literal value of the step parameter
    reference string
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal str
    If set, this is the literal value of the step parameter
    reference str
    If set, this is the reference into the trigger scope that is the value of this parameter
    literal String
    If set, this is the literal value of the step parameter
    reference String
    If set, this is the reference into the trigger scope that is the value of this parameter

    Package Details

    Repository
    incident incident-io/terraform-provider-incident
    License
    Notes
    This Pulumi package is based on the incident Terraform Provider.
    Viewing docs for incident 7.0.0
    published on Friday, Sep 11, 2026 by incident-io

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial