All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.azuresphere.kotlin.outputs.DeviceInsightResponse.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 2.82.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.azuresphere.kotlin.outputs

import kotlin.Int
import kotlin.String
import kotlin.Suppress

/**
 * Device insight report.
 * @property description Event description
 * @property deviceId Device ID
 * @property endTimestampUtc Event end timestamp
 * @property eventCategory Event category
 * @property eventClass Event class
 * @property eventCount Event count
 * @property eventType Event type
 * @property startTimestampUtc Event start timestamp
 */
public data class DeviceInsightResponse(
    public val description: String,
    public val deviceId: String,
    public val endTimestampUtc: String,
    public val eventCategory: String,
    public val eventClass: String,
    public val eventCount: Int,
    public val eventType: String,
    public val startTimestampUtc: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.azuresphere.outputs.DeviceInsightResponse): DeviceInsightResponse = DeviceInsightResponse(
            description = javaType.description(),
            deviceId = javaType.deviceId(),
            endTimestampUtc = javaType.endTimestampUtc(),
            eventCategory = javaType.eventCategory(),
            eventClass = javaType.eventClass(),
            eventCount = javaType.eventCount(),
            eventType = javaType.eventType(),
            startTimestampUtc = javaType.startTimestampUtc(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy