![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.logic.kotlin.inputs.EdifactProtocolSettingsArgs.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.EdifactProtocolSettingsArgs.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 com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* The Edifact agreement protocol settings.
* @property acknowledgementSettings The EDIFACT acknowledgement settings.
* @property edifactDelimiterOverrides The EDIFACT delimiter override settings.
* @property envelopeOverrides The EDIFACT envelope override settings.
* @property envelopeSettings The EDIFACT envelope settings.
* @property framingSettings The EDIFACT framing settings.
* @property messageFilter The EDIFACT message filter.
* @property messageFilterList The EDIFACT message filter list.
* @property processingSettings The EDIFACT processing Settings.
* @property schemaReferences The EDIFACT schema references.
* @property validationOverrides The EDIFACT validation override settings.
* @property validationSettings The EDIFACT validation settings.
*/
public data class EdifactProtocolSettingsArgs(
public val acknowledgementSettings: Output,
public val edifactDelimiterOverrides: Output>? = null,
public val envelopeOverrides: Output>? = null,
public val envelopeSettings: Output,
public val framingSettings: Output,
public val messageFilter: Output,
public val messageFilterList: Output>? = null,
public val processingSettings: Output,
public val schemaReferences: Output>,
public val validationOverrides: Output>? = null,
public val validationSettings: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.logic.inputs.EdifactProtocolSettingsArgs =
com.pulumi.azurenative.logic.inputs.EdifactProtocolSettingsArgs.builder()
.acknowledgementSettings(
acknowledgementSettings.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.edifactDelimiterOverrides(
edifactDelimiterOverrides?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
)
.envelopeOverrides(
envelopeOverrides?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.envelopeSettings(envelopeSettings.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.framingSettings(framingSettings.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.messageFilter(messageFilter.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.messageFilterList(
messageFilterList?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.processingSettings(
processingSettings.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.schemaReferences(
schemaReferences.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.validationOverrides(
validationOverrides?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
)
.validationSettings(
validationSettings.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [EdifactProtocolSettingsArgs].
*/
@PulumiTagMarker
public class EdifactProtocolSettingsArgsBuilder internal constructor() {
private var acknowledgementSettings: Output? = null
private var edifactDelimiterOverrides: Output>? = null
private var envelopeOverrides: Output>? = null
private var envelopeSettings: Output? = null
private var framingSettings: Output? = null
private var messageFilter: Output? = null
private var messageFilterList: Output>? = null
private var processingSettings: Output? = null
private var schemaReferences: Output>? = null
private var validationOverrides: Output>? = null
private var validationSettings: Output? = null
/**
* @param value The EDIFACT acknowledgement settings.
*/
@JvmName("xtyybmdvauqeebng")
public suspend fun acknowledgementSettings(`value`: Output) {
this.acknowledgementSettings = value
}
/**
* @param value The EDIFACT delimiter override settings.
*/
@JvmName("fuwwbjqqvlmujqqv")
public suspend fun edifactDelimiterOverrides(`value`: Output>) {
this.edifactDelimiterOverrides = value
}
@JvmName("ppxwukttvtpomnfg")
public suspend fun edifactDelimiterOverrides(vararg values: Output) {
this.edifactDelimiterOverrides = Output.all(values.asList())
}
/**
* @param values The EDIFACT delimiter override settings.
*/
@JvmName("gvwhofvptguialcc")
public suspend fun edifactDelimiterOverrides(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy