com.pulumi.azure.datafactory.kotlin.outputs.FlowletDataFlowSource.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.datafactory.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property dataset A `dataset` block as defined below.
* @property description The description for the Data Flow Source.
* @property flowlet A `flowlet` block as defined below.
* @property linkedService A `linked_service` block as defined below.
* @property name The name for the Data Flow Source.
* @property rejectedLinkedService A `rejected_linked_service` block as defined below.
* @property schemaLinkedService A `schema_linked_service` block as defined below.
*/
public data class FlowletDataFlowSource(
public val dataset: FlowletDataFlowSourceDataset? = null,
public val description: String? = null,
public val flowlet: FlowletDataFlowSourceFlowlet? = null,
public val linkedService: FlowletDataFlowSourceLinkedService? = null,
public val name: String,
public val rejectedLinkedService: FlowletDataFlowSourceRejectedLinkedService? = null,
public val schemaLinkedService: FlowletDataFlowSourceSchemaLinkedService? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.datafactory.outputs.FlowletDataFlowSource):
FlowletDataFlowSource = FlowletDataFlowSource(
dataset = javaType.dataset().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.datafactory.kotlin.outputs.FlowletDataFlowSourceDataset.Companion.toKotlin(args0)
})
}).orElse(null),
description = javaType.description().map({ args0 -> args0 }).orElse(null),
flowlet = javaType.flowlet().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.datafactory.kotlin.outputs.FlowletDataFlowSourceFlowlet.Companion.toKotlin(args0)
})
}).orElse(null),
linkedService = javaType.linkedService().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.datafactory.kotlin.outputs.FlowletDataFlowSourceLinkedService.Companion.toKotlin(args0)
})
}).orElse(null),
name = javaType.name(),
rejectedLinkedService = javaType.rejectedLinkedService().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.datafactory.kotlin.outputs.FlowletDataFlowSourceRejectedLinkedService.Companion.toKotlin(args0)
})
}).orElse(null),
schemaLinkedService = javaType.schemaLinkedService().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.datafactory.kotlin.outputs.FlowletDataFlowSourceSchemaLinkedService.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy