![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.logic.kotlin.inputs.X12MessageIdentifierArgs.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.X12MessageIdentifierArgs.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 X12 message identifier.
* @property messageId The message id.
*/
public data class X12MessageIdentifierArgs(
public val messageId: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.logic.inputs.X12MessageIdentifierArgs =
com.pulumi.azurenative.logic.inputs.X12MessageIdentifierArgs.builder()
.messageId(messageId.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [X12MessageIdentifierArgs].
*/
@PulumiTagMarker
public class X12MessageIdentifierArgsBuilder internal constructor() {
private var messageId: Output? = null
/**
* @param value The message id.
*/
@JvmName("rilypawswcdfrbcu")
public suspend fun messageId(`value`: Output) {
this.messageId = value
}
/**
* @param value The message id.
*/
@JvmName("ccmhpsbvlleslvuv")
public suspend fun messageId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.messageId = mapped
}
internal fun build(): X12MessageIdentifierArgs = X12MessageIdentifierArgs(
messageId = messageId ?: throw PulumiNullFieldException("messageId"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy