com.azure.messaging.eventgrid.systemevents.IotHubDeviceDisconnectedEventData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-messaging-eventgrid Show documentation
Show all versions of azure-messaging-eventgrid Show documentation
This package contains Microsoft Azure EventGrid SDK.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.messaging.eventgrid.systemevents;
import com.azure.core.annotation.Fluent;
/** Event data for Microsoft.Devices.DeviceDisconnected event. */
@Fluent
public final class IotHubDeviceDisconnectedEventData extends DeviceConnectionStateEventProperties {
/** Creates an instance of IotHubDeviceDisconnectedEventData class. */
public IotHubDeviceDisconnectedEventData() {}
/** {@inheritDoc} */
@Override
public IotHubDeviceDisconnectedEventData setDeviceId(String deviceId) {
super.setDeviceId(deviceId);
return this;
}
/** {@inheritDoc} */
@Override
public IotHubDeviceDisconnectedEventData setModuleId(String moduleId) {
super.setModuleId(moduleId);
return this;
}
/** {@inheritDoc} */
@Override
public IotHubDeviceDisconnectedEventData setHubName(String hubName) {
super.setHubName(hubName);
return this;
}
/** {@inheritDoc} */
@Override
public IotHubDeviceDisconnectedEventData setDeviceConnectionStateEventInfo(
DeviceConnectionStateEventInfo deviceConnectionStateEventInfo) {
super.setDeviceConnectionStateEventInfo(deviceConnectionStateEventInfo);
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy