![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.datafactory.kotlin.outputs.DatasetBinarySftpServerLocation.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 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 filename The filename of the file on the SFTP server.
* @property path The folder path to the file on the SFTP server.
*/
public data class DatasetBinarySftpServerLocation(
public val dynamicFilenameEnabled: Boolean? = null,
public val dynamicPathEnabled: Boolean? = null,
public val filename: String,
public val path: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.datafactory.outputs.DatasetBinarySftpServerLocation): DatasetBinarySftpServerLocation = DatasetBinarySftpServerLocation(
dynamicFilenameEnabled = javaType.dynamicFilenameEnabled().map({ args0 -> args0 }).orElse(null),
dynamicPathEnabled = javaType.dynamicPathEnabled().map({ args0 -> args0 }).orElse(null),
filename = javaType.filename(),
path = javaType.path(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy