Source code for azure.mgmt.compute.v2015_06_15.models.instance_view_status_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 InstanceViewStatus(Model): """Instance view status. :param code: The status code. :type code: str :param level: The level code. Possible values include: 'Info', 'Warning', 'Error' :type level: str or ~azure.mgmt.compute.v2015_06_15.models.StatusLevelTypes :param display_status: The short localizable label for the status. :type display_status: str :param message: The detailed status message, including for alerts and error messages. :type message: str :param time: The time of the status. :type time: datetime """ _attribute_map = { 'code': {'key': 'code', 'type': 'str'}, 'level': {'key': 'level', 'type': 'StatusLevelTypes'}, 'display_status': {'key': 'displayStatus', 'type': 'str'}, 'message': {'key': 'message', 'type': 'str'}, 'time': {'key': 'time', 'type': 'iso-8601'}, } def __init__(self, *, code: str=None, level=None, display_status: str=None, message: str=None, time=None, **kwargs) -> None: super(InstanceViewStatus, self).__init__(**kwargs) self.code = code self.level = level self.display_status = display_status self.message = message self.time = time