Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.pulumi.azurenative.datafactory.kotlin.inputs.FileShareDatasetArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.datafactory.kotlin.inputs
import com.pulumi.azurenative.datafactory.inputs.FileShareDatasetArgs.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 com.pulumi.kotlin.applySuspend
import kotlin.Any
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.collections.Map
import kotlin.jvm.JvmName
/**
* An on-premises file system dataset.
* @property annotations List of tags that can be used for describing the Dataset.
* @property compression The data compression method used for the file system.
* @property description Dataset description.
* @property fileFilter Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
* @property fileName The name of the on-premises file system. Type: string (or Expression with resultType string).
* @property folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
* @property folderPath The path of the on-premises file system. Type: string (or Expression with resultType string).
* @property format The format of the files.
* @property linkedServiceName Linked service reference.
* @property modifiedDatetimeEnd The end of file's modified datetime. Type: string (or Expression with resultType string).
* @property modifiedDatetimeStart The start of file's modified datetime. Type: string (or Expression with resultType string).
* @property parameters Parameters for dataset.
* @property schema Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
* @property structure Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
* @property type Type of dataset.
* Expected value is 'FileShare'.
*/
public data class FileShareDatasetArgs(
public val annotations: Output>? = null,
public val compression: Output? = null,
public val description: Output? = null,
public val fileFilter: Output? = null,
public val fileName: Output? = null,
public val folder: Output? = null,
public val folderPath: Output? = null,
public val format: Output? = null,
public val linkedServiceName: Output,
public val modifiedDatetimeEnd: Output? = null,
public val modifiedDatetimeStart: Output? = null,
public val parameters: Output>? = null,
public val schema: Output? = null,
public val structure: Output? = null,
public val type: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.datafactory.inputs.FileShareDatasetArgs =
com.pulumi.azurenative.datafactory.inputs.FileShareDatasetArgs.builder()
.annotations(annotations?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.compression(compression?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.description(description?.applyValue({ args0 -> args0 }))
.fileFilter(fileFilter?.applyValue({ args0 -> args0 }))
.fileName(fileName?.applyValue({ args0 -> args0 }))
.folder(folder?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.folderPath(folderPath?.applyValue({ args0 -> args0 }))
.format(format?.applyValue({ args0 -> args0 }))
.linkedServiceName(linkedServiceName.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.modifiedDatetimeEnd(modifiedDatetimeEnd?.applyValue({ args0 -> args0 }))
.modifiedDatetimeStart(modifiedDatetimeStart?.applyValue({ args0 -> args0 }))
.parameters(
parameters?.applyValue({ args0 ->
args0.map({ args0 ->
args0.key.to(args0.value.let({ args0 -> args0.toJava() }))
}).toMap()
}),
)
.schema(schema?.applyValue({ args0 -> args0 }))
.structure(structure?.applyValue({ args0 -> args0 }))
.type(type.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [FileShareDatasetArgs].
*/
@PulumiTagMarker
public class FileShareDatasetArgsBuilder internal constructor() {
private var annotations: Output>? = null
private var compression: Output? = null
private var description: Output? = null
private var fileFilter: Output? = null
private var fileName: Output? = null
private var folder: Output? = null
private var folderPath: Output? = null
private var format: Output? = null
private var linkedServiceName: Output? = null
private var modifiedDatetimeEnd: Output? = null
private var modifiedDatetimeStart: Output? = null
private var parameters: Output>? = null
private var schema: Output? = null
private var structure: Output? = null
private var type: Output? = null
/**
* @param value List of tags that can be used for describing the Dataset.
*/
@JvmName("rahpmowmavquoaoo")
public suspend fun annotations(`value`: Output>) {
this.annotations = value
}
@JvmName("gsnacjyyeadftrie")
public suspend fun annotations(vararg values: Output) {
this.annotations = Output.all(values.asList())
}
/**
* @param values List of tags that can be used for describing the Dataset.
*/
@JvmName("xjytkqyoihjajfil")
public suspend fun annotations(values: List>) {
this.annotations = Output.all(values)
}
/**
* @param value The data compression method used for the file system.
*/
@JvmName("eqqosevgpalfagjv")
public suspend fun compression(`value`: Output) {
this.compression = value
}
/**
* @param value Dataset description.
*/
@JvmName("teeobufrotyfqegw")
public suspend fun description(`value`: Output) {
this.description = value
}
/**
* @param value Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
*/
@JvmName("pjjwyspmwblxlihy")
public suspend fun fileFilter(`value`: Output) {
this.fileFilter = value
}
/**
* @param value The name of the on-premises file system. Type: string (or Expression with resultType string).
*/
@JvmName("pjmgxfgjktseyagd")
public suspend fun fileName(`value`: Output) {
this.fileName = value
}
/**
* @param value The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
*/
@JvmName("dfxgbapilvwkynqp")
public suspend fun folder(`value`: Output) {
this.folder = value
}
/**
* @param value The path of the on-premises file system. Type: string (or Expression with resultType string).
*/
@JvmName("riannwapbmwewtnt")
public suspend fun folderPath(`value`: Output) {
this.folderPath = value
}
/**
* @param value The format of the files.
*/
@JvmName("lwaywuhquooxxqcg")
public suspend fun format(`value`: Output) {
this.format = value
}
/**
* @param value Linked service reference.
*/
@JvmName("sqxsilimfcbighuw")
public suspend fun linkedServiceName(`value`: Output) {
this.linkedServiceName = value
}
/**
* @param value The end of file's modified datetime. Type: string (or Expression with resultType string).
*/
@JvmName("oifggdabvxrqavel")
public suspend fun modifiedDatetimeEnd(`value`: Output) {
this.modifiedDatetimeEnd = value
}
/**
* @param value The start of file's modified datetime. Type: string (or Expression with resultType string).
*/
@JvmName("nqeyqffovdiecdoh")
public suspend fun modifiedDatetimeStart(`value`: Output) {
this.modifiedDatetimeStart = value
}
/**
* @param value Parameters for dataset.
*/
@JvmName("whjudmnwyhusxwvv")
public suspend fun parameters(`value`: Output>) {
this.parameters = value
}
/**
* @param value Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
*/
@JvmName("nvcfjvqtcwucasxe")
public suspend fun schema(`value`: Output) {
this.schema = value
}
/**
* @param value Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
*/
@JvmName("hhkjqnkddjriefii")
public suspend fun structure(`value`: Output) {
this.structure = value
}
/**
* @param value Type of dataset.
* Expected value is 'FileShare'.
*/
@JvmName("dvhwhyrkjsampgvk")
public suspend fun type(`value`: Output) {
this.type = value
}
/**
* @param value List of tags that can be used for describing the Dataset.
*/
@JvmName("tmfrdbhmytktvbnn")
public suspend fun annotations(`value`: List?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.annotations = mapped
}
/**
* @param values List of tags that can be used for describing the Dataset.
*/
@JvmName("mudisqdgtyoynocn")
public suspend fun annotations(vararg values: Any) {
val toBeMapped = values.toList()
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.annotations = mapped
}
/**
* @param value The data compression method used for the file system.
*/
@JvmName("tcylnfnkfbnmbmjb")
public suspend fun compression(`value`: DatasetCompressionArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.compression = mapped
}
/**
* @param argument The data compression method used for the file system.
*/
@JvmName("poflaammnxsgkkqj")
public suspend fun compression(argument: suspend DatasetCompressionArgsBuilder.() -> Unit) {
val toBeMapped = DatasetCompressionArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.compression = mapped
}
/**
* @param value Dataset description.
*/
@JvmName("obhbnjbyonheiryj")
public suspend fun description(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.description = mapped
}
/**
* @param value Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
*/
@JvmName("kspabpwgaxipgkbn")
public suspend fun fileFilter(`value`: Any?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.fileFilter = mapped
}
/**
* @param value The name of the on-premises file system. Type: string (or Expression with resultType string).
*/
@JvmName("qmxfeiuqpflquoif")
public suspend fun fileName(`value`: Any?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.fileName = mapped
}
/**
* @param value The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
*/
@JvmName("jonyoepsdhnmigyu")
public suspend fun folder(`value`: DatasetFolderArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.folder = mapped
}
/**
* @param argument The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
*/
@JvmName("aciihfvvhruigwrv")
public suspend fun folder(argument: suspend DatasetFolderArgsBuilder.() -> Unit) {
val toBeMapped = DatasetFolderArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.folder = mapped
}
/**
* @param value The path of the on-premises file system. Type: string (or Expression with resultType string).
*/
@JvmName("lybvgeyelmtcnjsh")
public suspend fun folderPath(`value`: Any?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.folderPath = mapped
}
/**
* @param value The format of the files.
*/
@JvmName("exopmlcvfmtnrtei")
public suspend fun format(`value`: Any?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.format = mapped
}
/**
* @param value Linked service reference.
*/
@JvmName("rsnrdkgyokhclnkb")
public suspend fun linkedServiceName(`value`: LinkedServiceReferenceArgs) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.linkedServiceName = mapped
}
/**
* @param argument Linked service reference.
*/
@JvmName("lesincxivnbmrobj")
public suspend fun linkedServiceName(argument: suspend LinkedServiceReferenceArgsBuilder.() -> Unit) {
val toBeMapped = LinkedServiceReferenceArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.linkedServiceName = mapped
}
/**
* @param value The end of file's modified datetime. Type: string (or Expression with resultType string).
*/
@JvmName("rkiumsdxusgspkxb")
public suspend fun modifiedDatetimeEnd(`value`: Any?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.modifiedDatetimeEnd = mapped
}
/**
* @param value The start of file's modified datetime. Type: string (or Expression with resultType string).
*/
@JvmName("lxeyqipjxensyoqj")
public suspend fun modifiedDatetimeStart(`value`: Any?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.modifiedDatetimeStart = mapped
}
/**
* @param value Parameters for dataset.
*/
@JvmName("rrsaujqtlarxmfeb")
public suspend fun parameters(`value`: Map?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.parameters = mapped
}
/**
* @param argument Parameters for dataset.
*/
@JvmName("lslwahaagvwxeifh")
public suspend fun parameters(vararg argument: Pair Unit>) {
val toBeMapped = argument.toList().map { (left, right) ->
left to
ParameterSpecificationArgsBuilder().applySuspend { right() }.build()
}.toMap()
val mapped = of(toBeMapped)
this.parameters = mapped
}
/**
* @param values Parameters for dataset.
*/
@JvmName("elkxosdcllawgtyj")
public fun parameters(vararg values: Pair) {
val toBeMapped = values.toMap()
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.parameters = mapped
}
/**
* @param value Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
*/
@JvmName("pkslybkvomwrpidk")
public suspend fun schema(`value`: Any?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.schema = mapped
}
/**
* @param value Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
*/
@JvmName("myslxxyqwqacntbo")
public suspend fun structure(`value`: Any?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.structure = mapped
}
/**
* @param value Type of dataset.
* Expected value is 'FileShare'.
*/
@JvmName("dwkpqdupxukxnkkq")
public suspend fun type(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.type = mapped
}
internal fun build(): FileShareDatasetArgs = FileShareDatasetArgs(
annotations = annotations,
compression = compression,
description = description,
fileFilter = fileFilter,
fileName = fileName,
folder = folder,
folderPath = folderPath,
format = format,
linkedServiceName = linkedServiceName ?: throw PulumiNullFieldException("linkedServiceName"),
modifiedDatetimeEnd = modifiedDatetimeEnd,
modifiedDatetimeStart = modifiedDatetimeStart,
parameters = parameters,
schema = schema,
structure = structure,
type = type ?: throw PulumiNullFieldException("type"),
)
}