com.pulumi.azure.logicapps.kotlin.outputs.IntegrationAccountBatchConfigurationReleaseCriteriaRecurrence.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.String
import kotlin.Suppress
/**
*
* @property endTime The end time of the schedule, formatted as an RFC3339 string.
* @property frequency The frequency of the schedule. Possible values are `Day`, `Hour`, `Minute`, `Month`, `NotSpecified`, `Second`, `Week` and `Year`.
* @property interval The number of `frequency`s between runs.
* @property schedule A `schedule` block as documented below.
* @property startTime The start time of the schedule, formatted as an RFC3339 string.
* @property timeZone The timezone of the start/end time.
*/
public data class IntegrationAccountBatchConfigurationReleaseCriteriaRecurrence(
public val endTime: String? = null,
public val frequency: String,
public val interval: Int,
public val schedule: IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceSchedule? =
null,
public val startTime: String? = null,
public val timeZone: String? = null,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.logicapps.outputs.IntegrationAccountBatchConfigurationReleaseCriteriaRecurrence):
IntegrationAccountBatchConfigurationReleaseCriteriaRecurrence =
IntegrationAccountBatchConfigurationReleaseCriteriaRecurrence(
endTime = javaType.endTime().map({ args0 -> args0 }).orElse(null),
frequency = javaType.frequency(),
interval = javaType.interval(),
schedule = javaType.schedule().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.logicapps.kotlin.outputs.IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceSchedule.Companion.toKotlin(args0)
})
}).orElse(null),
startTime = javaType.startTime().map({ args0 -> args0 }).orElse(null),
timeZone = javaType.timeZone().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy