com.pulumi.kubernetes.events.v1beta1.kotlin.outputs.EventSeries.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-kubernetes-kotlin Show documentation
Show all versions of pulumi-kubernetes-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.kubernetes.events.v1beta1.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
* EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.
* @property count Number of occurrences in this series up to the last heartbeat time
* @property lastObservedTime Time when last Event from the series was seen before last heartbeat.
* @property state Information whether this series is ongoing or finished. Deprecated. Planned removal for 1.18
*/
public data class EventSeries(
public val count: Int,
public val lastObservedTime: String,
public val state: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.kubernetes.events.v1beta1.outputs.EventSeries): EventSeries = EventSeries(
count = javaType.count(),
lastObservedTime = javaType.lastObservedTime(),
state = javaType.state(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy