published on Tuesday, Sep 15, 2026 by Pulumi
published on Tuesday, Sep 15, 2026 by Pulumi
Provides a Datadog status page maintenance template resource. This can be used to create and manage pre-filled templates for scheduled maintenances on a status page.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as datadog from "@pulumi/datadog";
// Create new datadog_status_page_maintenance_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 acmeMaintenanceTemplate = new datadog.StatusPageMaintenanceTemplate("acme_maintenance_template", {
pageId: acmeStatusPage.id,
name: "Scheduled Acme API maintenance",
maintenanceTitle: "Acme API maintenance",
componentIds: [acmeApi.id],
scheduledDescription: "Maintenance has been scheduled for the Acme API.",
inProgressDescription: "Maintenance is in progress for the Acme API.",
completedDescription: "Maintenance is complete for the Acme API.",
});
import pulumi
import pulumi_datadog as datadog
# Create new datadog_status_page_maintenance_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_maintenance_template = datadog.StatusPageMaintenanceTemplate("acme_maintenance_template",
page_id=acme_status_page.id,
name="Scheduled Acme API maintenance",
maintenance_title="Acme API maintenance",
component_ids=[acme_api.id],
scheduled_description="Maintenance has been scheduled for the Acme API.",
in_progress_description="Maintenance is in progress for the Acme API.",
completed_description="Maintenance is complete for the Acme API.")
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_maintenance_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.NewStatusPageMaintenanceTemplate(ctx, "acme_maintenance_template", &datadog.StatusPageMaintenanceTemplateArgs{
PageId: acmeStatusPage.ID().ToIDOutput().ToStringOutput(),
Name: pulumi.String("Scheduled Acme API maintenance"),
MaintenanceTitle: pulumi.String("Acme API maintenance"),
ComponentIds: pulumi.StringArray{
acmeApi.ID().ToIDOutput().ToStringOutput(),
},
ScheduledDescription: pulumi.String("Maintenance has been scheduled for the Acme API."),
InProgressDescription: pulumi.String("Maintenance is in progress for the Acme API."),
CompletedDescription: pulumi.String("Maintenance is complete for the Acme API."),
})
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_maintenance_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 acmeMaintenanceTemplate = new Datadog.StatusPageMaintenanceTemplate("acme_maintenance_template", new()
{
PageId = acmeStatusPage.Id,
Name = "Scheduled Acme API maintenance",
MaintenanceTitle = "Acme API maintenance",
ComponentIds = new[]
{
acmeApi.Id,
},
ScheduledDescription = "Maintenance has been scheduled for the Acme API.",
InProgressDescription = "Maintenance is in progress for the Acme API.",
CompletedDescription = "Maintenance is complete for the Acme API.",
});
});
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.StatusPageMaintenanceTemplate;
import com.pulumi.datadog.StatusPageMaintenanceTemplateArgs;
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_maintenance_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 acmeMaintenanceTemplate = new StatusPageMaintenanceTemplate("acmeMaintenanceTemplate", StatusPageMaintenanceTemplateArgs.builder()
.pageId(acmeStatusPage.id())
.name("Scheduled Acme API maintenance")
.maintenanceTitle("Acme API maintenance")
.componentIds(acmeApi.id())
.scheduledDescription("Maintenance has been scheduled for the Acme API.")
.inProgressDescription("Maintenance is in progress for the Acme API.")
.completedDescription("Maintenance is complete for the Acme API.")
.build());
}
}
resources:
# Create new datadog_status_page_maintenance_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
acmeMaintenanceTemplate:
type: datadog:StatusPageMaintenanceTemplate
name: acme_maintenance_template
properties:
pageId: ${acmeStatusPage.id}
name: Scheduled Acme API maintenance
maintenanceTitle: Acme API maintenance
componentIds:
- ${acmeApi.id}
scheduledDescription: Maintenance has been scheduled for the Acme API.
inProgressDescription: Maintenance is in progress for the Acme API.
completedDescription: Maintenance is complete for the Acme API.
pulumi {
required_providers {
datadog = {
source = "pulumi/datadog"
}
}
}
# Create new datadog_status_page_maintenance_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_statuspagemaintenancetemplate" "acme_maintenance_template" {
page_id = datadog_statuspage.acme_status_page.id
name = "Scheduled Acme API maintenance"
maintenance_title = "Acme API maintenance"
component_ids = [datadog_statuspagecomponent.acme_api.id]
scheduled_description = "Maintenance has been scheduled for the Acme API."
in_progress_description = "Maintenance is in progress for the Acme API."
completed_description = "Maintenance is complete for the Acme API."
}
Create StatusPageMaintenanceTemplate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new StatusPageMaintenanceTemplate(name: string, args: StatusPageMaintenanceTemplateArgs, opts?: CustomResourceOptions);@overload
def StatusPageMaintenanceTemplate(resource_name: str,
args: StatusPageMaintenanceTemplateArgs,
opts: Optional[ResourceOptions] = None)
@overload
def StatusPageMaintenanceTemplate(resource_name: str,
opts: Optional[ResourceOptions] = None,
name: Optional[str] = None,
page_id: Optional[str] = None,
completed_description: Optional[str] = None,
component_ids: Optional[Sequence[str]] = None,
in_progress_description: Optional[str] = None,
maintenance_title: Optional[str] = None,
scheduled_description: Optional[str] = None)func NewStatusPageMaintenanceTemplate(ctx *Context, name string, args StatusPageMaintenanceTemplateArgs, opts ...ResourceOption) (*StatusPageMaintenanceTemplate, error)public StatusPageMaintenanceTemplate(string name, StatusPageMaintenanceTemplateArgs args, CustomResourceOptions? opts = null)
public StatusPageMaintenanceTemplate(String name, StatusPageMaintenanceTemplateArgs args)
public StatusPageMaintenanceTemplate(String name, StatusPageMaintenanceTemplateArgs args, CustomResourceOptions options)
type: datadog:StatusPageMaintenanceTemplate
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "datadog_status_page_maintenance_template" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args StatusPageMaintenanceTemplateArgs
- 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 StatusPageMaintenanceTemplateArgs
- 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 StatusPageMaintenanceTemplateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args StatusPageMaintenanceTemplateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args StatusPageMaintenanceTemplateArgs
- 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 statusPageMaintenanceTemplateResource = new Datadog.StatusPageMaintenanceTemplate("statusPageMaintenanceTemplateResource", new()
{
Name = "string",
PageId = "string",
CompletedDescription = "string",
ComponentIds = new[]
{
"string",
},
InProgressDescription = "string",
MaintenanceTitle = "string",
ScheduledDescription = "string",
});
example, err := datadog.NewStatusPageMaintenanceTemplate(ctx, "statusPageMaintenanceTemplateResource", &datadog.StatusPageMaintenanceTemplateArgs{
Name: pulumi.String("string"),
PageId: pulumi.String("string"),
CompletedDescription: pulumi.String("string"),
ComponentIds: pulumi.StringArray{
pulumi.String("string"),
},
InProgressDescription: pulumi.String("string"),
MaintenanceTitle: pulumi.String("string"),
ScheduledDescription: pulumi.String("string"),
})
resource "datadog_status_page_maintenance_template" "statusPageMaintenanceTemplateResource" {
lifecycle {
create_before_destroy = true
}
name = "string"
page_id = "string"
completed_description = "string"
component_ids = ["string"]
in_progress_description = "string"
maintenance_title = "string"
scheduled_description = "string"
}
var statusPageMaintenanceTemplateResource = new StatusPageMaintenanceTemplate("statusPageMaintenanceTemplateResource", StatusPageMaintenanceTemplateArgs.builder()
.name("string")
.pageId("string")
.completedDescription("string")
.componentIds("string")
.inProgressDescription("string")
.maintenanceTitle("string")
.scheduledDescription("string")
.build());
status_page_maintenance_template_resource = datadog.StatusPageMaintenanceTemplate("statusPageMaintenanceTemplateResource",
name="string",
page_id="string",
completed_description="string",
component_ids=["string"],
in_progress_description="string",
maintenance_title="string",
scheduled_description="string")
const statusPageMaintenanceTemplateResource = new datadog.StatusPageMaintenanceTemplate("statusPageMaintenanceTemplateResource", {
name: "string",
pageId: "string",
completedDescription: "string",
componentIds: ["string"],
inProgressDescription: "string",
maintenanceTitle: "string",
scheduledDescription: "string",
});
type: datadog:StatusPageMaintenanceTemplate
properties:
completedDescription: string
componentIds:
- string
inProgressDescription: string
maintenanceTitle: string
name: string
pageId: string
scheduledDescription: string
StatusPageMaintenanceTemplate 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 StatusPageMaintenanceTemplate resource accepts the following input properties:
- Name string
- The name of the maintenance template.
- Page
Id string - The ID of the status page this maintenance template belongs to.
- Completed
Description string - The pre-filled description shown once the maintenance is completed.
- Component
Ids List<string> - The IDs of the components affected by a maintenance created from this template.
- In
Progress stringDescription - The pre-filled description shown while the maintenance is in progress.
- Maintenance
Title string - The title used for a maintenance created from this template.
- Scheduled
Description string - The pre-filled description shown while the maintenance is scheduled.
- Name string
- The name of the maintenance template.
- Page
Id string - The ID of the status page this maintenance template belongs to.
- Completed
Description string - The pre-filled description shown once the maintenance is completed.
- Component
Ids []string - The IDs of the components affected by a maintenance created from this template.
- In
Progress stringDescription - The pre-filled description shown while the maintenance is in progress.
- Maintenance
Title string - The title used for a maintenance created from this template.
- Scheduled
Description string - The pre-filled description shown while the maintenance is scheduled.
- name string
- The name of the maintenance template.
- page_
id string - The ID of the status page this maintenance template belongs to.
- completed_
description string - The pre-filled description shown once the maintenance is completed.
- component_
ids list(string) - The IDs of the components affected by a maintenance created from this template.
- in_
progress_ stringdescription - The pre-filled description shown while the maintenance is in progress.
- maintenance_
title string - The title used for a maintenance created from this template.
- scheduled_
description string - The pre-filled description shown while the maintenance is scheduled.
- name String
- The name of the maintenance template.
- page
Id String - The ID of the status page this maintenance template belongs to.
- completed
Description String - The pre-filled description shown once the maintenance is completed.
- component
Ids List<String> - The IDs of the components affected by a maintenance created from this template.
- in
Progress StringDescription - The pre-filled description shown while the maintenance is in progress.
- maintenance
Title String - The title used for a maintenance created from this template.
- scheduled
Description String - The pre-filled description shown while the maintenance is scheduled.
- name string
- The name of the maintenance template.
- page
Id string - The ID of the status page this maintenance template belongs to.
- completed
Description string - The pre-filled description shown once the maintenance is completed.
- component
Ids string[] - The IDs of the components affected by a maintenance created from this template.
- in
Progress stringDescription - The pre-filled description shown while the maintenance is in progress.
- maintenance
Title string - The title used for a maintenance created from this template.
- scheduled
Description string - The pre-filled description shown while the maintenance is scheduled.
- name str
- The name of the maintenance template.
- page_
id str - The ID of the status page this maintenance template belongs to.
- completed_
description str - The pre-filled description shown once the maintenance is completed.
- component_
ids Sequence[str] - The IDs of the components affected by a maintenance created from this template.
- in_
progress_ strdescription - The pre-filled description shown while the maintenance is in progress.
- maintenance_
title str - The title used for a maintenance created from this template.
- scheduled_
description str - The pre-filled description shown while the maintenance is scheduled.
- name String
- The name of the maintenance template.
- page
Id String - The ID of the status page this maintenance template belongs to.
- completed
Description String - The pre-filled description shown once the maintenance is completed.
- component
Ids List<String> - The IDs of the components affected by a maintenance created from this template.
- in
Progress StringDescription - The pre-filled description shown while the maintenance is in progress.
- maintenance
Title String - The title used for a maintenance created from this template.
- scheduled
Description String - The pre-filled description shown while the maintenance is scheduled.
Outputs
All input properties are implicitly available as output properties. Additionally, the StatusPageMaintenanceTemplate resource produces the following output properties:
- Created
At string - Timestamp when the maintenance template was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Modified
At string - Timestamp of when the maintenance template was last modified.
- Created
At string - Timestamp when the maintenance template was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Modified
At string - Timestamp of when the maintenance template was last modified.
- created_
at string - Timestamp when the maintenance template was created.
- id string
- The provider-assigned unique ID for this managed resource.
- modified_
at string - Timestamp of when the maintenance template was last modified.
- created
At String - Timestamp when the maintenance template was created.
- id String
- The provider-assigned unique ID for this managed resource.
- modified
At String - Timestamp of when the maintenance template was last modified.
- created
At string - Timestamp when the maintenance template was created.
- id string
- The provider-assigned unique ID for this managed resource.
- modified
At string - Timestamp of when the maintenance template was last modified.
- created_
at str - Timestamp when the maintenance template was created.
- id str
- The provider-assigned unique ID for this managed resource.
- modified_
at str - Timestamp of when the maintenance template was last modified.
- created
At String - Timestamp when the maintenance template was created.
- id String
- The provider-assigned unique ID for this managed resource.
- modified
At String - Timestamp of when the maintenance template was last modified.
Look up Existing StatusPageMaintenanceTemplate Resource
Get an existing StatusPageMaintenanceTemplate 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?: StatusPageMaintenanceTemplateState, opts?: CustomResourceOptions): StatusPageMaintenanceTemplate@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
completed_description: Optional[str] = None,
component_ids: Optional[Sequence[str]] = None,
created_at: Optional[str] = None,
in_progress_description: Optional[str] = None,
maintenance_title: Optional[str] = None,
modified_at: Optional[str] = None,
name: Optional[str] = None,
page_id: Optional[str] = None,
scheduled_description: Optional[str] = None) -> StatusPageMaintenanceTemplatefunc GetStatusPageMaintenanceTemplate(ctx *Context, name string, id IDInput, state *StatusPageMaintenanceTemplateState, opts ...ResourceOption) (*StatusPageMaintenanceTemplate, error)public static StatusPageMaintenanceTemplate Get(string name, Input<string> id, StatusPageMaintenanceTemplateState? state, CustomResourceOptions? opts = null)public static StatusPageMaintenanceTemplate get(String name, Output<String> id, StatusPageMaintenanceTemplateState state, CustomResourceOptions options)resources: _: type: datadog:StatusPageMaintenanceTemplate get: id: ${id}import {
to = datadog_status_page_maintenance_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.
- Completed
Description string - The pre-filled description shown once the maintenance is completed.
- Component
Ids List<string> - The IDs of the components affected by a maintenance created from this template.
- Created
At string - Timestamp when the maintenance template was created.
- In
Progress stringDescription - The pre-filled description shown while the maintenance is in progress.
- Maintenance
Title string - The title used for a maintenance created from this template.
- Modified
At string - Timestamp of when the maintenance template was last modified.
- Name string
- The name of the maintenance template.
- Page
Id string - The ID of the status page this maintenance template belongs to.
- Scheduled
Description string - The pre-filled description shown while the maintenance is scheduled.
- Completed
Description string - The pre-filled description shown once the maintenance is completed.
- Component
Ids []string - The IDs of the components affected by a maintenance created from this template.
- Created
At string - Timestamp when the maintenance template was created.
- In
Progress stringDescription - The pre-filled description shown while the maintenance is in progress.
- Maintenance
Title string - The title used for a maintenance created from this template.
- Modified
At string - Timestamp of when the maintenance template was last modified.
- Name string
- The name of the maintenance template.
- Page
Id string - The ID of the status page this maintenance template belongs to.
- Scheduled
Description string - The pre-filled description shown while the maintenance is scheduled.
- completed_
description string - The pre-filled description shown once the maintenance is completed.
- component_
ids list(string) - The IDs of the components affected by a maintenance created from this template.
- created_
at string - Timestamp when the maintenance template was created.
- in_
progress_ stringdescription - The pre-filled description shown while the maintenance is in progress.
- maintenance_
title string - The title used for a maintenance created from this template.
- modified_
at string - Timestamp of when the maintenance template was last modified.
- name string
- The name of the maintenance template.
- page_
id string - The ID of the status page this maintenance template belongs to.
- scheduled_
description string - The pre-filled description shown while the maintenance is scheduled.
- completed
Description String - The pre-filled description shown once the maintenance is completed.
- component
Ids List<String> - The IDs of the components affected by a maintenance created from this template.
- created
At String - Timestamp when the maintenance template was created.
- in
Progress StringDescription - The pre-filled description shown while the maintenance is in progress.
- maintenance
Title String - The title used for a maintenance created from this template.
- modified
At String - Timestamp of when the maintenance template was last modified.
- name String
- The name of the maintenance template.
- page
Id String - The ID of the status page this maintenance template belongs to.
- scheduled
Description String - The pre-filled description shown while the maintenance is scheduled.
- completed
Description string - The pre-filled description shown once the maintenance is completed.
- component
Ids string[] - The IDs of the components affected by a maintenance created from this template.
- created
At string - Timestamp when the maintenance template was created.
- in
Progress stringDescription - The pre-filled description shown while the maintenance is in progress.
- maintenance
Title string - The title used for a maintenance created from this template.
- modified
At string - Timestamp of when the maintenance template was last modified.
- name string
- The name of the maintenance template.
- page
Id string - The ID of the status page this maintenance template belongs to.
- scheduled
Description string - The pre-filled description shown while the maintenance is scheduled.
- completed_
description str - The pre-filled description shown once the maintenance is completed.
- component_
ids Sequence[str] - The IDs of the components affected by a maintenance created from this template.
- created_
at str - Timestamp when the maintenance template was created.
- in_
progress_ strdescription - The pre-filled description shown while the maintenance is in progress.
- maintenance_
title str - The title used for a maintenance created from this template.
- modified_
at str - Timestamp of when the maintenance template was last modified.
- name str
- The name of the maintenance template.
- page_
id str - The ID of the status page this maintenance template belongs to.
- scheduled_
description str - The pre-filled description shown while the maintenance is scheduled.
- completed
Description String - The pre-filled description shown once the maintenance is completed.
- component
Ids List<String> - The IDs of the components affected by a maintenance created from this template.
- created
At String - Timestamp when the maintenance template was created.
- in
Progress StringDescription - The pre-filled description shown while the maintenance is in progress.
- maintenance
Title String - The title used for a maintenance created from this template.
- modified
At String - Timestamp of when the maintenance template was last modified.
- name String
- The name of the maintenance template.
- page
Id String - The ID of the status page this maintenance template belongs to.
- scheduled
Description String - The pre-filled description shown while the maintenance is scheduled.
Import
The pulumi import command can be used, for example:
$ pulumi import datadog:index/statusPageMaintenanceTemplate:StatusPageMaintenanceTemplate example "09a89ab4-d622-4fbd-87e5-81b4124bd064:7c4f9a3e-2b1d-4e6a-9f0c-3d8b5a1e6c2f"
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
datadogTerraform Provider.
published on Tuesday, Sep 15, 2026 by Pulumi