![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.datafactory.kotlin.inputs.FtpServerLocationArgs.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.FtpServerLocationArgs.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 ftp server 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 'FtpServerLocation'.
*/
public data class FtpServerLocationArgs(
public val fileName: Output? = null,
public val folderPath: Output? = null,
public val type: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.datafactory.inputs.FtpServerLocationArgs =
com.pulumi.azurenative.datafactory.inputs.FtpServerLocationArgs.builder()
.fileName(fileName?.applyValue({ args0 -> args0 }))
.folderPath(folderPath?.applyValue({ args0 -> args0 }))
.type(type.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [FtpServerLocationArgs].
*/
@PulumiTagMarker
public class FtpServerLocationArgsBuilder 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("uphobtokcxxmyjuy")
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("quukvmqyafstevcw")
public suspend fun folderPath(`value`: Output) {
this.folderPath = value
}
/**
* @param value Type of dataset storage location.
* Expected value is 'FtpServerLocation'.
*/
@JvmName("ogtoufqhwywgyath")
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("wiirgyfpifryciau")
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("jhxulcpscjrgegov")
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 'FtpServerLocation'.
*/
@JvmName("dqdecvxnluhyltwa")
public suspend fun type(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.type = mapped
}
internal fun build(): FtpServerLocationArgs = FtpServerLocationArgs(
fileName = fileName,
folderPath = folderPath,
type = type ?: throw PulumiNullFieldException("type"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy