Период технического обслуживания кластера базы данных.
| Name | Type | Description | Notes |
|---|---|---|---|
| type | object | Режим обслуживания. | |
| var_from | object | Начало периода обслуживания в формате `HH:mmZ` (UTC). Учитывается только при `type: fixed_time`. | [optional] |
| to | object | Конец периода обслуживания в формате `HH:mmZ` (UTC). Учитывается только при `type: fixed_time`. | [optional] |
from timeweb_cloud_api.models.create_cluster_maintenance_slot import CreateClusterMaintenanceSlot
# TODO update the JSON string below
json = "{}"
# create an instance of CreateClusterMaintenanceSlot from a JSON string
create_cluster_maintenance_slot_instance = CreateClusterMaintenanceSlot.from_json(json)
# print the JSON string representation of the object
print CreateClusterMaintenanceSlot.to_json()
# convert the object into a dict
create_cluster_maintenance_slot_dict = create_cluster_maintenance_slot_instance.to_dict()
# create an instance of CreateClusterMaintenanceSlot from a dict
create_cluster_maintenance_slot_form_dict = create_cluster_maintenance_slot.from_dict(create_cluster_maintenance_slot_dict)