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

com.pulumi.azurenative.kusto.kotlin.enums.EventHubDataFormat.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.kusto.kotlin.enums

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

/**
 * The data format of the message. Optionally the data format can be added to each message.
 */
public enum class EventHubDataFormat(
    public val javaValue: com.pulumi.azurenative.kusto.enums.EventHubDataFormat,
) : ConvertibleToJava {
    MULTIJSON(com.pulumi.azurenative.kusto.enums.EventHubDataFormat.MULTIJSON),
    JSON(com.pulumi.azurenative.kusto.enums.EventHubDataFormat.JSON),
    CSV(com.pulumi.azurenative.kusto.enums.EventHubDataFormat.CSV),
    TSV(com.pulumi.azurenative.kusto.enums.EventHubDataFormat.TSV),
    SCSV(com.pulumi.azurenative.kusto.enums.EventHubDataFormat.SCSV),
    SOHSV(com.pulumi.azurenative.kusto.enums.EventHubDataFormat.SOHSV),
    PSV(com.pulumi.azurenative.kusto.enums.EventHubDataFormat.PSV),
    TXT(com.pulumi.azurenative.kusto.enums.EventHubDataFormat.TXT),
    RAW(com.pulumi.azurenative.kusto.enums.EventHubDataFormat.RAW),
    SINGLEJSON(com.pulumi.azurenative.kusto.enums.EventHubDataFormat.SINGLEJSON),
    AVRO(com.pulumi.azurenative.kusto.enums.EventHubDataFormat.AVRO),
    TSVE(com.pulumi.azurenative.kusto.enums.EventHubDataFormat.TSVE),
    PARQUET(com.pulumi.azurenative.kusto.enums.EventHubDataFormat.PARQUET),
    ORC(com.pulumi.azurenative.kusto.enums.EventHubDataFormat.ORC),
    APACHEAVRO(com.pulumi.azurenative.kusto.enums.EventHubDataFormat.APACHEAVRO),
    W3CLOGFILE(com.pulumi.azurenative.kusto.enums.EventHubDataFormat.W3CLOGFILE),
    ;

    override fun toJava(): com.pulumi.azurenative.kusto.enums.EventHubDataFormat = javaValue

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy