![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.datafactory.kotlin.outputs.FlowletResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.datafactory.kotlin.outputs
import kotlin.Any
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* Data flow flowlet
* @property annotations List of tags that can be used for describing the data flow.
* @property description The description of the data flow.
* @property folder The folder that this data flow is in. If not specified, Data flow will appear at the root level.
* @property script Flowlet script.
* @property scriptLines Flowlet script lines.
* @property sinks List of sinks in Flowlet.
* @property sources List of sources in Flowlet.
* @property transformations List of transformations in Flowlet.
* @property type Type of data flow.
* Expected value is 'Flowlet'.
*/
public data class FlowletResponse(
public val annotations: List? = null,
public val description: String? = null,
public val folder: DataFlowResponseFolder? = null,
public val script: String? = null,
public val scriptLines: List? = null,
public val sinks: List? = null,
public val sources: List? = null,
public val transformations: List? = null,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.datafactory.outputs.FlowletResponse): FlowletResponse = FlowletResponse(
annotations = javaType.annotations().map({ args0 -> args0 }),
description = javaType.description().map({ args0 -> args0 }).orElse(null),
folder = javaType.folder().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.datafactory.kotlin.outputs.DataFlowResponseFolder.Companion.toKotlin(args0)
})
}).orElse(null),
script = javaType.script().map({ args0 -> args0 }).orElse(null),
scriptLines = javaType.scriptLines().map({ args0 -> args0 }),
sinks = javaType.sinks().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.datafactory.kotlin.outputs.DataFlowSinkResponse.Companion.toKotlin(args0)
})
}),
sources = javaType.sources().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.datafactory.kotlin.outputs.DataFlowSourceResponse.Companion.toKotlin(args0)
})
}),
transformations = javaType.transformations().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.datafactory.kotlin.outputs.TransformationResponse.Companion.toKotlin(args0)
})
}),
type = javaType.type(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy