datadog.Downtime
Explore with Pulumi AI
Provides a Datadog downtime resource. This can be used to create and manage Datadog downtimes.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Datadog = Pulumi.Datadog;
return await Deployment.RunAsync(() =>
{
// Example: downtime for all monitors
// Create a new daily 1700-0900 Datadog downtime for all monitors
var foo = new Datadog.Downtime("foo", new()
{
End = 1483365600,
Recurrence = new Datadog.Inputs.DowntimeRecurrenceArgs
{
Period = 1,
Type = "days",
},
Scopes = new[]
{
"*",
},
Start = 1483308000,
});
});
package main
import (
"github.com/pulumi/pulumi-datadog/sdk/v4/go/datadog"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datadog.NewDowntime(ctx, "foo", &datadog.DowntimeArgs{
End: pulumi.Int(1483365600),
Recurrence: &datadog.DowntimeRecurrenceArgs{
Period: pulumi.Int(1),
Type: pulumi.String("days"),
},
Scopes: pulumi.StringArray{
pulumi.String("*"),
},
Start: pulumi.Int(1483308000),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.datadog.Downtime;
import com.pulumi.datadog.DowntimeArgs;
import com.pulumi.datadog.inputs.DowntimeRecurrenceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var foo = new Downtime("foo", DowntimeArgs.builder()
.end(1483365600)
.recurrence(DowntimeRecurrenceArgs.builder()
.period(1)
.type("days")
.build())
.scopes("*")
.start(1483308000)
.build());
}
}
import pulumi
import pulumi_datadog as datadog
# Example: downtime for all monitors
# Create a new daily 1700-0900 Datadog downtime for all monitors
foo = datadog.Downtime("foo",
end=1483365600,
recurrence=datadog.DowntimeRecurrenceArgs(
period=1,
type="days",
),
scopes=["*"],
start=1483308000)
import * as pulumi from "@pulumi/pulumi";
import * as datadog from "@pulumi/datadog";
// Example: downtime for all monitors
// Create a new daily 1700-0900 Datadog downtime for all monitors
const foo = new datadog.Downtime("foo", {
end: 1483365600,
recurrence: {
period: 1,
type: "days",
},
scopes: ["*"],
start: 1483308000,
});
resources:
# Example: downtime for all monitors
# // Create a new daily 1700-0900 Datadog downtime for all monitors
foo:
type: datadog:Downtime
properties:
end: 1.4833656e+09
recurrence:
period: 1
type: days
scopes:
- '*'
start: 1.483308e+09
Create Downtime Resource
new Downtime(name: string, args: DowntimeArgs, opts?: CustomResourceOptions);
@overload
def Downtime(resource_name: str,
opts: Optional[ResourceOptions] = None,
end: Optional[int] = None,
end_date: Optional[str] = None,
message: Optional[str] = None,
monitor_id: Optional[int] = None,
monitor_tags: Optional[Sequence[str]] = None,
mute_first_recovery_notification: Optional[bool] = None,
recurrence: Optional[DowntimeRecurrenceArgs] = None,
scopes: Optional[Sequence[str]] = None,
start: Optional[int] = None,
start_date: Optional[str] = None,
timezone: Optional[str] = None)
@overload
def Downtime(resource_name: str,
args: DowntimeArgs,
opts: Optional[ResourceOptions] = None)
func NewDowntime(ctx *Context, name string, args DowntimeArgs, opts ...ResourceOption) (*Downtime, error)
public Downtime(string name, DowntimeArgs args, CustomResourceOptions? opts = null)
public Downtime(String name, DowntimeArgs args)
public Downtime(String name, DowntimeArgs args, CustomResourceOptions options)
type: datadog:Downtime
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DowntimeArgs
- 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 DowntimeArgs
- 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 DowntimeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DowntimeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DowntimeArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Downtime Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Downtime resource accepts the following input properties:
- Scopes List<string>
specify the group scope to which this downtime applies. For everything use '*'
- End int
Optionally specify an end date when this downtime should expire. Accepts a Unix timestamp in UTC.
- End
Date string String representing date and time to end the downtime in RFC3339 format.
- Message string
An optional message to provide when creating the downtime, can include notification handles
- Monitor
Id int When specified, this downtime will only apply to this monitor
- List<string>
A list of monitor tags (up to 32) to base the scheduled downtime on. Only monitors that have all selected tags are silenced
- Mute
First boolRecovery Notification When true the first recovery notification during the downtime will be muted
- Recurrence
Downtime
Recurrence Optional recurring schedule for this downtime
- Start int
Specify when this downtime should start. Accepts a Unix timestamp in UTC.
- Start
Date string String representing date and time to start the downtime in RFC3339 format.
- Timezone string
The timezone for the downtime, default UTC. Follows IANA timezone database identifiers.
- Scopes []string
specify the group scope to which this downtime applies. For everything use '*'
- End int
Optionally specify an end date when this downtime should expire. Accepts a Unix timestamp in UTC.
- End
Date string String representing date and time to end the downtime in RFC3339 format.
- Message string
An optional message to provide when creating the downtime, can include notification handles
- Monitor
Id int When specified, this downtime will only apply to this monitor
- []string
A list of monitor tags (up to 32) to base the scheduled downtime on. Only monitors that have all selected tags are silenced
- Mute
First boolRecovery Notification When true the first recovery notification during the downtime will be muted
- Recurrence
Downtime
Recurrence Args Optional recurring schedule for this downtime
- Start int
Specify when this downtime should start. Accepts a Unix timestamp in UTC.
- Start
Date string String representing date and time to start the downtime in RFC3339 format.
- Timezone string
The timezone for the downtime, default UTC. Follows IANA timezone database identifiers.
- scopes List<String>
specify the group scope to which this downtime applies. For everything use '*'
- end Integer
Optionally specify an end date when this downtime should expire. Accepts a Unix timestamp in UTC.
- end
Date String String representing date and time to end the downtime in RFC3339 format.
- message String
An optional message to provide when creating the downtime, can include notification handles
- monitor
Id Integer When specified, this downtime will only apply to this monitor
- List<String>
A list of monitor tags (up to 32) to base the scheduled downtime on. Only monitors that have all selected tags are silenced
- mute
First BooleanRecovery Notification When true the first recovery notification during the downtime will be muted
- recurrence
Downtime
Recurrence Optional recurring schedule for this downtime
- start Integer
Specify when this downtime should start. Accepts a Unix timestamp in UTC.
- start
Date String String representing date and time to start the downtime in RFC3339 format.
- timezone String
The timezone for the downtime, default UTC. Follows IANA timezone database identifiers.
- scopes string[]
specify the group scope to which this downtime applies. For everything use '*'
- end number
Optionally specify an end date when this downtime should expire. Accepts a Unix timestamp in UTC.
- end
Date string String representing date and time to end the downtime in RFC3339 format.
- message string
An optional message to provide when creating the downtime, can include notification handles
- monitor
Id number When specified, this downtime will only apply to this monitor
- string[]
A list of monitor tags (up to 32) to base the scheduled downtime on. Only monitors that have all selected tags are silenced
- mute
First booleanRecovery Notification When true the first recovery notification during the downtime will be muted
- recurrence
Downtime
Recurrence Optional recurring schedule for this downtime
- start number
Specify when this downtime should start. Accepts a Unix timestamp in UTC.
- start
Date string String representing date and time to start the downtime in RFC3339 format.
- timezone string
The timezone for the downtime, default UTC. Follows IANA timezone database identifiers.
- scopes Sequence[str]
specify the group scope to which this downtime applies. For everything use '*'
- end int
Optionally specify an end date when this downtime should expire. Accepts a Unix timestamp in UTC.
- end_
date str String representing date and time to end the downtime in RFC3339 format.
- message str
An optional message to provide when creating the downtime, can include notification handles
- monitor_
id int When specified, this downtime will only apply to this monitor
- Sequence[str]
A list of monitor tags (up to 32) to base the scheduled downtime on. Only monitors that have all selected tags are silenced
- mute_
first_ boolrecovery_ notification When true the first recovery notification during the downtime will be muted
- recurrence
Downtime
Recurrence Args Optional recurring schedule for this downtime
- start int
Specify when this downtime should start. Accepts a Unix timestamp in UTC.
- start_
date str String representing date and time to start the downtime in RFC3339 format.
- timezone str
The timezone for the downtime, default UTC. Follows IANA timezone database identifiers.
- scopes List<String>
specify the group scope to which this downtime applies. For everything use '*'
- end Number
Optionally specify an end date when this downtime should expire. Accepts a Unix timestamp in UTC.
- end
Date String String representing date and time to end the downtime in RFC3339 format.
- message String
An optional message to provide when creating the downtime, can include notification handles
- monitor
Id Number When specified, this downtime will only apply to this monitor
- List<String>
A list of monitor tags (up to 32) to base the scheduled downtime on. Only monitors that have all selected tags are silenced
- mute
First BooleanRecovery Notification When true the first recovery notification during the downtime will be muted
- recurrence Property Map
Optional recurring schedule for this downtime
- start Number
Specify when this downtime should start. Accepts a Unix timestamp in UTC.
- start
Date String String representing date and time to start the downtime in RFC3339 format.
- timezone String
The timezone for the downtime, default UTC. Follows IANA timezone database identifiers.
Outputs
All input properties are implicitly available as output properties. Additionally, the Downtime resource produces the following output properties:
- Active bool
When true indicates this downtime is being actively applied
- Active
Child intId The id corresponding to the downtime object definition of the active child for the original parent recurring downtime. This field will only exist on recurring downtimes.
- Disabled bool
When true indicates this downtime is not being applied
- Id string
The provider-assigned unique ID for this managed resource.
- Active bool
When true indicates this downtime is being actively applied
- Active
Child intId The id corresponding to the downtime object definition of the active child for the original parent recurring downtime. This field will only exist on recurring downtimes.
- Disabled bool
When true indicates this downtime is not being applied
- Id string
The provider-assigned unique ID for this managed resource.
- active Boolean
When true indicates this downtime is being actively applied
- active
Child IntegerId The id corresponding to the downtime object definition of the active child for the original parent recurring downtime. This field will only exist on recurring downtimes.
- disabled Boolean
When true indicates this downtime is not being applied
- id String
The provider-assigned unique ID for this managed resource.
- active boolean
When true indicates this downtime is being actively applied
- active
Child numberId The id corresponding to the downtime object definition of the active child for the original parent recurring downtime. This field will only exist on recurring downtimes.
- disabled boolean
When true indicates this downtime is not being applied
- id string
The provider-assigned unique ID for this managed resource.
- active bool
When true indicates this downtime is being actively applied
- active_
child_ intid The id corresponding to the downtime object definition of the active child for the original parent recurring downtime. This field will only exist on recurring downtimes.
- disabled bool
When true indicates this downtime is not being applied
- id str
The provider-assigned unique ID for this managed resource.
- active Boolean
When true indicates this downtime is being actively applied
- active
Child NumberId The id corresponding to the downtime object definition of the active child for the original parent recurring downtime. This field will only exist on recurring downtimes.
- disabled Boolean
When true indicates this downtime is not being applied
- id String
The provider-assigned unique ID for this managed resource.
Look up Existing Downtime Resource
Get an existing Downtime 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?: DowntimeState, opts?: CustomResourceOptions): Downtime
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
active: Optional[bool] = None,
active_child_id: Optional[int] = None,
disabled: Optional[bool] = None,
end: Optional[int] = None,
end_date: Optional[str] = None,
message: Optional[str] = None,
monitor_id: Optional[int] = None,
monitor_tags: Optional[Sequence[str]] = None,
mute_first_recovery_notification: Optional[bool] = None,
recurrence: Optional[DowntimeRecurrenceArgs] = None,
scopes: Optional[Sequence[str]] = None,
start: Optional[int] = None,
start_date: Optional[str] = None,
timezone: Optional[str] = None) -> Downtime
func GetDowntime(ctx *Context, name string, id IDInput, state *DowntimeState, opts ...ResourceOption) (*Downtime, error)
public static Downtime Get(string name, Input<string> id, DowntimeState? state, CustomResourceOptions? opts = null)
public static Downtime get(String name, Output<String> id, DowntimeState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Active bool
When true indicates this downtime is being actively applied
- Active
Child intId The id corresponding to the downtime object definition of the active child for the original parent recurring downtime. This field will only exist on recurring downtimes.
- Disabled bool
When true indicates this downtime is not being applied
- End int
Optionally specify an end date when this downtime should expire. Accepts a Unix timestamp in UTC.
- End
Date string String representing date and time to end the downtime in RFC3339 format.
- Message string
An optional message to provide when creating the downtime, can include notification handles
- Monitor
Id int When specified, this downtime will only apply to this monitor
- List<string>
A list of monitor tags (up to 32) to base the scheduled downtime on. Only monitors that have all selected tags are silenced
- Mute
First boolRecovery Notification When true the first recovery notification during the downtime will be muted
- Recurrence
Downtime
Recurrence Optional recurring schedule for this downtime
- Scopes List<string>
specify the group scope to which this downtime applies. For everything use '*'
- Start int
Specify when this downtime should start. Accepts a Unix timestamp in UTC.
- Start
Date string String representing date and time to start the downtime in RFC3339 format.
- Timezone string
The timezone for the downtime, default UTC. Follows IANA timezone database identifiers.
- Active bool
When true indicates this downtime is being actively applied
- Active
Child intId The id corresponding to the downtime object definition of the active child for the original parent recurring downtime. This field will only exist on recurring downtimes.
- Disabled bool
When true indicates this downtime is not being applied
- End int
Optionally specify an end date when this downtime should expire. Accepts a Unix timestamp in UTC.
- End
Date string String representing date and time to end the downtime in RFC3339 format.
- Message string
An optional message to provide when creating the downtime, can include notification handles
- Monitor
Id int When specified, this downtime will only apply to this monitor
- []string
A list of monitor tags (up to 32) to base the scheduled downtime on. Only monitors that have all selected tags are silenced
- Mute
First boolRecovery Notification When true the first recovery notification during the downtime will be muted
- Recurrence
Downtime
Recurrence Args Optional recurring schedule for this downtime
- Scopes []string
specify the group scope to which this downtime applies. For everything use '*'
- Start int
Specify when this downtime should start. Accepts a Unix timestamp in UTC.
- Start
Date string String representing date and time to start the downtime in RFC3339 format.
- Timezone string
The timezone for the downtime, default UTC. Follows IANA timezone database identifiers.
- active Boolean
When true indicates this downtime is being actively applied
- active
Child IntegerId The id corresponding to the downtime object definition of the active child for the original parent recurring downtime. This field will only exist on recurring downtimes.
- disabled Boolean
When true indicates this downtime is not being applied
- end Integer
Optionally specify an end date when this downtime should expire. Accepts a Unix timestamp in UTC.
- end
Date String String representing date and time to end the downtime in RFC3339 format.
- message String
An optional message to provide when creating the downtime, can include notification handles
- monitor
Id Integer When specified, this downtime will only apply to this monitor
- List<String>
A list of monitor tags (up to 32) to base the scheduled downtime on. Only monitors that have all selected tags are silenced
- mute
First BooleanRecovery Notification When true the first recovery notification during the downtime will be muted
- recurrence
Downtime
Recurrence Optional recurring schedule for this downtime
- scopes List<String>
specify the group scope to which this downtime applies. For everything use '*'
- start Integer
Specify when this downtime should start. Accepts a Unix timestamp in UTC.
- start
Date String String representing date and time to start the downtime in RFC3339 format.
- timezone String
The timezone for the downtime, default UTC. Follows IANA timezone database identifiers.
- active boolean
When true indicates this downtime is being actively applied
- active
Child numberId The id corresponding to the downtime object definition of the active child for the original parent recurring downtime. This field will only exist on recurring downtimes.
- disabled boolean
When true indicates this downtime is not being applied
- end number
Optionally specify an end date when this downtime should expire. Accepts a Unix timestamp in UTC.
- end
Date string String representing date and time to end the downtime in RFC3339 format.
- message string
An optional message to provide when creating the downtime, can include notification handles
- monitor
Id number When specified, this downtime will only apply to this monitor
- string[]
A list of monitor tags (up to 32) to base the scheduled downtime on. Only monitors that have all selected tags are silenced
- mute
First booleanRecovery Notification When true the first recovery notification during the downtime will be muted
- recurrence
Downtime
Recurrence Optional recurring schedule for this downtime
- scopes string[]
specify the group scope to which this downtime applies. For everything use '*'
- start number
Specify when this downtime should start. Accepts a Unix timestamp in UTC.
- start
Date string String representing date and time to start the downtime in RFC3339 format.
- timezone string
The timezone for the downtime, default UTC. Follows IANA timezone database identifiers.
- active bool
When true indicates this downtime is being actively applied
- active_
child_ intid The id corresponding to the downtime object definition of the active child for the original parent recurring downtime. This field will only exist on recurring downtimes.
- disabled bool
When true indicates this downtime is not being applied
- end int
Optionally specify an end date when this downtime should expire. Accepts a Unix timestamp in UTC.
- end_
date str String representing date and time to end the downtime in RFC3339 format.
- message str
An optional message to provide when creating the downtime, can include notification handles
- monitor_
id int When specified, this downtime will only apply to this monitor
- Sequence[str]
A list of monitor tags (up to 32) to base the scheduled downtime on. Only monitors that have all selected tags are silenced
- mute_
first_ boolrecovery_ notification When true the first recovery notification during the downtime will be muted
- recurrence
Downtime
Recurrence Args Optional recurring schedule for this downtime
- scopes Sequence[str]
specify the group scope to which this downtime applies. For everything use '*'
- start int
Specify when this downtime should start. Accepts a Unix timestamp in UTC.
- start_
date str String representing date and time to start the downtime in RFC3339 format.
- timezone str
The timezone for the downtime, default UTC. Follows IANA timezone database identifiers.
- active Boolean
When true indicates this downtime is being actively applied
- active
Child NumberId The id corresponding to the downtime object definition of the active child for the original parent recurring downtime. This field will only exist on recurring downtimes.
- disabled Boolean
When true indicates this downtime is not being applied
- end Number
Optionally specify an end date when this downtime should expire. Accepts a Unix timestamp in UTC.
- end
Date String String representing date and time to end the downtime in RFC3339 format.
- message String
An optional message to provide when creating the downtime, can include notification handles
- monitor
Id Number When specified, this downtime will only apply to this monitor
- List<String>
A list of monitor tags (up to 32) to base the scheduled downtime on. Only monitors that have all selected tags are silenced
- mute
First BooleanRecovery Notification When true the first recovery notification during the downtime will be muted
- recurrence Property Map
Optional recurring schedule for this downtime
- scopes List<String>
specify the group scope to which this downtime applies. For everything use '*'
- start Number
Specify when this downtime should start. Accepts a Unix timestamp in UTC.
- start
Date String String representing date and time to start the downtime in RFC3339 format.
- timezone String
The timezone for the downtime, default UTC. Follows IANA timezone database identifiers.
Supporting Types
DowntimeRecurrence, DowntimeRecurrenceArgs
- Type string
One of
days
,weeks
,months
,years
, orrrule
.- Period int
How often to repeat as an integer. For example to repeat every 3 days, select a
type
ofdays
and aperiod
of3
.- Rrule string
The RRULE standard for defining recurring events. For example, to have a recurring event on the first day of each month, use
FREQ=MONTHLY;INTERVAL=1
. Most common rrule options from the iCalendar Spec are supported. Attributes specifying the duration in RRULE are not supported (for example,DTSTART
,DTEND
,DURATION
). Only applicable whentype
isrrule
.- Until
Date int The date at which the recurrence should end as a POSIX timestamp.
until_occurrences
anduntil_date
are mutually exclusive.- Until
Occurrences int How many times the downtime will be rescheduled.
until_occurrences
anduntil_date
are mutually exclusive.- Week
Days List<string> A list of week days to repeat on. Choose from:
Mon
,Tue
,Wed
,Thu
,Fri
,Sat
orSun
. Only applicable whentype
isweeks
. First letter must be capitalized.
- Type string
One of
days
,weeks
,months
,years
, orrrule
.- Period int
How often to repeat as an integer. For example to repeat every 3 days, select a
type
ofdays
and aperiod
of3
.- Rrule string
The RRULE standard for defining recurring events. For example, to have a recurring event on the first day of each month, use
FREQ=MONTHLY;INTERVAL=1
. Most common rrule options from the iCalendar Spec are supported. Attributes specifying the duration in RRULE are not supported (for example,DTSTART
,DTEND
,DURATION
). Only applicable whentype
isrrule
.- Until
Date int The date at which the recurrence should end as a POSIX timestamp.
until_occurrences
anduntil_date
are mutually exclusive.- Until
Occurrences int How many times the downtime will be rescheduled.
until_occurrences
anduntil_date
are mutually exclusive.- Week
Days []string A list of week days to repeat on. Choose from:
Mon
,Tue
,Wed
,Thu
,Fri
,Sat
orSun
. Only applicable whentype
isweeks
. First letter must be capitalized.
- type String
One of
days
,weeks
,months
,years
, orrrule
.- period Integer
How often to repeat as an integer. For example to repeat every 3 days, select a
type
ofdays
and aperiod
of3
.- rrule String
The RRULE standard for defining recurring events. For example, to have a recurring event on the first day of each month, use
FREQ=MONTHLY;INTERVAL=1
. Most common rrule options from the iCalendar Spec are supported. Attributes specifying the duration in RRULE are not supported (for example,DTSTART
,DTEND
,DURATION
). Only applicable whentype
isrrule
.- until
Date Integer The date at which the recurrence should end as a POSIX timestamp.
until_occurrences
anduntil_date
are mutually exclusive.- until
Occurrences Integer How many times the downtime will be rescheduled.
until_occurrences
anduntil_date
are mutually exclusive.- week
Days List<String> A list of week days to repeat on. Choose from:
Mon
,Tue
,Wed
,Thu
,Fri
,Sat
orSun
. Only applicable whentype
isweeks
. First letter must be capitalized.
- type string
One of
days
,weeks
,months
,years
, orrrule
.- period number
How often to repeat as an integer. For example to repeat every 3 days, select a
type
ofdays
and aperiod
of3
.- rrule string
The RRULE standard for defining recurring events. For example, to have a recurring event on the first day of each month, use
FREQ=MONTHLY;INTERVAL=1
. Most common rrule options from the iCalendar Spec are supported. Attributes specifying the duration in RRULE are not supported (for example,DTSTART
,DTEND
,DURATION
). Only applicable whentype
isrrule
.- until
Date number The date at which the recurrence should end as a POSIX timestamp.
until_occurrences
anduntil_date
are mutually exclusive.- until
Occurrences number How many times the downtime will be rescheduled.
until_occurrences
anduntil_date
are mutually exclusive.- week
Days string[] A list of week days to repeat on. Choose from:
Mon
,Tue
,Wed
,Thu
,Fri
,Sat
orSun
. Only applicable whentype
isweeks
. First letter must be capitalized.
- type str
One of
days
,weeks
,months
,years
, orrrule
.- period int
How often to repeat as an integer. For example to repeat every 3 days, select a
type
ofdays
and aperiod
of3
.- rrule str
The RRULE standard for defining recurring events. For example, to have a recurring event on the first day of each month, use
FREQ=MONTHLY;INTERVAL=1
. Most common rrule options from the iCalendar Spec are supported. Attributes specifying the duration in RRULE are not supported (for example,DTSTART
,DTEND
,DURATION
). Only applicable whentype
isrrule
.- until_
date int The date at which the recurrence should end as a POSIX timestamp.
until_occurrences
anduntil_date
are mutually exclusive.- until_
occurrences int How many times the downtime will be rescheduled.
until_occurrences
anduntil_date
are mutually exclusive.- week_
days Sequence[str] A list of week days to repeat on. Choose from:
Mon
,Tue
,Wed
,Thu
,Fri
,Sat
orSun
. Only applicable whentype
isweeks
. First letter must be capitalized.
- type String
One of
days
,weeks
,months
,years
, orrrule
.- period Number
How often to repeat as an integer. For example to repeat every 3 days, select a
type
ofdays
and aperiod
of3
.- rrule String
The RRULE standard for defining recurring events. For example, to have a recurring event on the first day of each month, use
FREQ=MONTHLY;INTERVAL=1
. Most common rrule options from the iCalendar Spec are supported. Attributes specifying the duration in RRULE are not supported (for example,DTSTART
,DTEND
,DURATION
). Only applicable whentype
isrrule
.- until
Date Number The date at which the recurrence should end as a POSIX timestamp.
until_occurrences
anduntil_date
are mutually exclusive.- until
Occurrences Number How many times the downtime will be rescheduled.
until_occurrences
anduntil_date
are mutually exclusive.- week
Days List<String> A list of week days to repeat on. Choose from:
Mon
,Tue
,Wed
,Thu
,Fri
,Sat
orSun
. Only applicable whentype
isweeks
. First letter must be capitalized.
Import
$ pulumi import datadog:index/downtime:Downtime bytes_received_localhost 2081
Package Details
- Repository
- Datadog pulumi/pulumi-datadog
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
datadog
Terraform Provider.