Source code for azure.servicefabric.models.chaos_schedule_job_active_days_of_week_py3

# 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


[docs]class ChaosScheduleJobActiveDaysOfWeek(Model): """Defines the days of the week that a Chaos Schedule Job will run for. :param sunday: Indicates if the Chaos Schedule Job will run on Sunday. Default value: False . :type sunday: bool :param monday: Indicates if the Chaos Schedule Job will run on Monday. Default value: False . :type monday: bool :param tuesday: Indicates if the Chaos Schedule Job will run on Tuesday. Default value: False . :type tuesday: bool :param wednesday: Indicates if the Chaos Schedule Job will run on Wednesday. Default value: False . :type wednesday: bool :param thursday: Indicates if the Chaos Schedule Job will run on Thursday. Default value: False . :type thursday: bool :param friday: Indicates if the Chaos Schedule Job will run on Friday. Default value: False . :type friday: bool :param saturday: Indicates if the Chaos Schedule Job will run on Saturday. Default value: False . :type saturday: bool """ _attribute_map = { 'sunday': {'key': 'Sunday', 'type': 'bool'}, 'monday': {'key': 'Monday', 'type': 'bool'}, 'tuesday': {'key': 'Tuesday', 'type': 'bool'}, 'wednesday': {'key': 'Wednesday', 'type': 'bool'}, 'thursday': {'key': 'Thursday', 'type': 'bool'}, 'friday': {'key': 'Friday', 'type': 'bool'}, 'saturday': {'key': 'Saturday', 'type': 'bool'}, } def __init__(self, *, sunday: bool=False, monday: bool=False, tuesday: bool=False, wednesday: bool=False, thursday: bool=False, friday: bool=False, saturday: bool=False, **kwargs) -> None: super(ChaosScheduleJobActiveDaysOfWeek, self).__init__(**kwargs) self.sunday = sunday self.monday = monday self.tuesday = tuesday self.wednesday = wednesday self.thursday = thursday self.friday = friday self.saturday = saturday