![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.logic.kotlin.inputs.RosettaNetPipBusinessDocumentArgs.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.logic.kotlin.inputs
import com.pulumi.azurenative.logic.inputs.RosettaNetPipBusinessDocumentArgs.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.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* The RosettaNet ProcessConfiguration business document settings.
* @property description The business document description.
* @property name The business document name.
* @property version The business document version.
*/
public data class RosettaNetPipBusinessDocumentArgs(
public val description: Output? = null,
public val name: Output,
public val version: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.logic.inputs.RosettaNetPipBusinessDocumentArgs =
com.pulumi.azurenative.logic.inputs.RosettaNetPipBusinessDocumentArgs.builder()
.description(description?.applyValue({ args0 -> args0 }))
.name(name.applyValue({ args0 -> args0 }))
.version(version.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [RosettaNetPipBusinessDocumentArgs].
*/
@PulumiTagMarker
public class RosettaNetPipBusinessDocumentArgsBuilder internal constructor() {
private var description: Output? = null
private var name: Output? = null
private var version: Output? = null
/**
* @param value The business document description.
*/
@JvmName("qpjxytpafeagucek")
public suspend fun description(`value`: Output) {
this.description = value
}
/**
* @param value The business document name.
*/
@JvmName("lunxmvlusqgnnkka")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The business document version.
*/
@JvmName("rxphqmigkcgmiwpa")
public suspend fun version(`value`: Output) {
this.version = value
}
/**
* @param value The business document description.
*/
@JvmName("qsdcsgcvigwssina")
public suspend fun description(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.description = mapped
}
/**
* @param value The business document name.
*/
@JvmName("jljrlbxlyxlxawmg")
public suspend fun name(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value The business document version.
*/
@JvmName("gmquuhygxvfmjuyf")
public suspend fun version(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.version = mapped
}
internal fun build(): RosettaNetPipBusinessDocumentArgs = RosettaNetPipBusinessDocumentArgs(
description = description,
name = name ?: throw PulumiNullFieldException("name"),
version = version ?: throw PulumiNullFieldException("version"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy