Source code for azure.eventgrid.models.iot_hub_device_disconnected_event_data

# 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 .device_connection_state_event_properties import DeviceConnectionStateEventProperties


[docs]class IotHubDeviceDisconnectedEventData(DeviceConnectionStateEventProperties): """Event data for Microsoft.Devices.DeviceDisconnected event. :param device_id: The unique identifier of the device. This case-sensitive string can be up to 128 characters long, and supports ASCII 7-bit alphanumeric characters plus the following special characters: - : . + % _ # * ? ! ( ) , = @ ; $ '. :type device_id: str :param module_id: The unique identifier of the module. This case-sensitive string can be up to 128 characters long, and supports ASCII 7-bit alphanumeric characters plus the following special characters: - : . + % _ # * ? ! ( ) , = @ ; $ '. :type module_id: str :param hub_name: Name of the IoT Hub where the device was created or deleted. :type hub_name: str :param device_connection_state_event_info: Information about the device connection state event. :type device_connection_state_event_info: ~azure.eventgrid.models.DeviceConnectionStateEventInfo """ _attribute_map = { 'device_id': {'key': 'deviceId', 'type': 'str'}, 'module_id': {'key': 'moduleId', 'type': 'str'}, 'hub_name': {'key': 'hubName', 'type': 'str'}, 'device_connection_state_event_info': {'key': 'deviceConnectionStateEventInfo', 'type': 'DeviceConnectionStateEventInfo'}, } def __init__(self, **kwargs): super(IotHubDeviceDisconnectedEventData, self).__init__(**kwargs)