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

com.pulumi.azurenative.iotoperations.kotlin.outputs.DataFlowEndpointDataExplorerResponse.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.iotoperations.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * Azure Data Explorer endpoint properties
 * @property batching Azure Data Explorer endpoint batching configuration.
 * @property database Database name.
 * @property host Host of the Azure Data Explorer in the form of ..kusto.windows.net .
 */
public data class DataFlowEndpointDataExplorerResponse(
    public val batching: BatchingConfigurationResponse? = null,
    public val database: String,
    public val host: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.iotoperations.outputs.DataFlowEndpointDataExplorerResponse): DataFlowEndpointDataExplorerResponse = DataFlowEndpointDataExplorerResponse(
            batching = javaType.batching().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azurenative.iotoperations.kotlin.outputs.BatchingConfigurationResponse.Companion.toKotlin(args0)
                })
            }).orElse(null),
            database = javaType.database(),
            host = javaType.host(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy