com.pulumi.azure.datafactory.kotlin.outputs.DatasetDelimitedTextAzureBlobFsLocation.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.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property dynamicFileSystemEnabled Is the `file_system` using dynamic expression, function or system variables? Defaults to `false`.
* @property dynamicFilenameEnabled Is the `filename` using dynamic expression, function or system variables? Defaults to `false`.
* @property dynamicPathEnabled Is the `path` using dynamic expression, function or system variables? Defaults to `false`.
* @property fileSystem The storage data lake gen2 file system on the Azure Blob Storage Account hosting the file.
* @property filename The filename of the file.
* @property path The folder path to the file.
*/
public data class DatasetDelimitedTextAzureBlobFsLocation(
public val dynamicFileSystemEnabled: Boolean? = null,
public val dynamicFilenameEnabled: Boolean? = null,
public val dynamicPathEnabled: Boolean? = null,
public val fileSystem: String? = null,
public val filename: String? = null,
public val path: String? = null,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.datafactory.outputs.DatasetDelimitedTextAzureBlobFsLocation):
DatasetDelimitedTextAzureBlobFsLocation = DatasetDelimitedTextAzureBlobFsLocation(
dynamicFileSystemEnabled = javaType.dynamicFileSystemEnabled().map({ args0 -> args0 }).orElse(null),
dynamicFilenameEnabled = javaType.dynamicFilenameEnabled().map({ args0 -> args0 }).orElse(null),
dynamicPathEnabled = javaType.dynamicPathEnabled().map({ args0 -> args0 }).orElse(null),
fileSystem = javaType.fileSystem().map({ args0 -> args0 }).orElse(null),
filename = javaType.filename().map({ args0 -> args0 }).orElse(null),
path = javaType.path().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy