# 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 AutomaticOSUpgradeProperties(Model):
"""Describes automatic OS upgrade properties on the image.
All required parameters must be populated in order to send to Azure.
:param automatic_os_upgrade_supported: Required. Specifies whether
automatic OS upgrade is supported on the image.
:type automatic_os_upgrade_supported: bool
"""
_validation = {
'automatic_os_upgrade_supported': {'required': True},
}
_attribute_map = {
'automatic_os_upgrade_supported': {'key': 'automaticOSUpgradeSupported', 'type': 'bool'},
}
def __init__(self, *, automatic_os_upgrade_supported: bool, **kwargs) -> None:
super(AutomaticOSUpgradeProperties, self).__init__(**kwargs)
self.automatic_os_upgrade_supported = automatic_os_upgrade_supported