1. Packages
  2. Packages
  3. Datadog Provider
  4. API Docs
  5. IncidentType
Viewing docs for Datadog v5.10.0
published on Thursday, Jul 30, 2026 by Pulumi
datadog logo
Viewing docs for Datadog v5.10.0
published on Thursday, Jul 30, 2026 by Pulumi

    Provides a Datadog incident type resource. This can be used to create and manage Datadog incident types.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as datadog from "@pulumi/datadog";
    
    // Basic incident type
    const example = new datadog.IncidentType("example", {
        name: "Security Incident",
        description: "Security-related incidents requiring immediate attention",
        isDefault: false,
    });
    // Incident type with the full configuration block shown at its default values.
    // Every field is optional; omitted fields fall back to these same defaults.
    const withConfiguration = new datadog.IncidentType("with_configuration", {
        name: "Customer Impacting",
        description: "Incidents that impact customers",
        configuration: {
            private_incidents: false,
            private_incidents_by_default: false,
            allow_workflows: true,
            allow_incident_deletion: false,
            editable_timestamps: false,
            test_incidents: true,
            create_message: "",
            slug_source: "default",
        },
    });
    
    import pulumi
    import pulumi_datadog as datadog
    
    # Basic incident type
    example = datadog.IncidentType("example",
        name="Security Incident",
        description="Security-related incidents requiring immediate attention",
        is_default=False)
    # Incident type with the full configuration block shown at its default values.
    # Every field is optional; omitted fields fall back to these same defaults.
    with_configuration = datadog.IncidentType("with_configuration",
        name="Customer Impacting",
        description="Incidents that impact customers",
        configuration={
            "private_incidents": False,
            "private_incidents_by_default": False,
            "allow_workflows": True,
            "allow_incident_deletion": False,
            "editable_timestamps": False,
            "test_incidents": True,
            "create_message": "",
            "slug_source": "default",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-datadog/sdk/v5/go/datadog"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Basic incident type
    		_, err := datadog.NewIncidentType(ctx, "example", &datadog.IncidentTypeArgs{
    			Name:        pulumi.String("Security Incident"),
    			Description: pulumi.String("Security-related incidents requiring immediate attention"),
    			IsDefault:   pulumi.Bool(false),
    		})
    		if err != nil {
    			return err
    		}
    		// Incident type with the full configuration block shown at its default values.
    		// Every field is optional; omitted fields fall back to these same defaults.
    		_, err = datadog.NewIncidentType(ctx, "with_configuration", &datadog.IncidentTypeArgs{
    			Name:        pulumi.String("Customer Impacting"),
    			Description: pulumi.String("Incidents that impact customers"),
    			Configuration: &datadog.IncidentTypeConfigurationArgs{
    				Private_incidents:            false,
    				Private_incidents_by_default: false,
    				Allow_workflows:              true,
    				Allow_incident_deletion:      false,
    				Editable_timestamps:          false,
    				Test_incidents:               true,
    				Create_message:               "",
    				Slug_source:                  "default",
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Datadog = Pulumi.Datadog;
    
    return await Deployment.RunAsync(() => 
    {
        // Basic incident type
        var example = new Datadog.IncidentType("example", new()
        {
            Name = "Security Incident",
            Description = "Security-related incidents requiring immediate attention",
            IsDefault = false,
        });
    
        // Incident type with the full configuration block shown at its default values.
        // Every field is optional; omitted fields fall back to these same defaults.
        var withConfiguration = new Datadog.IncidentType("with_configuration", new()
        {
            Name = "Customer Impacting",
            Description = "Incidents that impact customers",
            Configuration = new Datadog.Inputs.IncidentTypeConfigurationArgs
            {
                Private_incidents = false,
                Private_incidents_by_default = false,
                Allow_workflows = true,
                Allow_incident_deletion = false,
                Editable_timestamps = false,
                Test_incidents = true,
                Create_message = "",
                Slug_source = "default",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.datadog.IncidentType;
    import com.pulumi.datadog.IncidentTypeArgs;
    import com.pulumi.datadog.inputs.IncidentTypeConfigurationArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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) {
            // Basic incident type
            var example = new IncidentType("example", IncidentTypeArgs.builder()
                .name("Security Incident")
                .description("Security-related incidents requiring immediate attention")
                .isDefault(false)
                .build());
    
            // Incident type with the full configuration block shown at its default values.
            // Every field is optional; omitted fields fall back to these same defaults.
            var withConfiguration = new IncidentType("withConfiguration", IncidentTypeArgs.builder()
                .name("Customer Impacting")
                .description("Incidents that impact customers")
                .configuration(IncidentTypeConfigurationArgs.builder()
                    .private_incidents(false)
                    .private_incidents_by_default(false)
                    .allow_workflows(true)
                    .allow_incident_deletion(false)
                    .editable_timestamps(false)
                    .test_incidents(true)
                    .create_message("")
                    .slug_source("default")
                    .build())
                .build());
    
        }
    }
    
    resources:
      # Basic incident type
      example:
        type: datadog:IncidentType
        properties:
          name: Security Incident
          description: Security-related incidents requiring immediate attention
          isDefault: false
      # Incident type with the full configuration block shown at its default values.
      # Every field is optional; omitted fields fall back to these same defaults.
      withConfiguration:
        type: datadog:IncidentType
        name: with_configuration
        properties:
          name: Customer Impacting
          description: Incidents that impact customers
          configuration:
            private_incidents: false
            private_incidents_by_default: false
            allow_workflows: true
            allow_incident_deletion: false
            editable_timestamps: false
            test_incidents: true
            create_message: ""
            slug_source: default
    
    pulumi {
      required_providers {
        datadog = {
          source = "pulumi/datadog"
        }
      }
    }
    
    # Basic incident type
    resource "datadog_incidenttype" "example" {
      name        = "Security Incident"
      description = "Security-related incidents requiring immediate attention"
      is_default  = false
    }
    # Incident type with the full configuration block shown at its default values.
    # Every field is optional; omitted fields fall back to these same defaults.
    resource "datadog_incidenttype" "with_configuration" {
      name        = "Customer Impacting"
      description = "Incidents that impact customers"
      configuration = {
        private_incidents            = false
        private_incidents_by_default = false
        allow_workflows              = true
        allow_incident_deletion      = false
        editable_timestamps          = false
        test_incidents               = true
        create_message               = ""
        slug_source                  = "default"
      }
    }
    

    Create IncidentType Resource

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

    Constructor syntax

    new IncidentType(name: string, args: IncidentTypeArgs, opts?: CustomResourceOptions);
    @overload
    def IncidentType(resource_name: str,
                     args: IncidentTypeArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def IncidentType(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     name: Optional[str] = None,
                     configuration: Optional[IncidentTypeConfigurationArgs] = None,
                     description: Optional[str] = None,
                     is_default: Optional[bool] = None)
    func NewIncidentType(ctx *Context, name string, args IncidentTypeArgs, opts ...ResourceOption) (*IncidentType, error)
    public IncidentType(string name, IncidentTypeArgs args, CustomResourceOptions? opts = null)
    public IncidentType(String name, IncidentTypeArgs args)
    public IncidentType(String name, IncidentTypeArgs args, CustomResourceOptions options)
    
    type: datadog:IncidentType
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "datadog_incident_type" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args IncidentTypeArgs
    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 IncidentTypeArgs
    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 IncidentTypeArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IncidentTypeArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IncidentTypeArgs
    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 incidentTypeResource = new Datadog.IncidentType("incidentTypeResource", new()
    {
        Name = "string",
        Configuration = new Datadog.Inputs.IncidentTypeConfigurationArgs
        {
            AllowIncidentDeletion = false,
            AllowWorkflows = false,
            CreateMessage = "string",
            EditableTimestamps = false,
            PrivateIncidents = false,
            PrivateIncidentsByDefault = false,
            SlugSource = "string",
            TestIncidents = false,
        },
        Description = "string",
        IsDefault = false,
    });
    
    example, err := datadog.NewIncidentType(ctx, "incidentTypeResource", &datadog.IncidentTypeArgs{
    	Name: pulumi.String("string"),
    	Configuration: &datadog.IncidentTypeConfigurationArgs{
    		AllowIncidentDeletion:     pulumi.Bool(false),
    		AllowWorkflows:            pulumi.Bool(false),
    		CreateMessage:             pulumi.String("string"),
    		EditableTimestamps:        pulumi.Bool(false),
    		PrivateIncidents:          pulumi.Bool(false),
    		PrivateIncidentsByDefault: pulumi.Bool(false),
    		SlugSource:                pulumi.String("string"),
    		TestIncidents:             pulumi.Bool(false),
    	},
    	Description: pulumi.String("string"),
    	IsDefault:   pulumi.Bool(false),
    })
    
    resource "datadog_incident_type" "incidentTypeResource" {
      lifecycle {
        create_before_destroy = true
      }
      name = "string"
      configuration = {
        allow_incident_deletion      = false
        allow_workflows              = false
        create_message               = "string"
        editable_timestamps          = false
        private_incidents            = false
        private_incidents_by_default = false
        slug_source                  = "string"
        test_incidents               = false
      }
      description = "string"
      is_default  = false
    }
    
    var incidentTypeResource = new IncidentType("incidentTypeResource", IncidentTypeArgs.builder()
        .name("string")
        .configuration(IncidentTypeConfigurationArgs.builder()
            .allowIncidentDeletion(false)
            .allowWorkflows(false)
            .createMessage("string")
            .editableTimestamps(false)
            .privateIncidents(false)
            .privateIncidentsByDefault(false)
            .slugSource("string")
            .testIncidents(false)
            .build())
        .description("string")
        .isDefault(false)
        .build());
    
    incident_type_resource = datadog.IncidentType("incidentTypeResource",
        name="string",
        configuration={
            "allow_incident_deletion": False,
            "allow_workflows": False,
            "create_message": "string",
            "editable_timestamps": False,
            "private_incidents": False,
            "private_incidents_by_default": False,
            "slug_source": "string",
            "test_incidents": False,
        },
        description="string",
        is_default=False)
    
    const incidentTypeResource = new datadog.IncidentType("incidentTypeResource", {
        name: "string",
        configuration: {
            allowIncidentDeletion: false,
            allowWorkflows: false,
            createMessage: "string",
            editableTimestamps: false,
            privateIncidents: false,
            privateIncidentsByDefault: false,
            slugSource: "string",
            testIncidents: false,
        },
        description: "string",
        isDefault: false,
    });
    
    type: datadog:IncidentType
    properties:
        configuration:
            allowIncidentDeletion: false
            allowWorkflows: false
            createMessage: string
            editableTimestamps: false
            privateIncidents: false
            privateIncidentsByDefault: false
            slugSource: string
            testIncidents: false
        description: string
        isDefault: false
        name: string
    

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

    Name string
    Name of the incident type. Must be between 1 and 50 characters.
    Configuration IncidentTypeConfiguration
    The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
    Description string
    Description of the incident type. The description can have a maximum of 512 characters.
    IsDefault bool
    Whether this incident type is the default type.
    Name string
    Name of the incident type. Must be between 1 and 50 characters.
    Configuration IncidentTypeConfigurationArgs
    The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
    Description string
    Description of the incident type. The description can have a maximum of 512 characters.
    IsDefault bool
    Whether this incident type is the default type.
    name string
    Name of the incident type. Must be between 1 and 50 characters.
    configuration object
    The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
    description string
    Description of the incident type. The description can have a maximum of 512 characters.
    is_default bool
    Whether this incident type is the default type.
    name String
    Name of the incident type. Must be between 1 and 50 characters.
    configuration IncidentTypeConfiguration
    The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
    description String
    Description of the incident type. The description can have a maximum of 512 characters.
    isDefault Boolean
    Whether this incident type is the default type.
    name string
    Name of the incident type. Must be between 1 and 50 characters.
    configuration IncidentTypeConfiguration
    The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
    description string
    Description of the incident type. The description can have a maximum of 512 characters.
    isDefault boolean
    Whether this incident type is the default type.
    name str
    Name of the incident type. Must be between 1 and 50 characters.
    configuration IncidentTypeConfigurationArgs
    The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
    description str
    Description of the incident type. The description can have a maximum of 512 characters.
    is_default bool
    Whether this incident type is the default type.
    name String
    Name of the incident type. Must be between 1 and 50 characters.
    configuration Property Map
    The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
    description String
    Description of the incident type. The description can have a maximum of 512 characters.
    isDefault Boolean
    Whether this incident type is the default type.

    Outputs

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

    Get an existing IncidentType 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?: IncidentTypeState, opts?: CustomResourceOptions): IncidentType
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            configuration: Optional[IncidentTypeConfigurationArgs] = None,
            description: Optional[str] = None,
            is_default: Optional[bool] = None,
            name: Optional[str] = None) -> IncidentType
    func GetIncidentType(ctx *Context, name string, id IDInput, state *IncidentTypeState, opts ...ResourceOption) (*IncidentType, error)
    public static IncidentType Get(string name, Input<string> id, IncidentTypeState? state, CustomResourceOptions? opts = null)
    public static IncidentType get(String name, Output<String> id, IncidentTypeState state, CustomResourceOptions options)
    resources:  _:    type: datadog:IncidentType    get:      id: ${id}
    import {
      to = datadog_incident_type.example
      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.
    The following state arguments are supported:
    Configuration IncidentTypeConfiguration
    The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
    Description string
    Description of the incident type. The description can have a maximum of 512 characters.
    IsDefault bool
    Whether this incident type is the default type.
    Name string
    Name of the incident type. Must be between 1 and 50 characters.
    Configuration IncidentTypeConfigurationArgs
    The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
    Description string
    Description of the incident type. The description can have a maximum of 512 characters.
    IsDefault bool
    Whether this incident type is the default type.
    Name string
    Name of the incident type. Must be between 1 and 50 characters.
    configuration object
    The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
    description string
    Description of the incident type. The description can have a maximum of 512 characters.
    is_default bool
    Whether this incident type is the default type.
    name string
    Name of the incident type. Must be between 1 and 50 characters.
    configuration IncidentTypeConfiguration
    The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
    description String
    Description of the incident type. The description can have a maximum of 512 characters.
    isDefault Boolean
    Whether this incident type is the default type.
    name String
    Name of the incident type. Must be between 1 and 50 characters.
    configuration IncidentTypeConfiguration
    The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
    description string
    Description of the incident type. The description can have a maximum of 512 characters.
    isDefault boolean
    Whether this incident type is the default type.
    name string
    Name of the incident type. Must be between 1 and 50 characters.
    configuration IncidentTypeConfigurationArgs
    The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
    description str
    Description of the incident type. The description can have a maximum of 512 characters.
    is_default bool
    Whether this incident type is the default type.
    name str
    Name of the incident type. Must be between 1 and 50 characters.
    configuration Property Map
    The incident type's behavior settings. Any field left unset takes its server-side default. This block is applied in a separate call after the incident type is created.
    description String
    Description of the incident type. The description can have a maximum of 512 characters.
    isDefault Boolean
    Whether this incident type is the default type.
    name String
    Name of the incident type. Must be between 1 and 50 characters.

    Supporting Types

    IncidentTypeConfiguration, IncidentTypeConfigurationArgs

    AllowIncidentDeletion bool
    Whether incidents of this type can be deleted. Defaults to false.
    AllowWorkflows bool
    Whether users can manually run a workflow from an incident of this type. Defaults to true.
    CreateMessage string
    An optional message shown to users when they declare an incident of this type. Defaults to an empty string.
    EditableTimestamps bool
    Whether responders can edit incident timestamps for incidents of this type. Defaults to false.
    PrivateIncidents bool
    Whether responders can create private incidents of this type. Defaults to false.
    PrivateIncidentsByDefault bool
    Whether the private toggle is enabled by default in the incident creation modal for this type. Defaults to false.
    SlugSource string
    The source used to derive the incident slug. When set to servicenow, incidents display the ServiceNow record ID instead of the public ID. If no ServiceNow integration exists, the public ID is displayed. Defaults to default. Valid values are default, servicenow.
    TestIncidents bool
    Whether test incidents of this type can be created. Defaults to true.
    AllowIncidentDeletion bool
    Whether incidents of this type can be deleted. Defaults to false.
    AllowWorkflows bool
    Whether users can manually run a workflow from an incident of this type. Defaults to true.
    CreateMessage string
    An optional message shown to users when they declare an incident of this type. Defaults to an empty string.
    EditableTimestamps bool
    Whether responders can edit incident timestamps for incidents of this type. Defaults to false.
    PrivateIncidents bool
    Whether responders can create private incidents of this type. Defaults to false.
    PrivateIncidentsByDefault bool
    Whether the private toggle is enabled by default in the incident creation modal for this type. Defaults to false.
    SlugSource string
    The source used to derive the incident slug. When set to servicenow, incidents display the ServiceNow record ID instead of the public ID. If no ServiceNow integration exists, the public ID is displayed. Defaults to default. Valid values are default, servicenow.
    TestIncidents bool
    Whether test incidents of this type can be created. Defaults to true.
    allow_incident_deletion bool
    Whether incidents of this type can be deleted. Defaults to false.
    allow_workflows bool
    Whether users can manually run a workflow from an incident of this type. Defaults to true.
    create_message string
    An optional message shown to users when they declare an incident of this type. Defaults to an empty string.
    editable_timestamps bool
    Whether responders can edit incident timestamps for incidents of this type. Defaults to false.
    private_incidents bool
    Whether responders can create private incidents of this type. Defaults to false.
    private_incidents_by_default bool
    Whether the private toggle is enabled by default in the incident creation modal for this type. Defaults to false.
    slug_source string
    The source used to derive the incident slug. When set to servicenow, incidents display the ServiceNow record ID instead of the public ID. If no ServiceNow integration exists, the public ID is displayed. Defaults to default. Valid values are default, servicenow.
    test_incidents bool
    Whether test incidents of this type can be created. Defaults to true.
    allowIncidentDeletion Boolean
    Whether incidents of this type can be deleted. Defaults to false.
    allowWorkflows Boolean
    Whether users can manually run a workflow from an incident of this type. Defaults to true.
    createMessage String
    An optional message shown to users when they declare an incident of this type. Defaults to an empty string.
    editableTimestamps Boolean
    Whether responders can edit incident timestamps for incidents of this type. Defaults to false.
    privateIncidents Boolean
    Whether responders can create private incidents of this type. Defaults to false.
    privateIncidentsByDefault Boolean
    Whether the private toggle is enabled by default in the incident creation modal for this type. Defaults to false.
    slugSource String
    The source used to derive the incident slug. When set to servicenow, incidents display the ServiceNow record ID instead of the public ID. If no ServiceNow integration exists, the public ID is displayed. Defaults to default. Valid values are default, servicenow.
    testIncidents Boolean
    Whether test incidents of this type can be created. Defaults to true.
    allowIncidentDeletion boolean
    Whether incidents of this type can be deleted. Defaults to false.
    allowWorkflows boolean
    Whether users can manually run a workflow from an incident of this type. Defaults to true.
    createMessage string
    An optional message shown to users when they declare an incident of this type. Defaults to an empty string.
    editableTimestamps boolean
    Whether responders can edit incident timestamps for incidents of this type. Defaults to false.
    privateIncidents boolean
    Whether responders can create private incidents of this type. Defaults to false.
    privateIncidentsByDefault boolean
    Whether the private toggle is enabled by default in the incident creation modal for this type. Defaults to false.
    slugSource string
    The source used to derive the incident slug. When set to servicenow, incidents display the ServiceNow record ID instead of the public ID. If no ServiceNow integration exists, the public ID is displayed. Defaults to default. Valid values are default, servicenow.
    testIncidents boolean
    Whether test incidents of this type can be created. Defaults to true.
    allow_incident_deletion bool
    Whether incidents of this type can be deleted. Defaults to false.
    allow_workflows bool
    Whether users can manually run a workflow from an incident of this type. Defaults to true.
    create_message str
    An optional message shown to users when they declare an incident of this type. Defaults to an empty string.
    editable_timestamps bool
    Whether responders can edit incident timestamps for incidents of this type. Defaults to false.
    private_incidents bool
    Whether responders can create private incidents of this type. Defaults to false.
    private_incidents_by_default bool
    Whether the private toggle is enabled by default in the incident creation modal for this type. Defaults to false.
    slug_source str
    The source used to derive the incident slug. When set to servicenow, incidents display the ServiceNow record ID instead of the public ID. If no ServiceNow integration exists, the public ID is displayed. Defaults to default. Valid values are default, servicenow.
    test_incidents bool
    Whether test incidents of this type can be created. Defaults to true.
    allowIncidentDeletion Boolean
    Whether incidents of this type can be deleted. Defaults to false.
    allowWorkflows Boolean
    Whether users can manually run a workflow from an incident of this type. Defaults to true.
    createMessage String
    An optional message shown to users when they declare an incident of this type. Defaults to an empty string.
    editableTimestamps Boolean
    Whether responders can edit incident timestamps for incidents of this type. Defaults to false.
    privateIncidents Boolean
    Whether responders can create private incidents of this type. Defaults to false.
    privateIncidentsByDefault Boolean
    Whether the private toggle is enabled by default in the incident creation modal for this type. Defaults to false.
    slugSource String
    The source used to derive the incident slug. When set to servicenow, incidents display the ServiceNow record ID instead of the public ID. If no ServiceNow integration exists, the public ID is displayed. Defaults to default. Valid values are default, servicenow.
    testIncidents Boolean
    Whether test incidents of this type can be created. Defaults to true.

    Import

    The pulumi import command can be used, for example:

    $ pulumi import datadog:index/incidentType:IncidentType example "12345678-1234-1234-1234-1234567890ab"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Datadog pulumi/pulumi-datadog
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the datadog Terraform Provider.
    datadog logo
    Viewing docs for Datadog v5.10.0
    published on Thursday, Jul 30, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial