com.pulumi.azure.monitoring.kotlin.inputs.AlertProcessingRuleSuppressionScheduleRecurrenceWeeklyArgs.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.monitoring.kotlin.inputs
import com.pulumi.azure.monitoring.inputs.AlertProcessingRuleSuppressionScheduleRecurrenceWeeklyArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property daysOfWeeks Specifies a list of dayOfWeek to recurrence. Possible values are `Sunday`, `Monday`, `Tuesday`, `Wednesday`, `Thursday`, `Friday`, and `Saturday`.
* @property endTime Specifies the recurrence end time (H:M:S).
* @property startTime Specifies the recurrence start time (H:M:S).
*/
public data class AlertProcessingRuleSuppressionScheduleRecurrenceWeeklyArgs(
public val daysOfWeeks: Output>,
public val endTime: Output? = null,
public val startTime: Output? = null,
) :
ConvertibleToJava {
override fun toJava():
com.pulumi.azure.monitoring.inputs.AlertProcessingRuleSuppressionScheduleRecurrenceWeeklyArgs =
com.pulumi.azure.monitoring.inputs.AlertProcessingRuleSuppressionScheduleRecurrenceWeeklyArgs.builder()
.daysOfWeeks(daysOfWeeks.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.endTime(endTime?.applyValue({ args0 -> args0 }))
.startTime(startTime?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AlertProcessingRuleSuppressionScheduleRecurrenceWeeklyArgs].
*/
@PulumiTagMarker
public class AlertProcessingRuleSuppressionScheduleRecurrenceWeeklyArgsBuilder internal
constructor() {
private var daysOfWeeks: Output>? = null
private var endTime: Output? = null
private var startTime: Output? = null
/**
* @param value Specifies a list of dayOfWeek to recurrence. Possible values are `Sunday`, `Monday`, `Tuesday`, `Wednesday`, `Thursday`, `Friday`, and `Saturday`.
*/
@JvmName("eutfbxrodcfalibg")
public suspend fun daysOfWeeks(`value`: Output>) {
this.daysOfWeeks = value
}
@JvmName("akgcumfmxghrvtjo")
public suspend fun daysOfWeeks(vararg values: Output) {
this.daysOfWeeks = Output.all(values.asList())
}
/**
* @param values Specifies a list of dayOfWeek to recurrence. Possible values are `Sunday`, `Monday`, `Tuesday`, `Wednesday`, `Thursday`, `Friday`, and `Saturday`.
*/
@JvmName("exdhxyprkvhhrewk")
public suspend fun daysOfWeeks(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy