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

com.pulumi.azurenative.streamanalytics.kotlin.enums.OutputStartMode.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.streamanalytics.kotlin.enums

import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress

/**
 * This property should only be utilized when it is desired that the job be started immediately upon creation. Value may be JobStartTime, CustomTime, or LastOutputEventTime to indicate whether the starting point of the output event stream should start whenever the job is started, start at a custom user time stamp specified via the outputStartTime property, or start from the last event output time.
 */
public enum class OutputStartMode(
    public val javaValue: com.pulumi.azurenative.streamanalytics.enums.OutputStartMode,
) : ConvertibleToJava {
    JobStartTime(com.pulumi.azurenative.streamanalytics.enums.OutputStartMode.JobStartTime),
    CustomTime(com.pulumi.azurenative.streamanalytics.enums.OutputStartMode.CustomTime),
    LastOutputEventTime(com.pulumi.azurenative.streamanalytics.enums.OutputStartMode.LastOutputEventTime),
    ;

    override fun toJava(): com.pulumi.azurenative.streamanalytics.enums.OutputStartMode = javaValue

    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.streamanalytics.enums.OutputStartMode): OutputStartMode = OutputStartMode.values().first { it.javaValue == javaType }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy