You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
Boolean flag to determine if the tagFilterExpression is enabled.
[optional]
Example
frominstana_client.models.maintenance_config_v2_with_state_and_occurrenceimportMaintenanceConfigV2WithStateAndOccurrence# TODO update the JSON string belowjson="{}"# create an instance of MaintenanceConfigV2WithStateAndOccurrence from a JSON stringmaintenance_config_v2_with_state_and_occurrence_instance=MaintenanceConfigV2WithStateAndOccurrence.from_json(json)
# print the JSON string representation of the objectprint(MaintenanceConfigV2WithStateAndOccurrence.to_json())
# convert the object into a dictmaintenance_config_v2_with_state_and_occurrence_dict=maintenance_config_v2_with_state_and_occurrence_instance.to_dict()
# create an instance of MaintenanceConfigV2WithStateAndOccurrence from a dictmaintenance_config_v2_with_state_and_occurrence_from_dict=MaintenanceConfigV2WithStateAndOccurrence.from_dict(maintenance_config_v2_with_state_and_occurrence_dict)