Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

MaintenanceWindow

A weekly 4 hour-long window, during which maintenance might occur.

Properties

Name Type Description Notes
time str Start of the maintenance window in UTC time.
day_of_the_week DayOfTheWeek

Example

from ionoscloud_dbaas_postgres.models.maintenance_window import MaintenanceWindow

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

# convert the object into a dict
maintenance_window_dict = maintenance_window_instance.to_dict()
# create an instance of MaintenanceWindow from a dict
maintenance_window_from_dict = MaintenanceWindow.from_dict(maintenance_window_dict)

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