![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.datafactory.kotlin.inputs.LakeHouseLocationArgs.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.inputs
import com.pulumi.azurenative.datafactory.inputs.LakeHouseLocationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Any
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* The location of Microsoft Fabric LakeHouse Files dataset.
* @property fileName Specify the file name of dataset. Type: string (or Expression with resultType string).
* @property folderPath Specify the folder path of dataset. Type: string (or Expression with resultType string)
* @property type Type of dataset storage location.
* Expected value is 'LakeHouseLocation'.
*/
public data class LakeHouseLocationArgs(
public val fileName: Output? = null,
public val folderPath: Output? = null,
public val type: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.datafactory.inputs.LakeHouseLocationArgs =
com.pulumi.azurenative.datafactory.inputs.LakeHouseLocationArgs.builder()
.fileName(fileName?.applyValue({ args0 -> args0 }))
.folderPath(folderPath?.applyValue({ args0 -> args0 }))
.type(type.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [LakeHouseLocationArgs].
*/
@PulumiTagMarker
public class LakeHouseLocationArgsBuilder internal constructor() {
private var fileName: Output? = null
private var folderPath: Output? = null
private var type: Output? = null
/**
* @param value Specify the file name of dataset. Type: string (or Expression with resultType string).
*/
@JvmName("juefiqtewiivrbgt")
public suspend fun fileName(`value`: Output) {
this.fileName = value
}
/**
* @param value Specify the folder path of dataset. Type: string (or Expression with resultType string)
*/
@JvmName("saotloryxsnpjyej")
public suspend fun folderPath(`value`: Output) {
this.folderPath = value
}
/**
* @param value Type of dataset storage location.
* Expected value is 'LakeHouseLocation'.
*/
@JvmName("idhldsbnkmqhefbt")
public suspend fun type(`value`: Output) {
this.type = value
}
/**
* @param value Specify the file name of dataset. Type: string (or Expression with resultType string).
*/
@JvmName("fnsbqeqehseqbfpe")
public suspend fun fileName(`value`: Any?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.fileName = mapped
}
/**
* @param value Specify the folder path of dataset. Type: string (or Expression with resultType string)
*/
@JvmName("cnuypiurlrxqvwls")
public suspend fun folderPath(`value`: Any?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.folderPath = mapped
}
/**
* @param value Type of dataset storage location.
* Expected value is 'LakeHouseLocation'.
*/
@JvmName("abgrtstwqxpstwbb")
public suspend fun type(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.type = mapped
}
internal fun build(): LakeHouseLocationArgs = LakeHouseLocationArgs(
fileName = fileName,
folderPath = folderPath,
type = type ?: throw PulumiNullFieldException("type"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy