
com.pulumi.azure.datafactory.kotlin.inputs.DatasetDelimitedTextHttpServerLocationArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.datafactory.kotlin.inputs
import com.pulumi.azure.datafactory.inputs.DatasetDelimitedTextHttpServerLocationArgs.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.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @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 web server.
* @property path The folder path to the file on the web server.
* @property relativeUrl The base URL to the web server hosting the file.
*/
public data class DatasetDelimitedTextHttpServerLocationArgs(
public val dynamicFilenameEnabled: Output? = null,
public val dynamicPathEnabled: Output? = null,
public val filename: Output,
public val path: Output,
public val relativeUrl: Output,
) :
ConvertibleToJava {
override fun toJava():
com.pulumi.azure.datafactory.inputs.DatasetDelimitedTextHttpServerLocationArgs =
com.pulumi.azure.datafactory.inputs.DatasetDelimitedTextHttpServerLocationArgs.builder()
.dynamicFilenameEnabled(dynamicFilenameEnabled?.applyValue({ args0 -> args0 }))
.dynamicPathEnabled(dynamicPathEnabled?.applyValue({ args0 -> args0 }))
.filename(filename.applyValue({ args0 -> args0 }))
.path(path.applyValue({ args0 -> args0 }))
.relativeUrl(relativeUrl.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DatasetDelimitedTextHttpServerLocationArgs].
*/
@PulumiTagMarker
public class DatasetDelimitedTextHttpServerLocationArgsBuilder internal constructor() {
private var dynamicFilenameEnabled: Output? = null
private var dynamicPathEnabled: Output? = null
private var filename: Output? = null
private var path: Output? = null
private var relativeUrl: Output? = null
/**
* @param value Is the `filename` using dynamic expression, function or system variables? Defaults to `false`.
*/
@JvmName("qqcuyxctpxopxwbh")
public suspend fun dynamicFilenameEnabled(`value`: Output) {
this.dynamicFilenameEnabled = value
}
/**
* @param value Is the `path` using dynamic expression, function or system variables? Defaults to `false`.
*/
@JvmName("aerarawpdseiophs")
public suspend fun dynamicPathEnabled(`value`: Output) {
this.dynamicPathEnabled = value
}
/**
* @param value The filename of the file on the web server.
*/
@JvmName("iklcltjytshkheiy")
public suspend fun filename(`value`: Output) {
this.filename = value
}
/**
* @param value The folder path to the file on the web server.
*/
@JvmName("owduadjwfgslguun")
public suspend fun path(`value`: Output) {
this.path = value
}
/**
* @param value The base URL to the web server hosting the file.
*/
@JvmName("exbgeantlmlxffay")
public suspend fun relativeUrl(`value`: Output) {
this.relativeUrl = value
}
/**
* @param value Is the `filename` using dynamic expression, function or system variables? Defaults to `false`.
*/
@JvmName("mmjtkcrrqtmbtbtt")
public suspend fun dynamicFilenameEnabled(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.dynamicFilenameEnabled = mapped
}
/**
* @param value Is the `path` using dynamic expression, function or system variables? Defaults to `false`.
*/
@JvmName("lkwycyutwybjtoda")
public suspend fun dynamicPathEnabled(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.dynamicPathEnabled = mapped
}
/**
* @param value The filename of the file on the web server.
*/
@JvmName("xitnjwxxfvrnbgud")
public suspend fun filename(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.filename = mapped
}
/**
* @param value The folder path to the file on the web server.
*/
@JvmName("xiotunsdunskwgui")
public suspend fun path(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.path = mapped
}
/**
* @param value The base URL to the web server hosting the file.
*/
@JvmName("yerjftnwaqydifah")
public suspend fun relativeUrl(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.relativeUrl = mapped
}
internal fun build(): DatasetDelimitedTextHttpServerLocationArgs =
DatasetDelimitedTextHttpServerLocationArgs(
dynamicFilenameEnabled = dynamicFilenameEnabled,
dynamicPathEnabled = dynamicPathEnabled,
filename = filename ?: throw PulumiNullFieldException("filename"),
path = path ?: throw PulumiNullFieldException("path"),
relativeUrl = relativeUrl ?: throw PulumiNullFieldException("relativeUrl"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy