All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.logic.kotlin.inputs.X12MessageIdentifierArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 2.82.0.0
Show newest version
@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