Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 2.36 KB

File metadata and controls

39 lines (30 loc) · 2.36 KB

MaintenanceConfigV2WithStateAndOccurrence

Properties

Name Type Description Notes
id str ID of the Maintenance Window configuration.
last_updated int [optional]
name str Name of the Maintenance Window configuration.
occurrence Occurrence
paused bool Boolean flag to determine if the Maintenance Window configuration is paused or still live. [optional]
query str Dynamic Focus Query that determines the scope of the Maintenance Window configuration.
retrigger_open_alerts_enabled bool Boolean flag to determine if we should retrigger open alerts to be sent out for any events that opened during this maintenance window, and continues to remain open after the window expires [optional]
scheduling MaintenanceConfigScheduling
state str State of the Maintenance Window, it can be: UNSCHEDULED, SCHEDULED, ACTIVE, PAUSED, EXPIRED. [optional]
tag_filter_expression TagFilterExpressionElement [optional]
tag_filter_expression_enabled bool Boolean flag to determine if the tagFilterExpression is enabled. [optional]

Example

from instana_client.models.maintenance_config_v2_with_state_and_occurrence import MaintenanceConfigV2WithStateAndOccurrence

# TODO update the JSON string below
json = "{}"
# create an instance of MaintenanceConfigV2WithStateAndOccurrence from a JSON string
maintenance_config_v2_with_state_and_occurrence_instance = MaintenanceConfigV2WithStateAndOccurrence.from_json(json)
# print the JSON string representation of the object
print(MaintenanceConfigV2WithStateAndOccurrence.to_json())

# convert the object into a dict
maintenance_config_v2_with_state_and_occurrence_dict = maintenance_config_v2_with_state_and_occurrence_instance.to_dict()
# create an instance of MaintenanceConfigV2WithStateAndOccurrence from a dict
maintenance_config_v2_with_state_and_occurrence_from_dict = MaintenanceConfigV2WithStateAndOccurrence.from_dict(maintenance_config_v2_with_state_and_occurrence_dict)

[Back to Model list] [Back to API list] [Back to README]