Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.16 KB

File metadata and controls

32 lines (23 loc) · 1.16 KB

MaintenanceConfigScheduling

Time scheduling of the Maintenance Window configurations.

Properties

Name Type Description Notes
duration Duration
start int
type str

Example

from instana_client.models.maintenance_config_scheduling import MaintenanceConfigScheduling

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

# convert the object into a dict
maintenance_config_scheduling_dict = maintenance_config_scheduling_instance.to_dict()
# create an instance of MaintenanceConfigScheduling from a dict
maintenance_config_scheduling_from_dict = MaintenanceConfigScheduling.from_dict(maintenance_config_scheduling_dict)

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