![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.groundstation.kotlin.enums.DataflowEndpointGroupAgentStatus.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.groundstation.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* The status of AgentEndpoint.
*/
public enum class DataflowEndpointGroupAgentStatus(
public val javaValue: com.pulumi.awsnative.groundstation.enums.DataflowEndpointGroupAgentStatus,
) : ConvertibleToJava {
Success(com.pulumi.awsnative.groundstation.enums.DataflowEndpointGroupAgentStatus.Success),
Failed(com.pulumi.awsnative.groundstation.enums.DataflowEndpointGroupAgentStatus.Failed),
Active(com.pulumi.awsnative.groundstation.enums.DataflowEndpointGroupAgentStatus.Active),
Inactive(com.pulumi.awsnative.groundstation.enums.DataflowEndpointGroupAgentStatus.Inactive),
;
override fun toJava(): com.pulumi.awsnative.groundstation.enums.DataflowEndpointGroupAgentStatus =
javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.groundstation.enums.DataflowEndpointGroupAgentStatus): DataflowEndpointGroupAgentStatus =
DataflowEndpointGroupAgentStatus.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy