Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.52 KB

File metadata and controls

33 lines (24 loc) · 1.52 KB

MaintenanceConfigWithLastUpdated

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.
query str Dynamic Focus Query that determines the scope of the Maintenance Window configuration.
windows List[MaintenanceWindow] A set of time periods when the Maintenance Window Configuration is active. [optional]

Example

from instana_client.models.maintenance_config_with_last_updated import MaintenanceConfigWithLastUpdated

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

# convert the object into a dict
maintenance_config_with_last_updated_dict = maintenance_config_with_last_updated_instance.to_dict()
# create an instance of MaintenanceConfigWithLastUpdated from a dict
maintenance_config_with_last_updated_from_dict = MaintenanceConfigWithLastUpdated.from_dict(maintenance_config_with_last_updated_dict)

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