![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.monitoring.kotlin.outputs.GetDataCollectionRuleDataFlow.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.monitoring.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property builtInTransform The built-in transform to transform stream data.
* @property destinations Specifies a list of destination names. A `azure_monitor_metrics` data source only allows for stream of kind `Microsoft-InsightsMetrics`.
* @property outputStream The output stream of the transform. Only required if the data flow changes data to a different stream.
* @property streams Specifies a list of streams that this data source will be sent to. A stream indicates what schema will be used for this data and usually what table in Log Analytics the data will be sent to.
* @property transformKql The KQL query to transform stream data.
*/
public data class GetDataCollectionRuleDataFlow(
public val builtInTransform: String,
public val destinations: List,
public val outputStream: String,
public val streams: List,
public val transformKql: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.monitoring.outputs.GetDataCollectionRuleDataFlow): GetDataCollectionRuleDataFlow = GetDataCollectionRuleDataFlow(
builtInTransform = javaType.builtInTransform(),
destinations = javaType.destinations().map({ args0 -> args0 }),
outputStream = javaType.outputStream(),
streams = javaType.streams().map({ args0 -> args0 }),
transformKql = javaType.transformKql(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy