Source code for azure.mgmt.compute.v2015_06_15.models.win_rm_configuration_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 WinRMConfiguration(Model): """Describes Windows Remote Management configuration of the VM. :param listeners: The list of Windows Remote Management listeners :type listeners: list[~azure.mgmt.compute.v2015_06_15.models.WinRMListener] """ _attribute_map = { 'listeners': {'key': 'listeners', 'type': '[WinRMListener]'}, } def __init__(self, *, listeners=None, **kwargs) -> None: super(WinRMConfiguration, self).__init__(**kwargs) self.listeners = listeners