![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.logicapps.kotlin.outputs.IntegrationAccountBatchConfigurationReleaseCriteria.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.outputs
import kotlin.Int
import kotlin.Suppress
/**
*
* @property batchSize The batch size in bytes for the Logic App Integration Batch Configuration.
* @property messageCount The message count for the Logic App Integration Batch Configuration.
* @property recurrence A `recurrence` block as documented below.
*/
public data class IntegrationAccountBatchConfigurationReleaseCriteria(
public val batchSize: Int? = null,
public val messageCount: Int? = null,
public val recurrence: IntegrationAccountBatchConfigurationReleaseCriteriaRecurrence? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.logicapps.outputs.IntegrationAccountBatchConfigurationReleaseCriteria): IntegrationAccountBatchConfigurationReleaseCriteria =
IntegrationAccountBatchConfigurationReleaseCriteria(
batchSize = javaType.batchSize().map({ args0 -> args0 }).orElse(null),
messageCount = javaType.messageCount().map({ args0 -> args0 }).orElse(null),
recurrence = javaType.recurrence().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.logicapps.kotlin.outputs.IntegrationAccountBatchConfigurationReleaseCriteriaRecurrence.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy