Source code for azure.mgmt.serialconsole.models.get_disabled_result_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 GetDisabledResult(Model): """Get Disabled result. Returns whether or not Serial Console is disabled for this given subscription. :param disabled: Disabled result :type disabled: bool """ _attribute_map = { 'disabled': {'key': 'disabled', 'type': 'bool'}, } def __init__(self, *, disabled: bool=None, **kwargs) -> None: super(GetDisabledResult, self).__init__(**kwargs) self.disabled = disabled