dynatrace.Maintenance
Explore with Pulumi AI
Create Maintenance Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Maintenance(name: string, args: MaintenanceArgs, opts?: CustomResourceOptions);
@overload
def Maintenance(resource_name: str,
args: MaintenanceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Maintenance(resource_name: str,
opts: Optional[ResourceOptions] = None,
enabled: Optional[bool] = None,
general_properties: Optional[MaintenanceGeneralPropertiesArgs] = None,
schedule: Optional[MaintenanceScheduleArgs] = None,
filters: Optional[MaintenanceFiltersArgs] = None,
legacy_id: Optional[str] = None)
func NewMaintenance(ctx *Context, name string, args MaintenanceArgs, opts ...ResourceOption) (*Maintenance, error)
public Maintenance(string name, MaintenanceArgs args, CustomResourceOptions? opts = null)
public Maintenance(String name, MaintenanceArgs args)
public Maintenance(String name, MaintenanceArgs args, CustomResourceOptions options)
type: dynatrace:Maintenance
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name
This property is required. string - The unique name of the resource.
- args
This property is required. MaintenanceArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. MaintenanceArgs - The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. MaintenanceArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. MaintenanceArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. MaintenanceArgs - 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 maintenanceResource = new Dynatrace.Maintenance("maintenanceResource", new()
{
Enabled = false,
GeneralProperties = new Dynatrace.Inputs.MaintenanceGeneralPropertiesArgs
{
DisableSynthetic = false,
Name = "string",
Suppression = "string",
Type = "string",
Description = "string",
},
Schedule = new Dynatrace.Inputs.MaintenanceScheduleArgs
{
Type = "string",
DailyRecurrence = new Dynatrace.Inputs.MaintenanceScheduleDailyRecurrenceArgs
{
RecurrenceRange = new Dynatrace.Inputs.MaintenanceScheduleDailyRecurrenceRecurrenceRangeArgs
{
EndDate = "string",
StartDate = "string",
},
TimeWindow = new Dynatrace.Inputs.MaintenanceScheduleDailyRecurrenceTimeWindowArgs
{
EndTime = "string",
StartTime = "string",
TimeZone = "string",
},
},
MonthlyRecurrence = new Dynatrace.Inputs.MaintenanceScheduleMonthlyRecurrenceArgs
{
DayOfMonth = 0,
RecurrenceRange = new Dynatrace.Inputs.MaintenanceScheduleMonthlyRecurrenceRecurrenceRangeArgs
{
EndDate = "string",
StartDate = "string",
},
TimeWindow = new Dynatrace.Inputs.MaintenanceScheduleMonthlyRecurrenceTimeWindowArgs
{
EndTime = "string",
StartTime = "string",
TimeZone = "string",
},
},
OnceRecurrence = new Dynatrace.Inputs.MaintenanceScheduleOnceRecurrenceArgs
{
EndTime = "string",
StartTime = "string",
TimeZone = "string",
},
WeeklyRecurrence = new Dynatrace.Inputs.MaintenanceScheduleWeeklyRecurrenceArgs
{
DayOfWeek = "string",
RecurrenceRange = new Dynatrace.Inputs.MaintenanceScheduleWeeklyRecurrenceRecurrenceRangeArgs
{
EndDate = "string",
StartDate = "string",
},
TimeWindow = new Dynatrace.Inputs.MaintenanceScheduleWeeklyRecurrenceTimeWindowArgs
{
EndTime = "string",
StartTime = "string",
TimeZone = "string",
},
},
},
Filters = new Dynatrace.Inputs.MaintenanceFiltersArgs
{
Filters = new[]
{
new Dynatrace.Inputs.MaintenanceFiltersFilterArgs
{
EntityId = "string",
EntityTags = new[]
{
"string",
},
EntityType = "string",
ManagementZones = new[]
{
"string",
},
},
},
},
LegacyId = "string",
});
example, err := dynatrace.NewMaintenance(ctx, "maintenanceResource", &dynatrace.MaintenanceArgs{
Enabled: pulumi.Bool(false),
GeneralProperties: &dynatrace.MaintenanceGeneralPropertiesArgs{
DisableSynthetic: pulumi.Bool(false),
Name: pulumi.String("string"),
Suppression: pulumi.String("string"),
Type: pulumi.String("string"),
Description: pulumi.String("string"),
},
Schedule: &dynatrace.MaintenanceScheduleArgs{
Type: pulumi.String("string"),
DailyRecurrence: &dynatrace.MaintenanceScheduleDailyRecurrenceArgs{
RecurrenceRange: &dynatrace.MaintenanceScheduleDailyRecurrenceRecurrenceRangeArgs{
EndDate: pulumi.String("string"),
StartDate: pulumi.String("string"),
},
TimeWindow: &dynatrace.MaintenanceScheduleDailyRecurrenceTimeWindowArgs{
EndTime: pulumi.String("string"),
StartTime: pulumi.String("string"),
TimeZone: pulumi.String("string"),
},
},
MonthlyRecurrence: &dynatrace.MaintenanceScheduleMonthlyRecurrenceArgs{
DayOfMonth: pulumi.Int(0),
RecurrenceRange: &dynatrace.MaintenanceScheduleMonthlyRecurrenceRecurrenceRangeArgs{
EndDate: pulumi.String("string"),
StartDate: pulumi.String("string"),
},
TimeWindow: &dynatrace.MaintenanceScheduleMonthlyRecurrenceTimeWindowArgs{
EndTime: pulumi.String("string"),
StartTime: pulumi.String("string"),
TimeZone: pulumi.String("string"),
},
},
OnceRecurrence: &dynatrace.MaintenanceScheduleOnceRecurrenceArgs{
EndTime: pulumi.String("string"),
StartTime: pulumi.String("string"),
TimeZone: pulumi.String("string"),
},
WeeklyRecurrence: &dynatrace.MaintenanceScheduleWeeklyRecurrenceArgs{
DayOfWeek: pulumi.String("string"),
RecurrenceRange: &dynatrace.MaintenanceScheduleWeeklyRecurrenceRecurrenceRangeArgs{
EndDate: pulumi.String("string"),
StartDate: pulumi.String("string"),
},
TimeWindow: &dynatrace.MaintenanceScheduleWeeklyRecurrenceTimeWindowArgs{
EndTime: pulumi.String("string"),
StartTime: pulumi.String("string"),
TimeZone: pulumi.String("string"),
},
},
},
Filters: &dynatrace.MaintenanceFiltersArgs{
Filters: dynatrace.MaintenanceFiltersFilterArray{
&dynatrace.MaintenanceFiltersFilterArgs{
EntityId: pulumi.String("string"),
EntityTags: pulumi.StringArray{
pulumi.String("string"),
},
EntityType: pulumi.String("string"),
ManagementZones: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
LegacyId: pulumi.String("string"),
})
var maintenanceResource = new Maintenance("maintenanceResource", MaintenanceArgs.builder()
.enabled(false)
.generalProperties(MaintenanceGeneralPropertiesArgs.builder()
.disableSynthetic(false)
.name("string")
.suppression("string")
.type("string")
.description("string")
.build())
.schedule(MaintenanceScheduleArgs.builder()
.type("string")
.dailyRecurrence(MaintenanceScheduleDailyRecurrenceArgs.builder()
.recurrenceRange(MaintenanceScheduleDailyRecurrenceRecurrenceRangeArgs.builder()
.endDate("string")
.startDate("string")
.build())
.timeWindow(MaintenanceScheduleDailyRecurrenceTimeWindowArgs.builder()
.endTime("string")
.startTime("string")
.timeZone("string")
.build())
.build())
.monthlyRecurrence(MaintenanceScheduleMonthlyRecurrenceArgs.builder()
.dayOfMonth(0)
.recurrenceRange(MaintenanceScheduleMonthlyRecurrenceRecurrenceRangeArgs.builder()
.endDate("string")
.startDate("string")
.build())
.timeWindow(MaintenanceScheduleMonthlyRecurrenceTimeWindowArgs.builder()
.endTime("string")
.startTime("string")
.timeZone("string")
.build())
.build())
.onceRecurrence(MaintenanceScheduleOnceRecurrenceArgs.builder()
.endTime("string")
.startTime("string")
.timeZone("string")
.build())
.weeklyRecurrence(MaintenanceScheduleWeeklyRecurrenceArgs.builder()
.dayOfWeek("string")
.recurrenceRange(MaintenanceScheduleWeeklyRecurrenceRecurrenceRangeArgs.builder()
.endDate("string")
.startDate("string")
.build())
.timeWindow(MaintenanceScheduleWeeklyRecurrenceTimeWindowArgs.builder()
.endTime("string")
.startTime("string")
.timeZone("string")
.build())
.build())
.build())
.filters(MaintenanceFiltersArgs.builder()
.filters(MaintenanceFiltersFilterArgs.builder()
.entityId("string")
.entityTags("string")
.entityType("string")
.managementZones("string")
.build())
.build())
.legacyId("string")
.build());
maintenance_resource = dynatrace.Maintenance("maintenanceResource",
enabled=False,
general_properties={
"disable_synthetic": False,
"name": "string",
"suppression": "string",
"type": "string",
"description": "string",
},
schedule={
"type": "string",
"daily_recurrence": {
"recurrence_range": {
"end_date": "string",
"start_date": "string",
},
"time_window": {
"end_time": "string",
"start_time": "string",
"time_zone": "string",
},
},
"monthly_recurrence": {
"day_of_month": 0,
"recurrence_range": {
"end_date": "string",
"start_date": "string",
},
"time_window": {
"end_time": "string",
"start_time": "string",
"time_zone": "string",
},
},
"once_recurrence": {
"end_time": "string",
"start_time": "string",
"time_zone": "string",
},
"weekly_recurrence": {
"day_of_week": "string",
"recurrence_range": {
"end_date": "string",
"start_date": "string",
},
"time_window": {
"end_time": "string",
"start_time": "string",
"time_zone": "string",
},
},
},
filters={
"filters": [{
"entity_id": "string",
"entity_tags": ["string"],
"entity_type": "string",
"management_zones": ["string"],
}],
},
legacy_id="string")
const maintenanceResource = new dynatrace.Maintenance("maintenanceResource", {
enabled: false,
generalProperties: {
disableSynthetic: false,
name: "string",
suppression: "string",
type: "string",
description: "string",
},
schedule: {
type: "string",
dailyRecurrence: {
recurrenceRange: {
endDate: "string",
startDate: "string",
},
timeWindow: {
endTime: "string",
startTime: "string",
timeZone: "string",
},
},
monthlyRecurrence: {
dayOfMonth: 0,
recurrenceRange: {
endDate: "string",
startDate: "string",
},
timeWindow: {
endTime: "string",
startTime: "string",
timeZone: "string",
},
},
onceRecurrence: {
endTime: "string",
startTime: "string",
timeZone: "string",
},
weeklyRecurrence: {
dayOfWeek: "string",
recurrenceRange: {
endDate: "string",
startDate: "string",
},
timeWindow: {
endTime: "string",
startTime: "string",
timeZone: "string",
},
},
},
filters: {
filters: [{
entityId: "string",
entityTags: ["string"],
entityType: "string",
managementZones: ["string"],
}],
},
legacyId: "string",
});
type: dynatrace:Maintenance
properties:
enabled: false
filters:
filters:
- entityId: string
entityTags:
- string
entityType: string
managementZones:
- string
generalProperties:
description: string
disableSynthetic: false
name: string
suppression: string
type: string
legacyId: string
schedule:
dailyRecurrence:
recurrenceRange:
endDate: string
startDate: string
timeWindow:
endTime: string
startTime: string
timeZone: string
monthlyRecurrence:
dayOfMonth: 0
recurrenceRange:
endDate: string
startDate: string
timeWindow:
endTime: string
startTime: string
timeZone: string
onceRecurrence:
endTime: string
startTime: string
timeZone: string
type: string
weeklyRecurrence:
dayOfWeek: string
recurrenceRange:
endDate: string
startDate: string
timeWindow:
endTime: string
startTime: string
timeZone: string
Maintenance 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 Maintenance resource accepts the following input properties:
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - General
Properties This property is required. Pulumiverse.Dynatrace. Inputs. Maintenance General Properties - The general properties of the maintenance window
- Schedule
This property is required. Pulumiverse.Dynatrace. Inputs. Maintenance Schedule - The schedule of the maintenance window
- Filters
Pulumiverse.
Dynatrace. Inputs. Maintenance Filters Filters
Add filters to limit the scope of maintenance to only select matching entities. If no filter is defined, the maintenance window is valid for the whole environment. Each filter is evaluated separately (OR).
- Legacy
Id string - The ID of this setting when referred to by the Config REST API V1
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - General
Properties This property is required. MaintenanceGeneral Properties Args - The general properties of the maintenance window
- Schedule
This property is required. MaintenanceSchedule Args - The schedule of the maintenance window
- Filters
Maintenance
Filters Args Filters
Add filters to limit the scope of maintenance to only select matching entities. If no filter is defined, the maintenance window is valid for the whole environment. Each filter is evaluated separately (OR).
- Legacy
Id string - The ID of this setting when referred to by the Config REST API V1
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - general
Properties This property is required. MaintenanceGeneral Properties - The general properties of the maintenance window
- schedule
This property is required. MaintenanceSchedule - The schedule of the maintenance window
- filters
Maintenance
Filters Filters
Add filters to limit the scope of maintenance to only select matching entities. If no filter is defined, the maintenance window is valid for the whole environment. Each filter is evaluated separately (OR).
- legacy
Id String - The ID of this setting when referred to by the Config REST API V1
- enabled
This property is required. boolean - This setting is enabled (
true
) or disabled (false
) - general
Properties This property is required. MaintenanceGeneral Properties - The general properties of the maintenance window
- schedule
This property is required. MaintenanceSchedule - The schedule of the maintenance window
- filters
Maintenance
Filters Filters
Add filters to limit the scope of maintenance to only select matching entities. If no filter is defined, the maintenance window is valid for the whole environment. Each filter is evaluated separately (OR).
- legacy
Id string - The ID of this setting when referred to by the Config REST API V1
- enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - general_
properties This property is required. MaintenanceGeneral Properties Args - The general properties of the maintenance window
- schedule
This property is required. MaintenanceSchedule Args - The schedule of the maintenance window
- filters
Maintenance
Filters Args Filters
Add filters to limit the scope of maintenance to only select matching entities. If no filter is defined, the maintenance window is valid for the whole environment. Each filter is evaluated separately (OR).
- legacy_
id str - The ID of this setting when referred to by the Config REST API V1
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - general
Properties This property is required. Property Map - The general properties of the maintenance window
- schedule
This property is required. Property Map - The schedule of the maintenance window
- filters Property Map
Filters
Add filters to limit the scope of maintenance to only select matching entities. If no filter is defined, the maintenance window is valid for the whole environment. Each filter is evaluated separately (OR).
- legacy
Id String - The ID of this setting when referred to by the Config REST API V1
Outputs
All input properties are implicitly available as output properties. Additionally, the Maintenance resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Maintenance Resource
Get an existing Maintenance 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?: MaintenanceState, opts?: CustomResourceOptions): Maintenance
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
enabled: Optional[bool] = None,
filters: Optional[MaintenanceFiltersArgs] = None,
general_properties: Optional[MaintenanceGeneralPropertiesArgs] = None,
legacy_id: Optional[str] = None,
schedule: Optional[MaintenanceScheduleArgs] = None) -> Maintenance
func GetMaintenance(ctx *Context, name string, id IDInput, state *MaintenanceState, opts ...ResourceOption) (*Maintenance, error)
public static Maintenance Get(string name, Input<string> id, MaintenanceState? state, CustomResourceOptions? opts = null)
public static Maintenance get(String name, Output<String> id, MaintenanceState state, CustomResourceOptions options)
resources: _: type: dynatrace:Maintenance get: id: ${id}
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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.
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Filters
Pulumiverse.
Dynatrace. Inputs. Maintenance Filters Filters
Add filters to limit the scope of maintenance to only select matching entities. If no filter is defined, the maintenance window is valid for the whole environment. Each filter is evaluated separately (OR).
- General
Properties Pulumiverse.Dynatrace. Inputs. Maintenance General Properties - The general properties of the maintenance window
- Legacy
Id string - The ID of this setting when referred to by the Config REST API V1
- Schedule
Pulumiverse.
Dynatrace. Inputs. Maintenance Schedule - The schedule of the maintenance window
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Filters
Maintenance
Filters Args Filters
Add filters to limit the scope of maintenance to only select matching entities. If no filter is defined, the maintenance window is valid for the whole environment. Each filter is evaluated separately (OR).
- General
Properties MaintenanceGeneral Properties Args - The general properties of the maintenance window
- Legacy
Id string - The ID of this setting when referred to by the Config REST API V1
- Schedule
Maintenance
Schedule Args - The schedule of the maintenance window
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - filters
Maintenance
Filters Filters
Add filters to limit the scope of maintenance to only select matching entities. If no filter is defined, the maintenance window is valid for the whole environment. Each filter is evaluated separately (OR).
- general
Properties MaintenanceGeneral Properties - The general properties of the maintenance window
- legacy
Id String - The ID of this setting when referred to by the Config REST API V1
- schedule
Maintenance
Schedule - The schedule of the maintenance window
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - filters
Maintenance
Filters Filters
Add filters to limit the scope of maintenance to only select matching entities. If no filter is defined, the maintenance window is valid for the whole environment. Each filter is evaluated separately (OR).
- general
Properties MaintenanceGeneral Properties - The general properties of the maintenance window
- legacy
Id string - The ID of this setting when referred to by the Config REST API V1
- schedule
Maintenance
Schedule - The schedule of the maintenance window
- enabled bool
- This setting is enabled (
true
) or disabled (false
) - filters
Maintenance
Filters Args Filters
Add filters to limit the scope of maintenance to only select matching entities. If no filter is defined, the maintenance window is valid for the whole environment. Each filter is evaluated separately (OR).
- general_
properties MaintenanceGeneral Properties Args - The general properties of the maintenance window
- legacy_
id str - The ID of this setting when referred to by the Config REST API V1
- schedule
Maintenance
Schedule Args - The schedule of the maintenance window
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - filters Property Map
Filters
Add filters to limit the scope of maintenance to only select matching entities. If no filter is defined, the maintenance window is valid for the whole environment. Each filter is evaluated separately (OR).
- general
Properties Property Map - The general properties of the maintenance window
- legacy
Id String - The ID of this setting when referred to by the Config REST API V1
- schedule Property Map
- The schedule of the maintenance window
Supporting Types
MaintenanceFilters, MaintenanceFiltersArgs
- Filters
This property is required. List<Pulumiverse.Dynatrace. Inputs. Maintenance Filters Filter>
- Filters
This property is required. []MaintenanceFilters Filter
- filters
This property is required. List<MaintenanceFilters Filter>
- filters
This property is required. MaintenanceFilters Filter[]
- filters
This property is required. Sequence[MaintenanceFilters Filter]
- filters
This property is required. List<Property Map>
MaintenanceFiltersFilter, MaintenanceFiltersFilterArgs
- Entity
Id string - A specific entity that should match this maintenance window.. Note: If an entity type filter value is set, it must be equal to the type of the selected entity. Otherwise this maintenance window will not match.
- List<string>
- Entities which contain all of the configured tags will match this maintenance window.
- Entity
Type string - Type of entities this maintenance window should match.. If no entity type is selected all entities regardless of the type will match.
- Management
Zones List<string> - Entities which are part of all the configured management zones will match this maintenance window.
- Entity
Id string - A specific entity that should match this maintenance window.. Note: If an entity type filter value is set, it must be equal to the type of the selected entity. Otherwise this maintenance window will not match.
- []string
- Entities which contain all of the configured tags will match this maintenance window.
- Entity
Type string - Type of entities this maintenance window should match.. If no entity type is selected all entities regardless of the type will match.
- Management
Zones []string - Entities which are part of all the configured management zones will match this maintenance window.
- entity
Id String - A specific entity that should match this maintenance window.. Note: If an entity type filter value is set, it must be equal to the type of the selected entity. Otherwise this maintenance window will not match.
- List<String>
- Entities which contain all of the configured tags will match this maintenance window.
- entity
Type String - Type of entities this maintenance window should match.. If no entity type is selected all entities regardless of the type will match.
- management
Zones List<String> - Entities which are part of all the configured management zones will match this maintenance window.
- entity
Id string - A specific entity that should match this maintenance window.. Note: If an entity type filter value is set, it must be equal to the type of the selected entity. Otherwise this maintenance window will not match.
- string[]
- Entities which contain all of the configured tags will match this maintenance window.
- entity
Type string - Type of entities this maintenance window should match.. If no entity type is selected all entities regardless of the type will match.
- management
Zones string[] - Entities which are part of all the configured management zones will match this maintenance window.
- entity_
id str - A specific entity that should match this maintenance window.. Note: If an entity type filter value is set, it must be equal to the type of the selected entity. Otherwise this maintenance window will not match.
- Sequence[str]
- Entities which contain all of the configured tags will match this maintenance window.
- entity_
type str - Type of entities this maintenance window should match.. If no entity type is selected all entities regardless of the type will match.
- management_
zones Sequence[str] - Entities which are part of all the configured management zones will match this maintenance window.
- entity
Id String - A specific entity that should match this maintenance window.. Note: If an entity type filter value is set, it must be equal to the type of the selected entity. Otherwise this maintenance window will not match.
- List<String>
- Entities which contain all of the configured tags will match this maintenance window.
- entity
Type String - Type of entities this maintenance window should match.. If no entity type is selected all entities regardless of the type will match.
- management
Zones List<String> - Entities which are part of all the configured management zones will match this maintenance window.
MaintenanceGeneralProperties, MaintenanceGeneralPropertiesArgs
- Disable
Synthetic This property is required. bool - Disables the execution of the synthetic monitors that are within the scope of this maintenance window.
- Name
This property is required. string - The name of the maintenance window, displayed in the UI
- Suppression
This property is required. string - The type of suppression of alerting and problem detection during the maintenance. Possible Values:
DETECT_PROBLEMS_AND_ALERT
,DETECT_PROBLEMS_DONT_ALERT
,DONT_DETECT_PROBLEMS
- Type
This property is required. string - The type of the maintenance, possible values:
PLANNED
orUNPLANNED
- Description string
- A short description of the maintenance purpose.
- Disable
Synthetic This property is required. bool - Disables the execution of the synthetic monitors that are within the scope of this maintenance window.
- Name
This property is required. string - The name of the maintenance window, displayed in the UI
- Suppression
This property is required. string - The type of suppression of alerting and problem detection during the maintenance. Possible Values:
DETECT_PROBLEMS_AND_ALERT
,DETECT_PROBLEMS_DONT_ALERT
,DONT_DETECT_PROBLEMS
- Type
This property is required. string - The type of the maintenance, possible values:
PLANNED
orUNPLANNED
- Description string
- A short description of the maintenance purpose.
- disable
Synthetic This property is required. Boolean - Disables the execution of the synthetic monitors that are within the scope of this maintenance window.
- name
This property is required. String - The name of the maintenance window, displayed in the UI
- suppression
This property is required. String - The type of suppression of alerting and problem detection during the maintenance. Possible Values:
DETECT_PROBLEMS_AND_ALERT
,DETECT_PROBLEMS_DONT_ALERT
,DONT_DETECT_PROBLEMS
- type
This property is required. String - The type of the maintenance, possible values:
PLANNED
orUNPLANNED
- description String
- A short description of the maintenance purpose.
- disable
Synthetic This property is required. boolean - Disables the execution of the synthetic monitors that are within the scope of this maintenance window.
- name
This property is required. string - The name of the maintenance window, displayed in the UI
- suppression
This property is required. string - The type of suppression of alerting and problem detection during the maintenance. Possible Values:
DETECT_PROBLEMS_AND_ALERT
,DETECT_PROBLEMS_DONT_ALERT
,DONT_DETECT_PROBLEMS
- type
This property is required. string - The type of the maintenance, possible values:
PLANNED
orUNPLANNED
- description string
- A short description of the maintenance purpose.
- disable_
synthetic This property is required. bool - Disables the execution of the synthetic monitors that are within the scope of this maintenance window.
- name
This property is required. str - The name of the maintenance window, displayed in the UI
- suppression
This property is required. str - The type of suppression of alerting and problem detection during the maintenance. Possible Values:
DETECT_PROBLEMS_AND_ALERT
,DETECT_PROBLEMS_DONT_ALERT
,DONT_DETECT_PROBLEMS
- type
This property is required. str - The type of the maintenance, possible values:
PLANNED
orUNPLANNED
- description str
- A short description of the maintenance purpose.
- disable
Synthetic This property is required. Boolean - Disables the execution of the synthetic monitors that are within the scope of this maintenance window.
- name
This property is required. String - The name of the maintenance window, displayed in the UI
- suppression
This property is required. String - The type of suppression of alerting and problem detection during the maintenance. Possible Values:
DETECT_PROBLEMS_AND_ALERT
,DETECT_PROBLEMS_DONT_ALERT
,DONT_DETECT_PROBLEMS
- type
This property is required. String - The type of the maintenance, possible values:
PLANNED
orUNPLANNED
- description String
- A short description of the maintenance purpose.
MaintenanceSchedule, MaintenanceScheduleArgs
- Type
This property is required. string - The type maintenance window, possible values:
DAILY
,MONTHLY
,ONCE
,WEEKLY
- Daily
Recurrence Pulumiverse.Dynatrace. Inputs. Maintenance Schedule Daily Recurrence - The configuration for maintenance windows occuring daily
- Monthly
Recurrence Pulumiverse.Dynatrace. Inputs. Maintenance Schedule Monthly Recurrence - The configuration for maintenance windows occuring monthly
- Once
Recurrence Pulumiverse.Dynatrace. Inputs. Maintenance Schedule Once Recurrence - The configuration for maintenance windows occuring once
- Weekly
Recurrence Pulumiverse.Dynatrace. Inputs. Maintenance Schedule Weekly Recurrence - The configuration for maintenance windows occuring weekly
- Type
This property is required. string - The type maintenance window, possible values:
DAILY
,MONTHLY
,ONCE
,WEEKLY
- Daily
Recurrence MaintenanceSchedule Daily Recurrence - The configuration for maintenance windows occuring daily
- Monthly
Recurrence MaintenanceSchedule Monthly Recurrence - The configuration for maintenance windows occuring monthly
- Once
Recurrence MaintenanceSchedule Once Recurrence - The configuration for maintenance windows occuring once
- Weekly
Recurrence MaintenanceSchedule Weekly Recurrence - The configuration for maintenance windows occuring weekly
- type
This property is required. String - The type maintenance window, possible values:
DAILY
,MONTHLY
,ONCE
,WEEKLY
- daily
Recurrence MaintenanceSchedule Daily Recurrence - The configuration for maintenance windows occuring daily
- monthly
Recurrence MaintenanceSchedule Monthly Recurrence - The configuration for maintenance windows occuring monthly
- once
Recurrence MaintenanceSchedule Once Recurrence - The configuration for maintenance windows occuring once
- weekly
Recurrence MaintenanceSchedule Weekly Recurrence - The configuration for maintenance windows occuring weekly
- type
This property is required. string - The type maintenance window, possible values:
DAILY
,MONTHLY
,ONCE
,WEEKLY
- daily
Recurrence MaintenanceSchedule Daily Recurrence - The configuration for maintenance windows occuring daily
- monthly
Recurrence MaintenanceSchedule Monthly Recurrence - The configuration for maintenance windows occuring monthly
- once
Recurrence MaintenanceSchedule Once Recurrence - The configuration for maintenance windows occuring once
- weekly
Recurrence MaintenanceSchedule Weekly Recurrence - The configuration for maintenance windows occuring weekly
- type
This property is required. str - The type maintenance window, possible values:
DAILY
,MONTHLY
,ONCE
,WEEKLY
- daily_
recurrence MaintenanceSchedule Daily Recurrence - The configuration for maintenance windows occuring daily
- monthly_
recurrence MaintenanceSchedule Monthly Recurrence - The configuration for maintenance windows occuring monthly
- once_
recurrence MaintenanceSchedule Once Recurrence - The configuration for maintenance windows occuring once
- weekly_
recurrence MaintenanceSchedule Weekly Recurrence - The configuration for maintenance windows occuring weekly
- type
This property is required. String - The type maintenance window, possible values:
DAILY
,MONTHLY
,ONCE
,WEEKLY
- daily
Recurrence Property Map - The configuration for maintenance windows occuring daily
- monthly
Recurrence Property Map - The configuration for maintenance windows occuring monthly
- once
Recurrence Property Map - The configuration for maintenance windows occuring once
- weekly
Recurrence Property Map - The configuration for maintenance windows occuring weekly
MaintenanceScheduleDailyRecurrence, MaintenanceScheduleDailyRecurrenceArgs
- Recurrence
Range This property is required. Pulumiverse.Dynatrace. Inputs. Maintenance Schedule Daily Recurrence Recurrence Range - The recurrence date range of the maintenance window
- Time
Window This property is required. Pulumiverse.Dynatrace. Inputs. Maintenance Schedule Daily Recurrence Time Window - The time window of the maintenance window
- Recurrence
Range This property is required. MaintenanceSchedule Daily Recurrence Recurrence Range - The recurrence date range of the maintenance window
- Time
Window This property is required. MaintenanceSchedule Daily Recurrence Time Window - The time window of the maintenance window
- recurrence
Range This property is required. MaintenanceSchedule Daily Recurrence Recurrence Range - The recurrence date range of the maintenance window
- time
Window This property is required. MaintenanceSchedule Daily Recurrence Time Window - The time window of the maintenance window
- recurrence
Range This property is required. MaintenanceSchedule Daily Recurrence Recurrence Range - The recurrence date range of the maintenance window
- time
Window This property is required. MaintenanceSchedule Daily Recurrence Time Window - The time window of the maintenance window
- recurrence_
range This property is required. MaintenanceSchedule Daily Recurrence Recurrence Range - The recurrence date range of the maintenance window
- time_
window This property is required. MaintenanceSchedule Daily Recurrence Time Window - The time window of the maintenance window
- recurrence
Range This property is required. Property Map - The recurrence date range of the maintenance window
- time
Window This property is required. Property Map - The time window of the maintenance window
MaintenanceScheduleDailyRecurrenceRecurrenceRange, MaintenanceScheduleDailyRecurrenceRecurrenceRangeArgs
- end_
date This property is required. str - The end date of the recurrence range in YYYY-MM-DD format
- start_
date This property is required. str - The start date of the recurrence range in YYYY-MM-DD format
MaintenanceScheduleDailyRecurrenceTimeWindow, MaintenanceScheduleDailyRecurrenceTimeWindowArgs
- End
Time This property is required. string - The end time of the maintenance window validity period in hh:mm:ss format
- Start
Time This property is required. string - The start time of the maintenance window validity period in hh:mm:ss format
- Time
Zone This property is required. string - The time zone of the start and end time. Default time zone is UTC. You can use either UTC offset
UTC+01:00
format or the IANA Time Zone Database format (for example,Europe/Vienna
)
- End
Time This property is required. string - The end time of the maintenance window validity period in hh:mm:ss format
- Start
Time This property is required. string - The start time of the maintenance window validity period in hh:mm:ss format
- Time
Zone This property is required. string - The time zone of the start and end time. Default time zone is UTC. You can use either UTC offset
UTC+01:00
format or the IANA Time Zone Database format (for example,Europe/Vienna
)
- end
Time This property is required. String - The end time of the maintenance window validity period in hh:mm:ss format
- start
Time This property is required. String - The start time of the maintenance window validity period in hh:mm:ss format
- time
Zone This property is required. String - The time zone of the start and end time. Default time zone is UTC. You can use either UTC offset
UTC+01:00
format or the IANA Time Zone Database format (for example,Europe/Vienna
)
- end
Time This property is required. string - The end time of the maintenance window validity period in hh:mm:ss format
- start
Time This property is required. string - The start time of the maintenance window validity period in hh:mm:ss format
- time
Zone This property is required. string - The time zone of the start and end time. Default time zone is UTC. You can use either UTC offset
UTC+01:00
format or the IANA Time Zone Database format (for example,Europe/Vienna
)
- end_
time This property is required. str - The end time of the maintenance window validity period in hh:mm:ss format
- start_
time This property is required. str - The start time of the maintenance window validity period in hh:mm:ss format
- time_
zone This property is required. str - The time zone of the start and end time. Default time zone is UTC. You can use either UTC offset
UTC+01:00
format or the IANA Time Zone Database format (for example,Europe/Vienna
)
- end
Time This property is required. String - The end time of the maintenance window validity period in hh:mm:ss format
- start
Time This property is required. String - The start time of the maintenance window validity period in hh:mm:ss format
- time
Zone This property is required. String - The time zone of the start and end time. Default time zone is UTC. You can use either UTC offset
UTC+01:00
format or the IANA Time Zone Database format (for example,Europe/Vienna
)
MaintenanceScheduleMonthlyRecurrence, MaintenanceScheduleMonthlyRecurrenceArgs
- Day
Of Month This property is required. int - The day of the month for monthly maintenance. If the selected day does not fall within the month, the maintenance window will be active on the last day of the month.
- Recurrence
Range This property is required. Pulumiverse.Dynatrace. Inputs. Maintenance Schedule Monthly Recurrence Recurrence Range - The recurrence date range of the maintenance window
- Time
Window This property is required. Pulumiverse.Dynatrace. Inputs. Maintenance Schedule Monthly Recurrence Time Window - The time window of the maintenance window
- Day
Of Month This property is required. int - The day of the month for monthly maintenance. If the selected day does not fall within the month, the maintenance window will be active on the last day of the month.
- Recurrence
Range This property is required. MaintenanceSchedule Monthly Recurrence Recurrence Range - The recurrence date range of the maintenance window
- Time
Window This property is required. MaintenanceSchedule Monthly Recurrence Time Window - The time window of the maintenance window
- day
Of Month This property is required. Integer - The day of the month for monthly maintenance. If the selected day does not fall within the month, the maintenance window will be active on the last day of the month.
- recurrence
Range This property is required. MaintenanceSchedule Monthly Recurrence Recurrence Range - The recurrence date range of the maintenance window
- time
Window This property is required. MaintenanceSchedule Monthly Recurrence Time Window - The time window of the maintenance window
- day
Of Month This property is required. number - The day of the month for monthly maintenance. If the selected day does not fall within the month, the maintenance window will be active on the last day of the month.
- recurrence
Range This property is required. MaintenanceSchedule Monthly Recurrence Recurrence Range - The recurrence date range of the maintenance window
- time
Window This property is required. MaintenanceSchedule Monthly Recurrence Time Window - The time window of the maintenance window
- day_
of_ month This property is required. int - The day of the month for monthly maintenance. If the selected day does not fall within the month, the maintenance window will be active on the last day of the month.
- recurrence_
range This property is required. MaintenanceSchedule Monthly Recurrence Recurrence Range - The recurrence date range of the maintenance window
- time_
window This property is required. MaintenanceSchedule Monthly Recurrence Time Window - The time window of the maintenance window
- day
Of Month This property is required. Number - The day of the month for monthly maintenance. If the selected day does not fall within the month, the maintenance window will be active on the last day of the month.
- recurrence
Range This property is required. Property Map - The recurrence date range of the maintenance window
- time
Window This property is required. Property Map - The time window of the maintenance window
MaintenanceScheduleMonthlyRecurrenceRecurrenceRange, MaintenanceScheduleMonthlyRecurrenceRecurrenceRangeArgs
- end_
date This property is required. str - The end date of the recurrence range in YYYY-MM-DD format
- start_
date This property is required. str - The start date of the recurrence range in YYYY-MM-DD format
MaintenanceScheduleMonthlyRecurrenceTimeWindow, MaintenanceScheduleMonthlyRecurrenceTimeWindowArgs
- End
Time This property is required. string - The end time of the maintenance window validity period in hh:mm:ss format
- Start
Time This property is required. string - The start time of the maintenance window validity period in hh:mm:ss format
- Time
Zone This property is required. string - The time zone of the start and end time. Default time zone is UTC. You can use either UTC offset
UTC+01:00
format or the IANA Time Zone Database format (for example,Europe/Vienna
)
- End
Time This property is required. string - The end time of the maintenance window validity period in hh:mm:ss format
- Start
Time This property is required. string - The start time of the maintenance window validity period in hh:mm:ss format
- Time
Zone This property is required. string - The time zone of the start and end time. Default time zone is UTC. You can use either UTC offset
UTC+01:00
format or the IANA Time Zone Database format (for example,Europe/Vienna
)
- end
Time This property is required. String - The end time of the maintenance window validity period in hh:mm:ss format
- start
Time This property is required. String - The start time of the maintenance window validity period in hh:mm:ss format
- time
Zone This property is required. String - The time zone of the start and end time. Default time zone is UTC. You can use either UTC offset
UTC+01:00
format or the IANA Time Zone Database format (for example,Europe/Vienna
)
- end
Time This property is required. string - The end time of the maintenance window validity period in hh:mm:ss format
- start
Time This property is required. string - The start time of the maintenance window validity period in hh:mm:ss format
- time
Zone This property is required. string - The time zone of the start and end time. Default time zone is UTC. You can use either UTC offset
UTC+01:00
format or the IANA Time Zone Database format (for example,Europe/Vienna
)
- end_
time This property is required. str - The end time of the maintenance window validity period in hh:mm:ss format
- start_
time This property is required. str - The start time of the maintenance window validity period in hh:mm:ss format
- time_
zone This property is required. str - The time zone of the start and end time. Default time zone is UTC. You can use either UTC offset
UTC+01:00
format or the IANA Time Zone Database format (for example,Europe/Vienna
)
- end
Time This property is required. String - The end time of the maintenance window validity period in hh:mm:ss format
- start
Time This property is required. String - The start time of the maintenance window validity period in hh:mm:ss format
- time
Zone This property is required. String - The time zone of the start and end time. Default time zone is UTC. You can use either UTC offset
UTC+01:00
format or the IANA Time Zone Database format (for example,Europe/Vienna
)
MaintenanceScheduleOnceRecurrence, MaintenanceScheduleOnceRecurrenceArgs
- End
Time This property is required. string - The end time of the maintenance window validity period in YYYY-MM-DDThh:mm:ss format (for example,
2022-01-01T08:00:00
) - Start
Time This property is required. string - The start time of the maintenance window validity period in YYYY-MM-DDThh:mm:ss format (for example,
2022-01-01T08:00:00
) - Time
Zone This property is required. string - The time zone of the start and end time. Default time zone is UTC. You can use either UTC offset
UTC+01:00
format or the IANA Time Zone Database format (for example,Europe/Vienna
)
- End
Time This property is required. string - The end time of the maintenance window validity period in YYYY-MM-DDThh:mm:ss format (for example,
2022-01-01T08:00:00
) - Start
Time This property is required. string - The start time of the maintenance window validity period in YYYY-MM-DDThh:mm:ss format (for example,
2022-01-01T08:00:00
) - Time
Zone This property is required. string - The time zone of the start and end time. Default time zone is UTC. You can use either UTC offset
UTC+01:00
format or the IANA Time Zone Database format (for example,Europe/Vienna
)
- end
Time This property is required. String - The end time of the maintenance window validity period in YYYY-MM-DDThh:mm:ss format (for example,
2022-01-01T08:00:00
) - start
Time This property is required. String - The start time of the maintenance window validity period in YYYY-MM-DDThh:mm:ss format (for example,
2022-01-01T08:00:00
) - time
Zone This property is required. String - The time zone of the start and end time. Default time zone is UTC. You can use either UTC offset
UTC+01:00
format or the IANA Time Zone Database format (for example,Europe/Vienna
)
- end
Time This property is required. string - The end time of the maintenance window validity period in YYYY-MM-DDThh:mm:ss format (for example,
2022-01-01T08:00:00
) - start
Time This property is required. string - The start time of the maintenance window validity period in YYYY-MM-DDThh:mm:ss format (for example,
2022-01-01T08:00:00
) - time
Zone This property is required. string - The time zone of the start and end time. Default time zone is UTC. You can use either UTC offset
UTC+01:00
format or the IANA Time Zone Database format (for example,Europe/Vienna
)
- end_
time This property is required. str - The end time of the maintenance window validity period in YYYY-MM-DDThh:mm:ss format (for example,
2022-01-01T08:00:00
) - start_
time This property is required. str - The start time of the maintenance window validity period in YYYY-MM-DDThh:mm:ss format (for example,
2022-01-01T08:00:00
) - time_
zone This property is required. str - The time zone of the start and end time. Default time zone is UTC. You can use either UTC offset
UTC+01:00
format or the IANA Time Zone Database format (for example,Europe/Vienna
)
- end
Time This property is required. String - The end time of the maintenance window validity period in YYYY-MM-DDThh:mm:ss format (for example,
2022-01-01T08:00:00
) - start
Time This property is required. String - The start time of the maintenance window validity period in YYYY-MM-DDThh:mm:ss format (for example,
2022-01-01T08:00:00
) - time
Zone This property is required. String - The time zone of the start and end time. Default time zone is UTC. You can use either UTC offset
UTC+01:00
format or the IANA Time Zone Database format (for example,Europe/Vienna
)
MaintenanceScheduleWeeklyRecurrence, MaintenanceScheduleWeeklyRecurrenceArgs
- Day
Of Week This property is required. string - The day of the week for weekly maintenance, possible values:
FRIDAY
,MONDAY
,SATURDAY
,SUNDAY
,THURSDAY
,TUESDAY
,WEDNESDAY
- Recurrence
Range This property is required. Pulumiverse.Dynatrace. Inputs. Maintenance Schedule Weekly Recurrence Recurrence Range - The recurrence date range of the maintenance window
- Time
Window This property is required. Pulumiverse.Dynatrace. Inputs. Maintenance Schedule Weekly Recurrence Time Window - The time window of the maintenance window
- Day
Of Week This property is required. string - The day of the week for weekly maintenance, possible values:
FRIDAY
,MONDAY
,SATURDAY
,SUNDAY
,THURSDAY
,TUESDAY
,WEDNESDAY
- Recurrence
Range This property is required. MaintenanceSchedule Weekly Recurrence Recurrence Range - The recurrence date range of the maintenance window
- Time
Window This property is required. MaintenanceSchedule Weekly Recurrence Time Window - The time window of the maintenance window
- day
Of Week This property is required. String - The day of the week for weekly maintenance, possible values:
FRIDAY
,MONDAY
,SATURDAY
,SUNDAY
,THURSDAY
,TUESDAY
,WEDNESDAY
- recurrence
Range This property is required. MaintenanceSchedule Weekly Recurrence Recurrence Range - The recurrence date range of the maintenance window
- time
Window This property is required. MaintenanceSchedule Weekly Recurrence Time Window - The time window of the maintenance window
- day
Of Week This property is required. string - The day of the week for weekly maintenance, possible values:
FRIDAY
,MONDAY
,SATURDAY
,SUNDAY
,THURSDAY
,TUESDAY
,WEDNESDAY
- recurrence
Range This property is required. MaintenanceSchedule Weekly Recurrence Recurrence Range - The recurrence date range of the maintenance window
- time
Window This property is required. MaintenanceSchedule Weekly Recurrence Time Window - The time window of the maintenance window
- day_
of_ week This property is required. str - The day of the week for weekly maintenance, possible values:
FRIDAY
,MONDAY
,SATURDAY
,SUNDAY
,THURSDAY
,TUESDAY
,WEDNESDAY
- recurrence_
range This property is required. MaintenanceSchedule Weekly Recurrence Recurrence Range - The recurrence date range of the maintenance window
- time_
window This property is required. MaintenanceSchedule Weekly Recurrence Time Window - The time window of the maintenance window
- day
Of Week This property is required. String - The day of the week for weekly maintenance, possible values:
FRIDAY
,MONDAY
,SATURDAY
,SUNDAY
,THURSDAY
,TUESDAY
,WEDNESDAY
- recurrence
Range This property is required. Property Map - The recurrence date range of the maintenance window
- time
Window This property is required. Property Map - The time window of the maintenance window
MaintenanceScheduleWeeklyRecurrenceRecurrenceRange, MaintenanceScheduleWeeklyRecurrenceRecurrenceRangeArgs
- end_
date This property is required. str - The end date of the recurrence range in YYYY-MM-DD format
- start_
date This property is required. str - The start date of the recurrence range in YYYY-MM-DD format
MaintenanceScheduleWeeklyRecurrenceTimeWindow, MaintenanceScheduleWeeklyRecurrenceTimeWindowArgs
- End
Time This property is required. string - The end time of the maintenance window validity period in hh:mm:ss format
- Start
Time This property is required. string - The start time of the maintenance window validity period in hh:mm:ss format
- Time
Zone This property is required. string - The time zone of the start and end time. Default time zone is UTC. You can use either UTC offset
UTC+01:00
format or the IANA Time Zone Database format (for example,Europe/Vienna
)
- End
Time This property is required. string - The end time of the maintenance window validity period in hh:mm:ss format
- Start
Time This property is required. string - The start time of the maintenance window validity period in hh:mm:ss format
- Time
Zone This property is required. string - The time zone of the start and end time. Default time zone is UTC. You can use either UTC offset
UTC+01:00
format or the IANA Time Zone Database format (for example,Europe/Vienna
)
- end
Time This property is required. String - The end time of the maintenance window validity period in hh:mm:ss format
- start
Time This property is required. String - The start time of the maintenance window validity period in hh:mm:ss format
- time
Zone This property is required. String - The time zone of the start and end time. Default time zone is UTC. You can use either UTC offset
UTC+01:00
format or the IANA Time Zone Database format (for example,Europe/Vienna
)
- end
Time This property is required. string - The end time of the maintenance window validity period in hh:mm:ss format
- start
Time This property is required. string - The start time of the maintenance window validity period in hh:mm:ss format
- time
Zone This property is required. string - The time zone of the start and end time. Default time zone is UTC. You can use either UTC offset
UTC+01:00
format or the IANA Time Zone Database format (for example,Europe/Vienna
)
- end_
time This property is required. str - The end time of the maintenance window validity period in hh:mm:ss format
- start_
time This property is required. str - The start time of the maintenance window validity period in hh:mm:ss format
- time_
zone This property is required. str - The time zone of the start and end time. Default time zone is UTC. You can use either UTC offset
UTC+01:00
format or the IANA Time Zone Database format (for example,Europe/Vienna
)
- end
Time This property is required. String - The end time of the maintenance window validity period in hh:mm:ss format
- start
Time This property is required. String - The start time of the maintenance window validity period in hh:mm:ss format
- time
Zone This property is required. String - The time zone of the start and end time. Default time zone is UTC. You can use either UTC offset
UTC+01:00
format or the IANA Time Zone Database format (for example,Europe/Vienna
)
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatrace
Terraform Provider.