1. Registry
  2. Packages
  3. Datadog Provider
  4. API Docs
  5. StatusPageDegradationTemplate
Viewing docs for Datadog v5.11.0
published on Tuesday, Sep 15, 2026 by Pulumi
datadog logo
Viewing docs for Datadog v5.11.0
published on Tuesday, Sep 15, 2026 by Pulumi

    Provides a Datadog status page degradation template resource. This can be used to create and manage pre-filled templates for degradations on a status page.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as datadog from "@pulumi/datadog";
    
    // Create new datadog_status_page_degradation_template resource
    const acmeStatusPage = new datadog.StatusPage("acme_status_page", {
        name: "Acme Status",
        type: "public",
        domainPrefix: "acme-status",
        visualizationType: "bars_and_uptime_percentage",
    });
    const acmeApi = new datadog.StatusPageComponent("acme_api", {
        pageId: acmeStatusPage.id,
        name: "API",
        type: "component",
        position: 0,
    });
    const acmeDegradationTemplate = new datadog.StatusPageDegradationTemplate("acme_degradation_template", {
        pageId: acmeStatusPage.id,
        name: "Acme API Degradation",
        degradationTitle: "Acme API is degraded",
        componentsAffecteds: [{
            id: acmeApi.id,
            status: "degraded",
        }],
        updates: [
            {
                message: "We are investigating issues with the Acme API.",
                status: "investigating",
            },
            {
                message: "We have resolved the Acme API issues.",
                status: "resolved",
            },
        ],
    });
    
    import pulumi
    import pulumi_datadog as datadog
    
    # Create new datadog_status_page_degradation_template resource
    acme_status_page = datadog.StatusPage("acme_status_page",
        name="Acme Status",
        type="public",
        domain_prefix="acme-status",
        visualization_type="bars_and_uptime_percentage")
    acme_api = datadog.StatusPageComponent("acme_api",
        page_id=acme_status_page.id,
        name="API",
        type="component",
        position=0)
    acme_degradation_template = datadog.StatusPageDegradationTemplate("acme_degradation_template",
        page_id=acme_status_page.id,
        name="Acme API Degradation",
        degradation_title="Acme API is degraded",
        components_affecteds=[{
            "id": acme_api.id,
            "status": "degraded",
        }],
        updates=[
            {
                "message": "We are investigating issues with the Acme API.",
                "status": "investigating",
            },
            {
                "message": "We have resolved the Acme API issues.",
                "status": "resolved",
            },
        ])
    
    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 {
    		// Create new datadog_status_page_degradation_template resource
    		acmeStatusPage, err := datadog.NewStatusPage(ctx, "acme_status_page", &datadog.StatusPageArgs{
    			Name:              pulumi.String("Acme Status"),
    			Type:              pulumi.String("public"),
    			DomainPrefix:      pulumi.String("acme-status"),
    			VisualizationType: pulumi.String("bars_and_uptime_percentage"),
    		})
    		if err != nil {
    			return err
    		}
    		acmeApi, err := datadog.NewStatusPageComponent(ctx, "acme_api", &datadog.StatusPageComponentArgs{
    			PageId:   acmeStatusPage.ID().ToIDOutput().ToStringOutput(),
    			Name:     pulumi.String("API"),
    			Type:     pulumi.String("component"),
    			Position: pulumi.Int(0),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = datadog.NewStatusPageDegradationTemplate(ctx, "acme_degradation_template", &datadog.StatusPageDegradationTemplateArgs{
    			PageId:           acmeStatusPage.ID().ToIDOutput().ToStringOutput(),
    			Name:             pulumi.String("Acme API Degradation"),
    			DegradationTitle: pulumi.String("Acme API is degraded"),
    			ComponentsAffecteds: datadog.StatusPageDegradationTemplateComponentsAffectedArray{
    				&datadog.StatusPageDegradationTemplateComponentsAffectedArgs{
    					Id:     acmeApi.ID().ToIDOutput().ToStringOutput(),
    					Status: pulumi.String("degraded"),
    				},
    			},
    			Updates: datadog.StatusPageDegradationTemplateUpdateArray{
    				&datadog.StatusPageDegradationTemplateUpdateArgs{
    					Message: pulumi.String("We are investigating issues with the Acme API."),
    					Status:  pulumi.String("investigating"),
    				},
    				&datadog.StatusPageDegradationTemplateUpdateArgs{
    					Message: pulumi.String("We have resolved the Acme API issues."),
    					Status:  pulumi.String("resolved"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Datadog = Pulumi.Datadog;
    
    return await Deployment.RunAsync(() => 
    {
        // Create new datadog_status_page_degradation_template resource
        var acmeStatusPage = new Datadog.StatusPage("acme_status_page", new()
        {
            Name = "Acme Status",
            Type = "public",
            DomainPrefix = "acme-status",
            VisualizationType = "bars_and_uptime_percentage",
        });
    
        var acmeApi = new Datadog.StatusPageComponent("acme_api", new()
        {
            PageId = acmeStatusPage.Id,
            Name = "API",
            Type = "component",
            Position = 0,
        });
    
        var acmeDegradationTemplate = new Datadog.StatusPageDegradationTemplate("acme_degradation_template", new()
        {
            PageId = acmeStatusPage.Id,
            Name = "Acme API Degradation",
            DegradationTitle = "Acme API is degraded",
            ComponentsAffecteds = new[]
            {
                new Datadog.Inputs.StatusPageDegradationTemplateComponentsAffectedArgs
                {
                    Id = acmeApi.Id,
                    Status = "degraded",
                },
            },
            Updates = new[]
            {
                new Datadog.Inputs.StatusPageDegradationTemplateUpdateArgs
                {
                    Message = "We are investigating issues with the Acme API.",
                    Status = "investigating",
                },
                new Datadog.Inputs.StatusPageDegradationTemplateUpdateArgs
                {
                    Message = "We have resolved the Acme API issues.",
                    Status = "resolved",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.datadog.StatusPage;
    import com.pulumi.datadog.StatusPageArgs;
    import com.pulumi.datadog.StatusPageComponent;
    import com.pulumi.datadog.StatusPageComponentArgs;
    import com.pulumi.datadog.StatusPageDegradationTemplate;
    import com.pulumi.datadog.StatusPageDegradationTemplateArgs;
    import com.pulumi.datadog.inputs.StatusPageDegradationTemplateComponentsAffectedArgs;
    import com.pulumi.datadog.inputs.StatusPageDegradationTemplateUpdateArgs;
    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) {
            // Create new datadog_status_page_degradation_template resource
            var acmeStatusPage = new StatusPage("acmeStatusPage", StatusPageArgs.builder()
                .name("Acme Status")
                .type("public")
                .domainPrefix("acme-status")
                .visualizationType("bars_and_uptime_percentage")
                .build());
    
            var acmeApi = new StatusPageComponent("acmeApi", StatusPageComponentArgs.builder()
                .pageId(acmeStatusPage.id())
                .name("API")
                .type("component")
                .position(0)
                .build());
    
            var acmeDegradationTemplate = new StatusPageDegradationTemplate("acmeDegradationTemplate", StatusPageDegradationTemplateArgs.builder()
                .pageId(acmeStatusPage.id())
                .name("Acme API Degradation")
                .degradationTitle("Acme API is degraded")
                .componentsAffecteds(StatusPageDegradationTemplateComponentsAffectedArgs.builder()
                    .id(acmeApi.id())
                    .status("degraded")
                    .build())
                .updates(            
                    StatusPageDegradationTemplateUpdateArgs.builder()
                        .message("We are investigating issues with the Acme API.")
                        .status("investigating")
                        .build(),
                    StatusPageDegradationTemplateUpdateArgs.builder()
                        .message("We have resolved the Acme API issues.")
                        .status("resolved")
                        .build())
                .build());
    
        }
    }
    
    resources:
      # Create new datadog_status_page_degradation_template resource
      acmeStatusPage:
        type: datadog:StatusPage
        name: acme_status_page
        properties:
          name: Acme Status
          type: public
          domainPrefix: acme-status
          visualizationType: bars_and_uptime_percentage
      acmeApi:
        type: datadog:StatusPageComponent
        name: acme_api
        properties:
          pageId: ${acmeStatusPage.id}
          name: API
          type: component
          position: 0
      acmeDegradationTemplate:
        type: datadog:StatusPageDegradationTemplate
        name: acme_degradation_template
        properties:
          pageId: ${acmeStatusPage.id}
          name: Acme API Degradation
          degradationTitle: Acme API is degraded
          componentsAffecteds:
            - id: ${acmeApi.id}
              status: degraded
          updates:
            - message: We are investigating issues with the Acme API.
              status: investigating
            - message: We have resolved the Acme API issues.
              status: resolved
    
    pulumi {
      required_providers {
        datadog = {
          source = "pulumi/datadog"
        }
      }
    }
    
    # Create new datadog_status_page_degradation_template resource
    resource "datadog_statuspage" "acme_status_page" {
      name               = "Acme Status"
      type               = "public"
      domain_prefix      = "acme-status"
      visualization_type = "bars_and_uptime_percentage"
    }
    resource "datadog_statuspagecomponent" "acme_api" {
      page_id  = datadog_statuspage.acme_status_page.id
      name     = "API"
      type     = "component"
      position = 0
    }
    resource "datadog_statuspagedegradationtemplate" "acme_degradation_template" {
      page_id           = datadog_statuspage.acme_status_page.id
      name              = "Acme API Degradation"
      degradation_title = "Acme API is degraded"
      components_affecteds {
        id     = datadog_statuspagecomponent.acme_api.id
        status = "degraded"
      }
      updates {
        message = "We are investigating issues with the Acme API."
        status  = "investigating"
      }
      updates {
        message = "We have resolved the Acme API issues."
        status  = "resolved"
      }
    }
    

    Create StatusPageDegradationTemplate Resource

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

    Constructor syntax

    new StatusPageDegradationTemplate(name: string, args: StatusPageDegradationTemplateArgs, opts?: CustomResourceOptions);
    @overload
    def StatusPageDegradationTemplate(resource_name: str,
                                      args: StatusPageDegradationTemplateArgs,
                                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def StatusPageDegradationTemplate(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      name: Optional[str] = None,
                                      page_id: Optional[str] = None,
                                      components_affecteds: Optional[Sequence[StatusPageDegradationTemplateComponentsAffectedArgs]] = None,
                                      degradation_title: Optional[str] = None,
                                      updates: Optional[Sequence[StatusPageDegradationTemplateUpdateArgs]] = None)
    func NewStatusPageDegradationTemplate(ctx *Context, name string, args StatusPageDegradationTemplateArgs, opts ...ResourceOption) (*StatusPageDegradationTemplate, error)
    public StatusPageDegradationTemplate(string name, StatusPageDegradationTemplateArgs args, CustomResourceOptions? opts = null)
    public StatusPageDegradationTemplate(String name, StatusPageDegradationTemplateArgs args)
    public StatusPageDegradationTemplate(String name, StatusPageDegradationTemplateArgs args, CustomResourceOptions options)
    
    type: datadog:StatusPageDegradationTemplate
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "datadog_status_page_degradation_template" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args StatusPageDegradationTemplateArgs
    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 StatusPageDegradationTemplateArgs
    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 StatusPageDegradationTemplateArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args StatusPageDegradationTemplateArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args StatusPageDegradationTemplateArgs
    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 statusPageDegradationTemplateResource = new Datadog.StatusPageDegradationTemplate("statusPageDegradationTemplateResource", new()
    {
        Name = "string",
        PageId = "string",
        ComponentsAffecteds = new[]
        {
            new Datadog.Inputs.StatusPageDegradationTemplateComponentsAffectedArgs
            {
                Id = "string",
                Status = "string",
                Name = "string",
            },
        },
        DegradationTitle = "string",
        Updates = new[]
        {
            new Datadog.Inputs.StatusPageDegradationTemplateUpdateArgs
            {
                Status = "string",
                Message = "string",
            },
        },
    });
    
    example, err := datadog.NewStatusPageDegradationTemplate(ctx, "statusPageDegradationTemplateResource", &datadog.StatusPageDegradationTemplateArgs{
    	Name:   pulumi.String("string"),
    	PageId: pulumi.String("string"),
    	ComponentsAffecteds: datadog.StatusPageDegradationTemplateComponentsAffectedArray{
    		&datadog.StatusPageDegradationTemplateComponentsAffectedArgs{
    			Id:     pulumi.String("string"),
    			Status: pulumi.String("string"),
    			Name:   pulumi.String("string"),
    		},
    	},
    	DegradationTitle: pulumi.String("string"),
    	Updates: datadog.StatusPageDegradationTemplateUpdateArray{
    		&datadog.StatusPageDegradationTemplateUpdateArgs{
    			Status:  pulumi.String("string"),
    			Message: pulumi.String("string"),
    		},
    	},
    })
    
    resource "datadog_status_page_degradation_template" "statusPageDegradationTemplateResource" {
      lifecycle {
        create_before_destroy = true
      }
      name    = "string"
      page_id = "string"
      components_affecteds {
        id     = "string"
        status = "string"
        name   = "string"
      }
      degradation_title = "string"
      updates {
        status  = "string"
        message = "string"
      }
    }
    
    var statusPageDegradationTemplateResource = new StatusPageDegradationTemplate("statusPageDegradationTemplateResource", StatusPageDegradationTemplateArgs.builder()
        .name("string")
        .pageId("string")
        .componentsAffecteds(StatusPageDegradationTemplateComponentsAffectedArgs.builder()
            .id("string")
            .status("string")
            .name("string")
            .build())
        .degradationTitle("string")
        .updates(StatusPageDegradationTemplateUpdateArgs.builder()
            .status("string")
            .message("string")
            .build())
        .build());
    
    status_page_degradation_template_resource = datadog.StatusPageDegradationTemplate("statusPageDegradationTemplateResource",
        name="string",
        page_id="string",
        components_affecteds=[{
            "id": "string",
            "status": "string",
            "name": "string",
        }],
        degradation_title="string",
        updates=[{
            "status": "string",
            "message": "string",
        }])
    
    const statusPageDegradationTemplateResource = new datadog.StatusPageDegradationTemplate("statusPageDegradationTemplateResource", {
        name: "string",
        pageId: "string",
        componentsAffecteds: [{
            id: "string",
            status: "string",
            name: "string",
        }],
        degradationTitle: "string",
        updates: [{
            status: "string",
            message: "string",
        }],
    });
    
    type: datadog:StatusPageDegradationTemplate
    properties:
        componentsAffecteds:
            - id: string
              name: string
              status: string
        degradationTitle: string
        name: string
        pageId: string
        updates:
            - message: string
              status: string
    

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

    Name string
    The name of the degradation template.
    PageId string
    The ID of the status page this degradation template belongs to.
    ComponentsAffecteds List<StatusPageDegradationTemplateComponentsAffected>
    The components affected by a degradation created from this template.
    DegradationTitle string
    The title used for a degradation created from this template.
    Updates List<StatusPageDegradationTemplateUpdate>
    The pre-filled updates for a degradation created from this template.
    Name string
    The name of the degradation template.
    PageId string
    The ID of the status page this degradation template belongs to.
    ComponentsAffecteds []StatusPageDegradationTemplateComponentsAffectedArgs
    The components affected by a degradation created from this template.
    DegradationTitle string
    The title used for a degradation created from this template.
    Updates []StatusPageDegradationTemplateUpdateArgs
    The pre-filled updates for a degradation created from this template.
    name string
    The name of the degradation template.
    page_id string
    The ID of the status page this degradation template belongs to.
    components_affecteds list(object)
    The components affected by a degradation created from this template.
    degradation_title string
    The title used for a degradation created from this template.
    updates list(object)
    The pre-filled updates for a degradation created from this template.
    name String
    The name of the degradation template.
    pageId String
    The ID of the status page this degradation template belongs to.
    componentsAffecteds List<StatusPageDegradationTemplateComponentsAffected>
    The components affected by a degradation created from this template.
    degradationTitle String
    The title used for a degradation created from this template.
    updates List<StatusPageDegradationTemplateUpdate>
    The pre-filled updates for a degradation created from this template.
    name string
    The name of the degradation template.
    pageId string
    The ID of the status page this degradation template belongs to.
    componentsAffecteds StatusPageDegradationTemplateComponentsAffected[]
    The components affected by a degradation created from this template.
    degradationTitle string
    The title used for a degradation created from this template.
    updates StatusPageDegradationTemplateUpdate[]
    The pre-filled updates for a degradation created from this template.
    name str
    The name of the degradation template.
    page_id str
    The ID of the status page this degradation template belongs to.
    components_affecteds Sequence[StatusPageDegradationTemplateComponentsAffectedArgs]
    The components affected by a degradation created from this template.
    degradation_title str
    The title used for a degradation created from this template.
    updates Sequence[StatusPageDegradationTemplateUpdateArgs]
    The pre-filled updates for a degradation created from this template.
    name String
    The name of the degradation template.
    pageId String
    The ID of the status page this degradation template belongs to.
    componentsAffecteds List<Property Map>
    The components affected by a degradation created from this template.
    degradationTitle String
    The title used for a degradation created from this template.
    updates List<Property Map>
    The pre-filled updates for a degradation created from this template.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the StatusPageDegradationTemplate resource produces the following output properties:

    CreatedAt string
    Timestamp when the degradation template was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    ModifiedAt string
    Timestamp when the degradation template was last modified.
    CreatedAt string
    Timestamp when the degradation template was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    ModifiedAt string
    Timestamp when the degradation template was last modified.
    created_at string
    Timestamp when the degradation template was created.
    id string
    The provider-assigned unique ID for this managed resource.
    modified_at string
    Timestamp when the degradation template was last modified.
    createdAt String
    Timestamp when the degradation template was created.
    id String
    The provider-assigned unique ID for this managed resource.
    modifiedAt String
    Timestamp when the degradation template was last modified.
    createdAt string
    Timestamp when the degradation template was created.
    id string
    The provider-assigned unique ID for this managed resource.
    modifiedAt string
    Timestamp when the degradation template was last modified.
    created_at str
    Timestamp when the degradation template was created.
    id str
    The provider-assigned unique ID for this managed resource.
    modified_at str
    Timestamp when the degradation template was last modified.
    createdAt String
    Timestamp when the degradation template was created.
    id String
    The provider-assigned unique ID for this managed resource.
    modifiedAt String
    Timestamp when the degradation template was last modified.

    Look up Existing StatusPageDegradationTemplate Resource

    Get an existing StatusPageDegradationTemplate 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?: StatusPageDegradationTemplateState, opts?: CustomResourceOptions): StatusPageDegradationTemplate
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            components_affecteds: Optional[Sequence[StatusPageDegradationTemplateComponentsAffectedArgs]] = None,
            created_at: Optional[str] = None,
            degradation_title: Optional[str] = None,
            modified_at: Optional[str] = None,
            name: Optional[str] = None,
            page_id: Optional[str] = None,
            updates: Optional[Sequence[StatusPageDegradationTemplateUpdateArgs]] = None) -> StatusPageDegradationTemplate
    func GetStatusPageDegradationTemplate(ctx *Context, name string, id IDInput, state *StatusPageDegradationTemplateState, opts ...ResourceOption) (*StatusPageDegradationTemplate, error)
    public static StatusPageDegradationTemplate Get(string name, Input<string> id, StatusPageDegradationTemplateState? state, CustomResourceOptions? opts = null)
    public static StatusPageDegradationTemplate get(String name, Output<String> id, StatusPageDegradationTemplateState state, CustomResourceOptions options)
    resources:  _:    type: datadog:StatusPageDegradationTemplate    get:      id: ${id}
    import {
      to = datadog_status_page_degradation_template.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:
    ComponentsAffecteds List<StatusPageDegradationTemplateComponentsAffected>
    The components affected by a degradation created from this template.
    CreatedAt string
    Timestamp when the degradation template was created.
    DegradationTitle string
    The title used for a degradation created from this template.
    ModifiedAt string
    Timestamp when the degradation template was last modified.
    Name string
    The name of the degradation template.
    PageId string
    The ID of the status page this degradation template belongs to.
    Updates List<StatusPageDegradationTemplateUpdate>
    The pre-filled updates for a degradation created from this template.
    ComponentsAffecteds []StatusPageDegradationTemplateComponentsAffectedArgs
    The components affected by a degradation created from this template.
    CreatedAt string
    Timestamp when the degradation template was created.
    DegradationTitle string
    The title used for a degradation created from this template.
    ModifiedAt string
    Timestamp when the degradation template was last modified.
    Name string
    The name of the degradation template.
    PageId string
    The ID of the status page this degradation template belongs to.
    Updates []StatusPageDegradationTemplateUpdateArgs
    The pre-filled updates for a degradation created from this template.
    components_affecteds list(object)
    The components affected by a degradation created from this template.
    created_at string
    Timestamp when the degradation template was created.
    degradation_title string
    The title used for a degradation created from this template.
    modified_at string
    Timestamp when the degradation template was last modified.
    name string
    The name of the degradation template.
    page_id string
    The ID of the status page this degradation template belongs to.
    updates list(object)
    The pre-filled updates for a degradation created from this template.
    componentsAffecteds List<StatusPageDegradationTemplateComponentsAffected>
    The components affected by a degradation created from this template.
    createdAt String
    Timestamp when the degradation template was created.
    degradationTitle String
    The title used for a degradation created from this template.
    modifiedAt String
    Timestamp when the degradation template was last modified.
    name String
    The name of the degradation template.
    pageId String
    The ID of the status page this degradation template belongs to.
    updates List<StatusPageDegradationTemplateUpdate>
    The pre-filled updates for a degradation created from this template.
    componentsAffecteds StatusPageDegradationTemplateComponentsAffected[]
    The components affected by a degradation created from this template.
    createdAt string
    Timestamp when the degradation template was created.
    degradationTitle string
    The title used for a degradation created from this template.
    modifiedAt string
    Timestamp when the degradation template was last modified.
    name string
    The name of the degradation template.
    pageId string
    The ID of the status page this degradation template belongs to.
    updates StatusPageDegradationTemplateUpdate[]
    The pre-filled updates for a degradation created from this template.
    components_affecteds Sequence[StatusPageDegradationTemplateComponentsAffectedArgs]
    The components affected by a degradation created from this template.
    created_at str
    Timestamp when the degradation template was created.
    degradation_title str
    The title used for a degradation created from this template.
    modified_at str
    Timestamp when the degradation template was last modified.
    name str
    The name of the degradation template.
    page_id str
    The ID of the status page this degradation template belongs to.
    updates Sequence[StatusPageDegradationTemplateUpdateArgs]
    The pre-filled updates for a degradation created from this template.
    componentsAffecteds List<Property Map>
    The components affected by a degradation created from this template.
    createdAt String
    Timestamp when the degradation template was created.
    degradationTitle String
    The title used for a degradation created from this template.
    modifiedAt String
    Timestamp when the degradation template was last modified.
    name String
    The name of the degradation template.
    pageId String
    The ID of the status page this degradation template belongs to.
    updates List<Property Map>
    The pre-filled updates for a degradation created from this template.

    Supporting Types

    StatusPageDegradationTemplateComponentsAffected, StatusPageDegradationTemplateComponentsAffectedArgs

    Id string
    The ID of the affected component.
    Status string
    The pre-filled status for this component. Valid values are: operational, degraded, partialoutage, majoroutage.
    Name string
    The name of the affected component.
    Id string
    The ID of the affected component.
    Status string
    The pre-filled status for this component. Valid values are: operational, degraded, partialoutage, majoroutage.
    Name string
    The name of the affected component.
    id string
    The ID of the affected component.
    status string
    The pre-filled status for this component. Valid values are: operational, degraded, partialoutage, majoroutage.
    name string
    The name of the affected component.
    id String
    The ID of the affected component.
    status String
    The pre-filled status for this component. Valid values are: operational, degraded, partialoutage, majoroutage.
    name String
    The name of the affected component.
    id string
    The ID of the affected component.
    status string
    The pre-filled status for this component. Valid values are: operational, degraded, partialoutage, majoroutage.
    name string
    The name of the affected component.
    id str
    The ID of the affected component.
    status str
    The pre-filled status for this component. Valid values are: operational, degraded, partialoutage, majoroutage.
    name str
    The name of the affected component.
    id String
    The ID of the affected component.
    status String
    The pre-filled status for this component. Valid values are: operational, degraded, partialoutage, majoroutage.
    name String
    The name of the affected component.

    StatusPageDegradationTemplateUpdate, StatusPageDegradationTemplateUpdateArgs

    Status string
    The pre-filled degradation status for this update. Valid values are: investigating, identified, monitoring, resolved.
    Message string
    The pre-filled message for this update.
    Status string
    The pre-filled degradation status for this update. Valid values are: investigating, identified, monitoring, resolved.
    Message string
    The pre-filled message for this update.
    status string
    The pre-filled degradation status for this update. Valid values are: investigating, identified, monitoring, resolved.
    message string
    The pre-filled message for this update.
    status String
    The pre-filled degradation status for this update. Valid values are: investigating, identified, monitoring, resolved.
    message String
    The pre-filled message for this update.
    status string
    The pre-filled degradation status for this update. Valid values are: investigating, identified, monitoring, resolved.
    message string
    The pre-filled message for this update.
    status str
    The pre-filled degradation status for this update. Valid values are: investigating, identified, monitoring, resolved.
    message str
    The pre-filled message for this update.
    status String
    The pre-filled degradation status for this update. Valid values are: investigating, identified, monitoring, resolved.
    message String
    The pre-filled message for this update.

    Import

    The pulumi import command can be used, for example:

    $ pulumi import datadog:index/statusPageDegradationTemplate:StatusPageDegradationTemplate example "09a89ab4-d622-4fbd-87e5-81b4124bd064:1e2c6615-801b-4630-9d31-5b2f27d5b6f0"
    

    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.11.0
    published on Tuesday, Sep 15, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial