1. Packages
  2. Dynatrace
  3. API Docs
  4. Maintenance
Dynatrace v0.27.0 published on Friday, Mar 21, 2025 by Pulumiverse

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",
});
Copy
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"),
})
Copy
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());
Copy
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")
Copy
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",
});
Copy
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
Copy

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)
GeneralProperties This property is required. Pulumiverse.Dynatrace.Inputs.MaintenanceGeneralProperties
The general properties of the maintenance window
Schedule This property is required. Pulumiverse.Dynatrace.Inputs.MaintenanceSchedule
The schedule of the maintenance window
Filters Pulumiverse.Dynatrace.Inputs.MaintenanceFilters

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).

LegacyId 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)
GeneralProperties This property is required. MaintenanceGeneralPropertiesArgs
The general properties of the maintenance window
Schedule This property is required. MaintenanceScheduleArgs
The schedule of the maintenance window
Filters MaintenanceFiltersArgs

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).

LegacyId 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)
generalProperties This property is required. MaintenanceGeneralProperties
The general properties of the maintenance window
schedule This property is required. MaintenanceSchedule
The schedule of the maintenance window
filters MaintenanceFilters

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).

legacyId 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)
generalProperties This property is required. MaintenanceGeneralProperties
The general properties of the maintenance window
schedule This property is required. MaintenanceSchedule
The schedule of the maintenance window
filters MaintenanceFilters

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).

legacyId 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. MaintenanceGeneralPropertiesArgs
The general properties of the maintenance window
schedule This property is required. MaintenanceScheduleArgs
The schedule of the maintenance window
filters MaintenanceFiltersArgs

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)
generalProperties 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).

legacyId 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.
The following state arguments are supported:
Enabled bool
This setting is enabled (true) or disabled (false)
Filters Pulumiverse.Dynatrace.Inputs.MaintenanceFilters

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).

GeneralProperties Pulumiverse.Dynatrace.Inputs.MaintenanceGeneralProperties
The general properties of the maintenance window
LegacyId string
The ID of this setting when referred to by the Config REST API V1
Schedule Pulumiverse.Dynatrace.Inputs.MaintenanceSchedule
The schedule of the maintenance window
Enabled bool
This setting is enabled (true) or disabled (false)
Filters MaintenanceFiltersArgs

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).

GeneralProperties MaintenanceGeneralPropertiesArgs
The general properties of the maintenance window
LegacyId string
The ID of this setting when referred to by the Config REST API V1
Schedule MaintenanceScheduleArgs
The schedule of the maintenance window
enabled Boolean
This setting is enabled (true) or disabled (false)
filters MaintenanceFilters

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).

generalProperties MaintenanceGeneralProperties
The general properties of the maintenance window
legacyId String
The ID of this setting when referred to by the Config REST API V1
schedule MaintenanceSchedule
The schedule of the maintenance window
enabled boolean
This setting is enabled (true) or disabled (false)
filters MaintenanceFilters

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).

generalProperties MaintenanceGeneralProperties
The general properties of the maintenance window
legacyId string
The ID of this setting when referred to by the Config REST API V1
schedule MaintenanceSchedule
The schedule of the maintenance window
enabled bool
This setting is enabled (true) or disabled (false)
filters MaintenanceFiltersArgs

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 MaintenanceGeneralPropertiesArgs
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 MaintenanceScheduleArgs
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).

generalProperties Property Map
The general properties of the maintenance window
legacyId 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. []MaintenanceFiltersFilter
filters This property is required. List<MaintenanceFiltersFilter>
filters This property is required. MaintenanceFiltersFilter[]
filters This property is required. Sequence[MaintenanceFiltersFilter]
filters This property is required. List<Property Map>

MaintenanceFiltersFilter
, MaintenanceFiltersFilterArgs

EntityId 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.
EntityTags List<string>
Entities which contain all of the configured tags will match this maintenance window.
EntityType string
Type of entities this maintenance window should match.. If no entity type is selected all entities regardless of the type will match.
ManagementZones List<string>
Entities which are part of all the configured management zones will match this maintenance window.
EntityId 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.
EntityTags []string
Entities which contain all of the configured tags will match this maintenance window.
EntityType string
Type of entities this maintenance window should match.. If no entity type is selected all entities regardless of the type will match.
ManagementZones []string
Entities which are part of all the configured management zones will match this maintenance window.
entityId 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.
entityTags List<String>
Entities which contain all of the configured tags will match this maintenance window.
entityType String
Type of entities this maintenance window should match.. If no entity type is selected all entities regardless of the type will match.
managementZones List<String>
Entities which are part of all the configured management zones will match this maintenance window.
entityId 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.
entityTags string[]
Entities which contain all of the configured tags will match this maintenance window.
entityType string
Type of entities this maintenance window should match.. If no entity type is selected all entities regardless of the type will match.
managementZones 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.
entity_tags 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.
entityId 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.
entityTags List<String>
Entities which contain all of the configured tags will match this maintenance window.
entityType String
Type of entities this maintenance window should match.. If no entity type is selected all entities regardless of the type will match.
managementZones List<String>
Entities which are part of all the configured management zones will match this maintenance window.

MaintenanceGeneralProperties
, MaintenanceGeneralPropertiesArgs

DisableSynthetic 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 or UNPLANNED
Description string
A short description of the maintenance purpose.
DisableSynthetic 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 or UNPLANNED
Description string
A short description of the maintenance purpose.
disableSynthetic 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 or UNPLANNED
description String
A short description of the maintenance purpose.
disableSynthetic 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 or UNPLANNED
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 or UNPLANNED
description str
A short description of the maintenance purpose.
disableSynthetic 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 or UNPLANNED
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
DailyRecurrence Pulumiverse.Dynatrace.Inputs.MaintenanceScheduleDailyRecurrence
The configuration for maintenance windows occuring daily
MonthlyRecurrence Pulumiverse.Dynatrace.Inputs.MaintenanceScheduleMonthlyRecurrence
The configuration for maintenance windows occuring monthly
OnceRecurrence Pulumiverse.Dynatrace.Inputs.MaintenanceScheduleOnceRecurrence
The configuration for maintenance windows occuring once
WeeklyRecurrence Pulumiverse.Dynatrace.Inputs.MaintenanceScheduleWeeklyRecurrence
The configuration for maintenance windows occuring weekly
Type This property is required. string
The type maintenance window, possible values: DAILY, MONTHLY, ONCE, WEEKLY
DailyRecurrence MaintenanceScheduleDailyRecurrence
The configuration for maintenance windows occuring daily
MonthlyRecurrence MaintenanceScheduleMonthlyRecurrence
The configuration for maintenance windows occuring monthly
OnceRecurrence MaintenanceScheduleOnceRecurrence
The configuration for maintenance windows occuring once
WeeklyRecurrence MaintenanceScheduleWeeklyRecurrence
The configuration for maintenance windows occuring weekly
type This property is required. String
The type maintenance window, possible values: DAILY, MONTHLY, ONCE, WEEKLY
dailyRecurrence MaintenanceScheduleDailyRecurrence
The configuration for maintenance windows occuring daily
monthlyRecurrence MaintenanceScheduleMonthlyRecurrence
The configuration for maintenance windows occuring monthly
onceRecurrence MaintenanceScheduleOnceRecurrence
The configuration for maintenance windows occuring once
weeklyRecurrence MaintenanceScheduleWeeklyRecurrence
The configuration for maintenance windows occuring weekly
type This property is required. string
The type maintenance window, possible values: DAILY, MONTHLY, ONCE, WEEKLY
dailyRecurrence MaintenanceScheduleDailyRecurrence
The configuration for maintenance windows occuring daily
monthlyRecurrence MaintenanceScheduleMonthlyRecurrence
The configuration for maintenance windows occuring monthly
onceRecurrence MaintenanceScheduleOnceRecurrence
The configuration for maintenance windows occuring once
weeklyRecurrence MaintenanceScheduleWeeklyRecurrence
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 MaintenanceScheduleDailyRecurrence
The configuration for maintenance windows occuring daily
monthly_recurrence MaintenanceScheduleMonthlyRecurrence
The configuration for maintenance windows occuring monthly
once_recurrence MaintenanceScheduleOnceRecurrence
The configuration for maintenance windows occuring once
weekly_recurrence MaintenanceScheduleWeeklyRecurrence
The configuration for maintenance windows occuring weekly
type This property is required. String
The type maintenance window, possible values: DAILY, MONTHLY, ONCE, WEEKLY
dailyRecurrence Property Map
The configuration for maintenance windows occuring daily
monthlyRecurrence Property Map
The configuration for maintenance windows occuring monthly
onceRecurrence Property Map
The configuration for maintenance windows occuring once
weeklyRecurrence Property Map
The configuration for maintenance windows occuring weekly

MaintenanceScheduleDailyRecurrence
, MaintenanceScheduleDailyRecurrenceArgs

RecurrenceRange This property is required. Pulumiverse.Dynatrace.Inputs.MaintenanceScheduleDailyRecurrenceRecurrenceRange
The recurrence date range of the maintenance window
TimeWindow This property is required. Pulumiverse.Dynatrace.Inputs.MaintenanceScheduleDailyRecurrenceTimeWindow
The time window of the maintenance window
RecurrenceRange This property is required. MaintenanceScheduleDailyRecurrenceRecurrenceRange
The recurrence date range of the maintenance window
TimeWindow This property is required. MaintenanceScheduleDailyRecurrenceTimeWindow
The time window of the maintenance window
recurrenceRange This property is required. MaintenanceScheduleDailyRecurrenceRecurrenceRange
The recurrence date range of the maintenance window
timeWindow This property is required. MaintenanceScheduleDailyRecurrenceTimeWindow
The time window of the maintenance window
recurrenceRange This property is required. MaintenanceScheduleDailyRecurrenceRecurrenceRange
The recurrence date range of the maintenance window
timeWindow This property is required. MaintenanceScheduleDailyRecurrenceTimeWindow
The time window of the maintenance window
recurrence_range This property is required. MaintenanceScheduleDailyRecurrenceRecurrenceRange
The recurrence date range of the maintenance window
time_window This property is required. MaintenanceScheduleDailyRecurrenceTimeWindow
The time window of the maintenance window
recurrenceRange This property is required. Property Map
The recurrence date range of the maintenance window
timeWindow This property is required. Property Map
The time window of the maintenance window

MaintenanceScheduleDailyRecurrenceRecurrenceRange
, MaintenanceScheduleDailyRecurrenceRecurrenceRangeArgs

EndDate This property is required. string
The end date of the recurrence range in YYYY-MM-DD format
StartDate This property is required. string
The start date of the recurrence range in YYYY-MM-DD format
EndDate This property is required. string
The end date of the recurrence range in YYYY-MM-DD format
StartDate This property is required. string
The start date of the recurrence range in YYYY-MM-DD format
endDate This property is required. String
The end date of the recurrence range in YYYY-MM-DD format
startDate This property is required. String
The start date of the recurrence range in YYYY-MM-DD format
endDate This property is required. string
The end date of the recurrence range in YYYY-MM-DD format
startDate This property is required. string
The start date of the recurrence range in YYYY-MM-DD format
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
endDate This property is required. String
The end date of the recurrence range in YYYY-MM-DD format
startDate This property is required. String
The start date of the recurrence range in YYYY-MM-DD format

MaintenanceScheduleDailyRecurrenceTimeWindow
, MaintenanceScheduleDailyRecurrenceTimeWindowArgs

EndTime This property is required. string
The end time of the maintenance window validity period in hh:mm:ss format
StartTime This property is required. string
The start time of the maintenance window validity period in hh:mm:ss format
TimeZone 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)
EndTime This property is required. string
The end time of the maintenance window validity period in hh:mm:ss format
StartTime This property is required. string
The start time of the maintenance window validity period in hh:mm:ss format
TimeZone 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)
endTime This property is required. String
The end time of the maintenance window validity period in hh:mm:ss format
startTime This property is required. String
The start time of the maintenance window validity period in hh:mm:ss format
timeZone 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)
endTime This property is required. string
The end time of the maintenance window validity period in hh:mm:ss format
startTime This property is required. string
The start time of the maintenance window validity period in hh:mm:ss format
timeZone 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)
endTime This property is required. String
The end time of the maintenance window validity period in hh:mm:ss format
startTime This property is required. String
The start time of the maintenance window validity period in hh:mm:ss format
timeZone 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

DayOfMonth 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.
RecurrenceRange This property is required. Pulumiverse.Dynatrace.Inputs.MaintenanceScheduleMonthlyRecurrenceRecurrenceRange
The recurrence date range of the maintenance window
TimeWindow This property is required. Pulumiverse.Dynatrace.Inputs.MaintenanceScheduleMonthlyRecurrenceTimeWindow
The time window of the maintenance window
DayOfMonth 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.
RecurrenceRange This property is required. MaintenanceScheduleMonthlyRecurrenceRecurrenceRange
The recurrence date range of the maintenance window
TimeWindow This property is required. MaintenanceScheduleMonthlyRecurrenceTimeWindow
The time window of the maintenance window
dayOfMonth 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.
recurrenceRange This property is required. MaintenanceScheduleMonthlyRecurrenceRecurrenceRange
The recurrence date range of the maintenance window
timeWindow This property is required. MaintenanceScheduleMonthlyRecurrenceTimeWindow
The time window of the maintenance window
dayOfMonth 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.
recurrenceRange This property is required. MaintenanceScheduleMonthlyRecurrenceRecurrenceRange
The recurrence date range of the maintenance window
timeWindow This property is required. MaintenanceScheduleMonthlyRecurrenceTimeWindow
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. MaintenanceScheduleMonthlyRecurrenceRecurrenceRange
The recurrence date range of the maintenance window
time_window This property is required. MaintenanceScheduleMonthlyRecurrenceTimeWindow
The time window of the maintenance window
dayOfMonth 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.
recurrenceRange This property is required. Property Map
The recurrence date range of the maintenance window
timeWindow This property is required. Property Map
The time window of the maintenance window

MaintenanceScheduleMonthlyRecurrenceRecurrenceRange
, MaintenanceScheduleMonthlyRecurrenceRecurrenceRangeArgs

EndDate This property is required. string
The end date of the recurrence range in YYYY-MM-DD format
StartDate This property is required. string
The start date of the recurrence range in YYYY-MM-DD format
EndDate This property is required. string
The end date of the recurrence range in YYYY-MM-DD format
StartDate This property is required. string
The start date of the recurrence range in YYYY-MM-DD format
endDate This property is required. String
The end date of the recurrence range in YYYY-MM-DD format
startDate This property is required. String
The start date of the recurrence range in YYYY-MM-DD format
endDate This property is required. string
The end date of the recurrence range in YYYY-MM-DD format
startDate This property is required. string
The start date of the recurrence range in YYYY-MM-DD format
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
endDate This property is required. String
The end date of the recurrence range in YYYY-MM-DD format
startDate This property is required. String
The start date of the recurrence range in YYYY-MM-DD format

MaintenanceScheduleMonthlyRecurrenceTimeWindow
, MaintenanceScheduleMonthlyRecurrenceTimeWindowArgs

EndTime This property is required. string
The end time of the maintenance window validity period in hh:mm:ss format
StartTime This property is required. string
The start time of the maintenance window validity period in hh:mm:ss format
TimeZone 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)
EndTime This property is required. string
The end time of the maintenance window validity period in hh:mm:ss format
StartTime This property is required. string
The start time of the maintenance window validity period in hh:mm:ss format
TimeZone 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)
endTime This property is required. String
The end time of the maintenance window validity period in hh:mm:ss format
startTime This property is required. String
The start time of the maintenance window validity period in hh:mm:ss format
timeZone 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)
endTime This property is required. string
The end time of the maintenance window validity period in hh:mm:ss format
startTime This property is required. string
The start time of the maintenance window validity period in hh:mm:ss format
timeZone 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)
endTime This property is required. String
The end time of the maintenance window validity period in hh:mm:ss format
startTime This property is required. String
The start time of the maintenance window validity period in hh:mm:ss format
timeZone 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

EndTime 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)
StartTime 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)
TimeZone 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)
EndTime 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)
StartTime 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)
TimeZone 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)
endTime 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)
startTime 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)
timeZone 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)
endTime 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)
startTime 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)
timeZone 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)
endTime 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)
startTime 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)
timeZone 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

DayOfWeek This property is required. string
The day of the week for weekly maintenance, possible values: FRIDAY, MONDAY, SATURDAY, SUNDAY, THURSDAY, TUESDAY, WEDNESDAY
RecurrenceRange This property is required. Pulumiverse.Dynatrace.Inputs.MaintenanceScheduleWeeklyRecurrenceRecurrenceRange
The recurrence date range of the maintenance window
TimeWindow This property is required. Pulumiverse.Dynatrace.Inputs.MaintenanceScheduleWeeklyRecurrenceTimeWindow
The time window of the maintenance window
DayOfWeek This property is required. string
The day of the week for weekly maintenance, possible values: FRIDAY, MONDAY, SATURDAY, SUNDAY, THURSDAY, TUESDAY, WEDNESDAY
RecurrenceRange This property is required. MaintenanceScheduleWeeklyRecurrenceRecurrenceRange
The recurrence date range of the maintenance window
TimeWindow This property is required. MaintenanceScheduleWeeklyRecurrenceTimeWindow
The time window of the maintenance window
dayOfWeek This property is required. String
The day of the week for weekly maintenance, possible values: FRIDAY, MONDAY, SATURDAY, SUNDAY, THURSDAY, TUESDAY, WEDNESDAY
recurrenceRange This property is required. MaintenanceScheduleWeeklyRecurrenceRecurrenceRange
The recurrence date range of the maintenance window
timeWindow This property is required. MaintenanceScheduleWeeklyRecurrenceTimeWindow
The time window of the maintenance window
dayOfWeek This property is required. string
The day of the week for weekly maintenance, possible values: FRIDAY, MONDAY, SATURDAY, SUNDAY, THURSDAY, TUESDAY, WEDNESDAY
recurrenceRange This property is required. MaintenanceScheduleWeeklyRecurrenceRecurrenceRange
The recurrence date range of the maintenance window
timeWindow This property is required. MaintenanceScheduleWeeklyRecurrenceTimeWindow
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. MaintenanceScheduleWeeklyRecurrenceRecurrenceRange
The recurrence date range of the maintenance window
time_window This property is required. MaintenanceScheduleWeeklyRecurrenceTimeWindow
The time window of the maintenance window
dayOfWeek This property is required. String
The day of the week for weekly maintenance, possible values: FRIDAY, MONDAY, SATURDAY, SUNDAY, THURSDAY, TUESDAY, WEDNESDAY
recurrenceRange This property is required. Property Map
The recurrence date range of the maintenance window
timeWindow This property is required. Property Map
The time window of the maintenance window

MaintenanceScheduleWeeklyRecurrenceRecurrenceRange
, MaintenanceScheduleWeeklyRecurrenceRecurrenceRangeArgs

EndDate This property is required. string
The end date of the recurrence range in YYYY-MM-DD format
StartDate This property is required. string
The start date of the recurrence range in YYYY-MM-DD format
EndDate This property is required. string
The end date of the recurrence range in YYYY-MM-DD format
StartDate This property is required. string
The start date of the recurrence range in YYYY-MM-DD format
endDate This property is required. String
The end date of the recurrence range in YYYY-MM-DD format
startDate This property is required. String
The start date of the recurrence range in YYYY-MM-DD format
endDate This property is required. string
The end date of the recurrence range in YYYY-MM-DD format
startDate This property is required. string
The start date of the recurrence range in YYYY-MM-DD format
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
endDate This property is required. String
The end date of the recurrence range in YYYY-MM-DD format
startDate This property is required. String
The start date of the recurrence range in YYYY-MM-DD format

MaintenanceScheduleWeeklyRecurrenceTimeWindow
, MaintenanceScheduleWeeklyRecurrenceTimeWindowArgs

EndTime This property is required. string
The end time of the maintenance window validity period in hh:mm:ss format
StartTime This property is required. string
The start time of the maintenance window validity period in hh:mm:ss format
TimeZone 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)
EndTime This property is required. string
The end time of the maintenance window validity period in hh:mm:ss format
StartTime This property is required. string
The start time of the maintenance window validity period in hh:mm:ss format
TimeZone 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)
endTime This property is required. String
The end time of the maintenance window validity period in hh:mm:ss format
startTime This property is required. String
The start time of the maintenance window validity period in hh:mm:ss format
timeZone 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)
endTime This property is required. string
The end time of the maintenance window validity period in hh:mm:ss format
startTime This property is required. string
The start time of the maintenance window validity period in hh:mm:ss format
timeZone 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)
endTime This property is required. String
The end time of the maintenance window validity period in hh:mm:ss format
startTime This property is required. String
The start time of the maintenance window validity period in hh:mm:ss format
timeZone 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.