com.pulumi.azure.datashare.kotlin.inputs.GetDatasetKustoDatabasePlainArgs.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.GetDatasetKustoDatabasePlainArgs.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 getDatasetKustoDatabase.
* @property name The name of this Data Share Kusto Database Dataset.
* @property shareId The resource ID of the Data Share where this Data Share Kusto Database Dataset should be created.
*/
public data class GetDatasetKustoDatabasePlainArgs(
public val name: String,
public val shareId: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.datashare.inputs.GetDatasetKustoDatabasePlainArgs =
com.pulumi.azure.datashare.inputs.GetDatasetKustoDatabasePlainArgs.builder()
.name(name.let({ args0 -> args0 }))
.shareId(shareId.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetDatasetKustoDatabasePlainArgs].
*/
@PulumiTagMarker
public class GetDatasetKustoDatabasePlainArgsBuilder internal constructor() {
private var name: String? = null
private var shareId: String? = null
/**
* @param value The name of this Data Share Kusto Database Dataset.
*/
@JvmName("ewdxffvjoyjaadmk")
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 Kusto Database Dataset should be created.
*/
@JvmName("cchjarpgaqxthyes")
public suspend fun shareId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.shareId = mapped
}
internal fun build(): GetDatasetKustoDatabasePlainArgs = GetDatasetKustoDatabasePlainArgs(
name = name ?: throw PulumiNullFieldException("name"),
shareId = shareId ?: throw PulumiNullFieldException("shareId"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy