Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
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.inputs
import com.pulumi.azure.logicapps.inputs.IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceScheduleArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property hours A list containing a single item, which specifies the Hour interval at which this recurrence should be triggered.
* @property minutes A list containing a single item which specifies the Minute interval at which this recurrence should be triggered.
* @property monthDays A list of days of the month that the job should execute on.
* @property monthlies A `monthly` block as documented below.
* @property weekDays A list of days of the week that the job should execute on. Possible values are `Sunday`, `Monday`, `Tuesday`, `Wednesday`, `Thursday`, `Friday` and `Saturday`.
*/
public data class IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceScheduleArgs(
public val hours: Output>? = null,
public val minutes: Output>? = null,
public val monthDays: Output>? = null,
public val monthlies: Output>? =
null,
public val weekDays: Output>? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azure.logicapps.inputs.IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceScheduleArgs =
com.pulumi.azure.logicapps.inputs.IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceScheduleArgs.builder()
.hours(hours?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.minutes(minutes?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.monthDays(monthDays?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.monthlies(
monthlies?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.weekDays(weekDays?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceScheduleArgs].
*/
@PulumiTagMarker
public class IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceScheduleArgsBuilder
internal constructor() {
private var hours: Output>? = null
private var minutes: Output>? = null
private var monthDays: Output>? = null
private var monthlies:
Output>? =
null
private var weekDays: Output>? = null
/**
* @param value A list containing a single item, which specifies the Hour interval at which this recurrence should be triggered.
*/
@JvmName("brfjjrjqdhjaghis")
public suspend fun hours(`value`: Output>) {
this.hours = value
}
@JvmName("whgtlkuberhixfhu")
public suspend fun hours(vararg values: Output) {
this.hours = Output.all(values.asList())
}
/**
* @param values A list containing a single item, which specifies the Hour interval at which this recurrence should be triggered.
*/
@JvmName("srytnudhflawfcmi")
public suspend fun hours(values: List