Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.6 KB

File metadata and controls

31 lines (23 loc) · 1.6 KB

CreateClusterMaintenanceSlot

Период технического обслуживания кластера базы данных.

Properties

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]

Example

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)

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