
com.pulumi.azurenative.integrationspaces.kotlin.inputs.BusinessProcessMappingItemArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.integrationspaces.kotlin.inputs
import com.pulumi.azurenative.integrationspaces.inputs.BusinessProcessMappingItemArgs.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
/**
* The properties of business process mapping.
* @property logicAppResourceId The logic app resource id.
* @property operationName The operation name.
* @property operationType The mapping item operation type of the business process.
* @property workflowName The workflow name within the logic app.
*/
public data class BusinessProcessMappingItemArgs(
public val logicAppResourceId: Output? = null,
public val operationName: Output? = null,
public val operationType: Output? = null,
public val workflowName: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.integrationspaces.inputs.BusinessProcessMappingItemArgs =
com.pulumi.azurenative.integrationspaces.inputs.BusinessProcessMappingItemArgs.builder()
.logicAppResourceId(logicAppResourceId?.applyValue({ args0 -> args0 }))
.operationName(operationName?.applyValue({ args0 -> args0 }))
.operationType(operationType?.applyValue({ args0 -> args0 }))
.workflowName(workflowName?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [BusinessProcessMappingItemArgs].
*/
@PulumiTagMarker
public class BusinessProcessMappingItemArgsBuilder internal constructor() {
private var logicAppResourceId: Output? = null
private var operationName: Output? = null
private var operationType: Output? = null
private var workflowName: Output? = null
/**
* @param value The logic app resource id.
*/
@JvmName("fvphsipasmdstvqi")
public suspend fun logicAppResourceId(`value`: Output) {
this.logicAppResourceId = value
}
/**
* @param value The operation name.
*/
@JvmName("oacxxyfnphstdxtj")
public suspend fun operationName(`value`: Output) {
this.operationName = value
}
/**
* @param value The mapping item operation type of the business process.
*/
@JvmName("iiinawqvjbpqrwgk")
public suspend fun operationType(`value`: Output) {
this.operationType = value
}
/**
* @param value The workflow name within the logic app.
*/
@JvmName("jctxkxdcliixvbsp")
public suspend fun workflowName(`value`: Output) {
this.workflowName = value
}
/**
* @param value The logic app resource id.
*/
@JvmName("itbpwmrfpnqgegci")
public suspend fun logicAppResourceId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.logicAppResourceId = mapped
}
/**
* @param value The operation name.
*/
@JvmName("lrckfotbewdsmlnl")
public suspend fun operationName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.operationName = mapped
}
/**
* @param value The mapping item operation type of the business process.
*/
@JvmName("mpvxqapwyqwjctrc")
public suspend fun operationType(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.operationType = mapped
}
/**
* @param value The workflow name within the logic app.
*/
@JvmName("koocruhwcoymcbmd")
public suspend fun workflowName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.workflowName = mapped
}
internal fun build(): BusinessProcessMappingItemArgs = BusinessProcessMappingItemArgs(
logicAppResourceId = logicAppResourceId,
operationName = operationName,
operationType = operationType,
workflowName = workflowName,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy