![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.monitoring.kotlin.outputs.ActionRuleSuppressionSuppressionSchedule.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.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property endDateUtc specifies the recurrence UTC end datetime (Y-m-d'T'H:M:S'Z').
* @property recurrenceMonthlies specifies the list of dayOfMonth to recurrence. Possible values are between `1` - `31`. Required if `recurrence_type` is `Monthly`.
* @property recurrenceWeeklies specifies the list of dayOfWeek to recurrence. Possible values are `Sunday`, `Monday`, `Tuesday`, `Wednesday`, `Thursday`, `Friday` and `Saturday`.
* @property startDateUtc specifies the recurrence UTC start datetime (Y-m-d'T'H:M:S'Z').
*/
public data class ActionRuleSuppressionSuppressionSchedule(
public val endDateUtc: String,
public val recurrenceMonthlies: List? = null,
public val recurrenceWeeklies: List? = null,
public val startDateUtc: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.monitoring.outputs.ActionRuleSuppressionSuppressionSchedule): ActionRuleSuppressionSuppressionSchedule = ActionRuleSuppressionSuppressionSchedule(
endDateUtc = javaType.endDateUtc(),
recurrenceMonthlies = javaType.recurrenceMonthlies().map({ args0 -> args0 }),
recurrenceWeeklies = javaType.recurrenceWeeklies().map({ args0 -> args0 }),
startDateUtc = javaType.startDateUtc(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy