![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.logic.kotlin.inputs.EdifactValidationOverrideArgs.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.EdifactValidationOverrideArgs.builder
import com.pulumi.azurenative.logic.kotlin.enums.TrailingSeparatorPolicy
import com.pulumi.core.Either
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.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* The Edifact validation override settings.
* @property allowLeadingAndTrailingSpacesAndZeroes The value indicating whether to allow leading and trailing spaces and zeroes.
* @property enforceCharacterSet The value indicating whether to validate character Set.
* @property messageId The message id on which the validation settings has to be applied.
* @property trailingSeparatorPolicy The trailing separator policy.
* @property trimLeadingAndTrailingSpacesAndZeroes The value indicating whether to trim leading and trailing spaces and zeroes.
* @property validateEDITypes The value indicating whether to validate EDI types.
* @property validateXSDTypes The value indicating whether to validate XSD types.
*/
public data class EdifactValidationOverrideArgs(
public val allowLeadingAndTrailingSpacesAndZeroes: Output,
public val enforceCharacterSet: Output,
public val messageId: Output,
public val trailingSeparatorPolicy: Output>,
public val trimLeadingAndTrailingSpacesAndZeroes: Output,
public val validateEDITypes: Output,
public val validateXSDTypes: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.logic.inputs.EdifactValidationOverrideArgs =
com.pulumi.azurenative.logic.inputs.EdifactValidationOverrideArgs.builder()
.allowLeadingAndTrailingSpacesAndZeroes(
allowLeadingAndTrailingSpacesAndZeroes.applyValue({ args0 ->
args0
}),
)
.enforceCharacterSet(enforceCharacterSet.applyValue({ args0 -> args0 }))
.messageId(messageId.applyValue({ args0 -> args0 }))
.trailingSeparatorPolicy(
trailingSeparatorPolicy.applyValue({ args0 ->
args0.transform({ args0 ->
args0
}, { args0 -> args0.let({ args0 -> args0.toJava() }) })
}),
)
.trimLeadingAndTrailingSpacesAndZeroes(
trimLeadingAndTrailingSpacesAndZeroes.applyValue({ args0 ->
args0
}),
)
.validateEDITypes(validateEDITypes.applyValue({ args0 -> args0 }))
.validateXSDTypes(validateXSDTypes.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [EdifactValidationOverrideArgs].
*/
@PulumiTagMarker
public class EdifactValidationOverrideArgsBuilder internal constructor() {
private var allowLeadingAndTrailingSpacesAndZeroes: Output? = null
private var enforceCharacterSet: Output? = null
private var messageId: Output? = null
private var trailingSeparatorPolicy: Output>? = null
private var trimLeadingAndTrailingSpacesAndZeroes: Output? = null
private var validateEDITypes: Output? = null
private var validateXSDTypes: Output? = null
/**
* @param value The value indicating whether to allow leading and trailing spaces and zeroes.
*/
@JvmName("gpsvcsbnohhbvmsr")
public suspend fun allowLeadingAndTrailingSpacesAndZeroes(`value`: Output) {
this.allowLeadingAndTrailingSpacesAndZeroes = value
}
/**
* @param value The value indicating whether to validate character Set.
*/
@JvmName("wlmrlifaujkqdjjj")
public suspend fun enforceCharacterSet(`value`: Output) {
this.enforceCharacterSet = value
}
/**
* @param value The message id on which the validation settings has to be applied.
*/
@JvmName("enrilqvkfdwhfosi")
public suspend fun messageId(`value`: Output) {
this.messageId = value
}
/**
* @param value The trailing separator policy.
*/
@JvmName("atgvguadnvbcweei")
public suspend fun trailingSeparatorPolicy(`value`: Output>) {
this.trailingSeparatorPolicy = value
}
/**
* @param value The value indicating whether to trim leading and trailing spaces and zeroes.
*/
@JvmName("tnguhcqcpfnntvif")
public suspend fun trimLeadingAndTrailingSpacesAndZeroes(`value`: Output) {
this.trimLeadingAndTrailingSpacesAndZeroes = value
}
/**
* @param value The value indicating whether to validate EDI types.
*/
@JvmName("sjticifwhgiqnuby")
public suspend fun validateEDITypes(`value`: Output) {
this.validateEDITypes = value
}
/**
* @param value The value indicating whether to validate XSD types.
*/
@JvmName("tyyssmnmftfjjsad")
public suspend fun validateXSDTypes(`value`: Output) {
this.validateXSDTypes = value
}
/**
* @param value The value indicating whether to allow leading and trailing spaces and zeroes.
*/
@JvmName("rcfaxvhwkqlyshiw")
public suspend fun allowLeadingAndTrailingSpacesAndZeroes(`value`: Boolean) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.allowLeadingAndTrailingSpacesAndZeroes = mapped
}
/**
* @param value The value indicating whether to validate character Set.
*/
@JvmName("clogpubgbpnbsvvy")
public suspend fun enforceCharacterSet(`value`: Boolean) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.enforceCharacterSet = mapped
}
/**
* @param value The message id on which the validation settings has to be applied.
*/
@JvmName("llnqauipivxiuiog")
public suspend fun messageId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.messageId = mapped
}
/**
* @param value The trailing separator policy.
*/
@JvmName("damrpulmfetgoadl")
public suspend fun trailingSeparatorPolicy(`value`: Either) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.trailingSeparatorPolicy = mapped
}
/**
* @param value The trailing separator policy.
*/
@JvmName("heodypxupnnerrxn")
public fun trailingSeparatorPolicy(`value`: String) {
val toBeMapped = Either.ofLeft(value)
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.trailingSeparatorPolicy = mapped
}
/**
* @param value The trailing separator policy.
*/
@JvmName("shahtkxvjugognbk")
public fun trailingSeparatorPolicy(`value`: TrailingSeparatorPolicy) {
val toBeMapped = Either.ofRight(value)
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.trailingSeparatorPolicy = mapped
}
/**
* @param value The value indicating whether to trim leading and trailing spaces and zeroes.
*/
@JvmName("yskphgwpnmrnogdn")
public suspend fun trimLeadingAndTrailingSpacesAndZeroes(`value`: Boolean) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.trimLeadingAndTrailingSpacesAndZeroes = mapped
}
/**
* @param value The value indicating whether to validate EDI types.
*/
@JvmName("hibtkpbmeshyeheh")
public suspend fun validateEDITypes(`value`: Boolean) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.validateEDITypes = mapped
}
/**
* @param value The value indicating whether to validate XSD types.
*/
@JvmName("rkbcqmxnshoyqgmo")
public suspend fun validateXSDTypes(`value`: Boolean) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.validateXSDTypes = mapped
}
internal fun build(): EdifactValidationOverrideArgs = EdifactValidationOverrideArgs(
allowLeadingAndTrailingSpacesAndZeroes = allowLeadingAndTrailingSpacesAndZeroes ?: throw
PulumiNullFieldException("allowLeadingAndTrailingSpacesAndZeroes"),
enforceCharacterSet = enforceCharacterSet ?: throw PulumiNullFieldException("enforceCharacterSet"),
messageId = messageId ?: throw PulumiNullFieldException("messageId"),
trailingSeparatorPolicy = trailingSeparatorPolicy ?: throw
PulumiNullFieldException("trailingSeparatorPolicy"),
trimLeadingAndTrailingSpacesAndZeroes = trimLeadingAndTrailingSpacesAndZeroes ?: throw
PulumiNullFieldException("trimLeadingAndTrailingSpacesAndZeroes"),
validateEDITypes = validateEDITypes ?: throw PulumiNullFieldException("validateEDITypes"),
validateXSDTypes = validateXSDTypes ?: throw PulumiNullFieldException("validateXSDTypes"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy