![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.monitoring.kotlin.inputs.AlertProcessingRuleSuppressionScheduleRecurrenceMonthlyArgs.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.AlertProcessingRuleSuppressionScheduleRecurrenceMonthlyArgs.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.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property daysOfMonths Specifies a list of dayOfMonth to recurrence. Possible values are integers between `1` - `31`.
* @property endTime Specifies the recurrence end time (H:M:S).
* @property startTime Specifies the recurrence start time (H:M:S).
*/
public data class AlertProcessingRuleSuppressionScheduleRecurrenceMonthlyArgs(
public val daysOfMonths: Output>,
public val endTime: Output? = null,
public val startTime: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azure.monitoring.inputs.AlertProcessingRuleSuppressionScheduleRecurrenceMonthlyArgs =
com.pulumi.azure.monitoring.inputs.AlertProcessingRuleSuppressionScheduleRecurrenceMonthlyArgs.builder()
.daysOfMonths(daysOfMonths.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.endTime(endTime?.applyValue({ args0 -> args0 }))
.startTime(startTime?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AlertProcessingRuleSuppressionScheduleRecurrenceMonthlyArgs].
*/
@PulumiTagMarker
public class AlertProcessingRuleSuppressionScheduleRecurrenceMonthlyArgsBuilder internal constructor() {
private var daysOfMonths: Output>? = null
private var endTime: Output? = null
private var startTime: Output? = null
/**
* @param value Specifies a list of dayOfMonth to recurrence. Possible values are integers between `1` - `31`.
*/
@JvmName("nsqwkvbxhqpogcbb")
public suspend fun daysOfMonths(`value`: Output>) {
this.daysOfMonths = value
}
@JvmName("wgbwiutwmwbygcmu")
public suspend fun daysOfMonths(vararg values: Output) {
this.daysOfMonths = Output.all(values.asList())
}
/**
* @param values Specifies a list of dayOfMonth to recurrence. Possible values are integers between `1` - `31`.
*/
@JvmName("jtfthetteqtwcdhn")
public suspend fun daysOfMonths(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy