com.pulumi.azure.datashare.kotlin.inputs.GetDatasetDataLakeGen2PlainArgs.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.datashare.kotlin.inputs
import com.pulumi.azure.datashare.inputs.GetDatasetDataLakeGen2PlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* A collection of arguments for invoking getDatasetDataLakeGen2.
* @property name The name of this Data Share Data Lake Gen2 Dataset.
* @property shareId The resource ID of the Data Share where this Data Share Data Lake Gen2 Dataset should be created.
*/
public data class GetDatasetDataLakeGen2PlainArgs(
public val name: String,
public val shareId: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.datashare.inputs.GetDatasetDataLakeGen2PlainArgs =
com.pulumi.azure.datashare.inputs.GetDatasetDataLakeGen2PlainArgs.builder()
.name(name.let({ args0 -> args0 }))
.shareId(shareId.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetDatasetDataLakeGen2PlainArgs].
*/
@PulumiTagMarker
public class GetDatasetDataLakeGen2PlainArgsBuilder internal constructor() {
private var name: String? = null
private var shareId: String? = null
/**
* @param value The name of this Data Share Data Lake Gen2 Dataset.
*/
@JvmName("bkryjqceaosfnchb")
public suspend fun name(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.name = mapped
}
/**
* @param value The resource ID of the Data Share where this Data Share Data Lake Gen2 Dataset should be created.
*/
@JvmName("xtxlqvlgqmapfuko")
public suspend fun shareId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.shareId = mapped
}
internal fun build(): GetDatasetDataLakeGen2PlainArgs = GetDatasetDataLakeGen2PlainArgs(
name = name ?: throw PulumiNullFieldException("name"),
shareId = shareId ?: throw PulumiNullFieldException("shareId"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy