com.pulumi.azure.logicapps.kotlin.inputs.IntegrationAccountPartnerBusinessIdentityArgs.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.logicapps.kotlin.inputs
import com.pulumi.azure.logicapps.inputs.IntegrationAccountPartnerBusinessIdentityArgs.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
/**
*
* @property qualifier The authenticating body that provides unique business identities to organizations.
* @property value The value that identifies the documents that your logic apps receive.
*/
public data class IntegrationAccountPartnerBusinessIdentityArgs(
public val qualifier: Output,
public val `value`: Output,
) :
ConvertibleToJava {
override fun toJava():
com.pulumi.azure.logicapps.inputs.IntegrationAccountPartnerBusinessIdentityArgs =
com.pulumi.azure.logicapps.inputs.IntegrationAccountPartnerBusinessIdentityArgs.builder()
.qualifier(qualifier.applyValue({ args0 -> args0 }))
.`value`(`value`.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [IntegrationAccountPartnerBusinessIdentityArgs].
*/
@PulumiTagMarker
public class IntegrationAccountPartnerBusinessIdentityArgsBuilder internal constructor() {
private var qualifier: Output? = null
private var `value`: Output? = null
/**
* @param value The authenticating body that provides unique business identities to organizations.
*/
@JvmName("gvvfnxowomuhdney")
public suspend fun qualifier(`value`: Output) {
this.qualifier = value
}
/**
* @param value The value that identifies the documents that your logic apps receive.
*/
@JvmName("ujjyvapqdvefrrpe")
public suspend fun `value`(`value`: Output) {
this.`value` = value
}
/**
* @param value The authenticating body that provides unique business identities to organizations.
*/
@JvmName("xdquftgfltnmhuab")
public suspend fun qualifier(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.qualifier = mapped
}
/**
* @param value The value that identifies the documents that your logic apps receive.
*/
@JvmName("xayulbjkmfopxpsl")
public suspend fun `value`(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.`value` = mapped
}
internal fun build(): IntegrationAccountPartnerBusinessIdentityArgs =
IntegrationAccountPartnerBusinessIdentityArgs(
qualifier = qualifier ?: throw PulumiNullFieldException("qualifier"),
`value` = `value` ?: throw PulumiNullFieldException("value"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy