com.pulumi.azure.logicapps.kotlin.inputs.TriggerRecurrenceScheduleArgs.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.inputs
import com.pulumi.azure.logicapps.inputs.TriggerRecurrenceScheduleArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property atTheseHours Specifies a list of hours when the trigger should run. Valid values are between 0 and 23.
* @property atTheseMinutes Specifies a list of minutes when the trigger should run. Valid values are between 0 and 59.
* @property onTheseDays Specifies a list of days when the trigger should run. Valid values include `Monday`, `Tuesday`, `Wednesday`, `Thursday`, `Friday`, `Saturday`, and `Sunday`.
*/
public data class TriggerRecurrenceScheduleArgs(
public val atTheseHours: Output>? = null,
public val atTheseMinutes: Output>? = null,
public val onTheseDays: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.logicapps.inputs.TriggerRecurrenceScheduleArgs =
com.pulumi.azure.logicapps.inputs.TriggerRecurrenceScheduleArgs.builder()
.atTheseHours(atTheseHours?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.atTheseMinutes(atTheseMinutes?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.onTheseDays(onTheseDays?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [TriggerRecurrenceScheduleArgs].
*/
@PulumiTagMarker
public class TriggerRecurrenceScheduleArgsBuilder internal constructor() {
private var atTheseHours: Output>? = null
private var atTheseMinutes: Output>? = null
private var onTheseDays: Output>? = null
/**
* @param value Specifies a list of hours when the trigger should run. Valid values are between 0 and 23.
*/
@JvmName("naslhxfxieambwaf")
public suspend fun atTheseHours(`value`: Output>) {
this.atTheseHours = value
}
@JvmName("dxoujxrbgqcinmha")
public suspend fun atTheseHours(vararg values: Output) {
this.atTheseHours = Output.all(values.asList())
}
/**
* @param values Specifies a list of hours when the trigger should run. Valid values are between 0 and 23.
*/
@JvmName("hwflplswhhpfqaba")
public suspend fun atTheseHours(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy