Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 2.72 KB

File metadata and controls

41 lines (32 loc) · 2.72 KB

ValidatedMaintenanceConfigV2WithStateAndOccurrence

Properties

Name Type Description Notes
application_names List[str] Name set of the Application Perspectives within the scope of the Maintenance Window [optional]
id str ID of the Maintenance Window configuration.
invalid bool Boolean flag that tells if the Dynamic Focus Query(DFQ) is invalid. [optional]
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.validated_maintenance_config_v2_with_state_and_occurrence import ValidatedMaintenanceConfigV2WithStateAndOccurrence

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

# convert the object into a dict
validated_maintenance_config_v2_with_state_and_occurrence_dict = validated_maintenance_config_v2_with_state_and_occurrence_instance.to_dict()
# create an instance of ValidatedMaintenanceConfigV2WithStateAndOccurrence from a dict
validated_maintenance_config_v2_with_state_and_occurrence_from_dict = ValidatedMaintenanceConfigV2WithStateAndOccurrence.from_dict(validated_maintenance_config_v2_with_state_and_occurrence_dict)

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