1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
from msrest.serialization import Model
class ScheduleEntry(Model):
"""ScheduleEntry.
:param day_of_week: Day of week when cache can be patched. Possible
values include: 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday',
'Saturday', 'Sunday'
:type day_of_week: str or :class:`DayOfWeek
<azure.mgmt.redis.models.DayOfWeek>`
:param start_hour_utc: Start hour after which cache patching can start.
:type start_hour_utc: int
:param maintenance_window: ISO8601 timespan specifying how much time
cache patching can take.
:type maintenance_window: timedelta
"""
_validation = {
'day_of_week': {'required': True},
'start_hour_utc': {'required': True},
}
_attribute_map = {
'day_of_week': {'key': 'dayOfWeek', 'type': 'str'},
'start_hour_utc': {'key': 'startHourUtc', 'type': 'int'},
'maintenance_window': {'key': 'maintenanceWindow', 'type': 'duration'},
}
def __init__(self, day_of_week, start_hour_utc, maintenance_window=None):
self.day_of_week = day_of_week
self.start_hour_utc = start_hour_utc
self.maintenance_window = maintenance_window
|