All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.logicapps.kotlin.outputs.IntegrationAccountBatchConfigurationReleaseCriteria.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@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