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 45 46 47 48 49
|
# 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 WindowsConfiguration(Model):
"""Describes Windows Configuration of the OS Profile.
:param provision_vm_agent: whether VM Agent should be provisioned on the
Virtual Machine.
:type provision_vm_agent: bool
:param enable_automatic_updates: whether Windows updates are
automatically installed on the VM
:type enable_automatic_updates: bool
:param time_zone: the Time Zone of the VM
:type time_zone: str
:param additional_unattend_content: the additional base-64 encoded XML
formatted information that can be included in the Unattend.xml file.
:type additional_unattend_content: list of
:class:`AdditionalUnattendContent
<azure.mgmt.compute.models.AdditionalUnattendContent>`
:param win_rm: the Windows Remote Management configuration of the VM
:type win_rm: :class:`WinRMConfiguration
<azure.mgmt.compute.models.WinRMConfiguration>`
"""
_attribute_map = {
'provision_vm_agent': {'key': 'provisionVMAgent', 'type': 'bool'},
'enable_automatic_updates': {'key': 'enableAutomaticUpdates', 'type': 'bool'},
'time_zone': {'key': 'timeZone', 'type': 'str'},
'additional_unattend_content': {'key': 'additionalUnattendContent', 'type': '[AdditionalUnattendContent]'},
'win_rm': {'key': 'winRM', 'type': 'WinRMConfiguration'},
}
def __init__(self, provision_vm_agent=None, enable_automatic_updates=None, time_zone=None, additional_unattend_content=None, win_rm=None):
self.provision_vm_agent = provision_vm_agent
self.enable_automatic_updates = enable_automatic_updates
self.time_zone = time_zone
self.additional_unattend_content = additional_unattend_content
self.win_rm = win_rm
|