![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.synapse.kotlin.inputs.LibraryInfoArgs.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.synapse.kotlin.inputs
import com.pulumi.azurenative.synapse.inputs.LibraryInfoArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Library/package information of a Big Data pool powered by Apache Spark
* @property containerName Storage blob container name.
* @property name Name of the library.
* @property path Storage blob path of library.
* @property type Type of the library.
*/
public data class LibraryInfoArgs(
public val containerName: Output? = null,
public val name: Output? = null,
public val path: Output? = null,
public val type: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.synapse.inputs.LibraryInfoArgs =
com.pulumi.azurenative.synapse.inputs.LibraryInfoArgs.builder()
.containerName(containerName?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 }))
.path(path?.applyValue({ args0 -> args0 }))
.type(type?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [LibraryInfoArgs].
*/
@PulumiTagMarker
public class LibraryInfoArgsBuilder internal constructor() {
private var containerName: Output? = null
private var name: Output? = null
private var path: Output? = null
private var type: Output? = null
/**
* @param value Storage blob container name.
*/
@JvmName("xgglbmfxviribfbr")
public suspend fun containerName(`value`: Output) {
this.containerName = value
}
/**
* @param value Name of the library.
*/
@JvmName("fsnmlreuimgxofgq")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value Storage blob path of library.
*/
@JvmName("sejnhhgifsmhyjnj")
public suspend fun path(`value`: Output) {
this.path = value
}
/**
* @param value Type of the library.
*/
@JvmName("hkhwdfnnnwqjmlcr")
public suspend fun type(`value`: Output) {
this.type = value
}
/**
* @param value Storage blob container name.
*/
@JvmName("bwqsrcnwnepesdjp")
public suspend fun containerName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.containerName = mapped
}
/**
* @param value Name of the library.
*/
@JvmName("jjucgmywuyejslmg")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value Storage blob path of library.
*/
@JvmName("bohmwhipuhgmmeus")
public suspend fun path(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.path = mapped
}
/**
* @param value Type of the library.
*/
@JvmName("pbcgiogolafekhsb")
public suspend fun type(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.type = mapped
}
internal fun build(): LibraryInfoArgs = LibraryInfoArgs(
containerName = containerName,
name = name,
path = path,
type = type,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy