All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.monitoring.kotlin.outputs.ActionRuleSuppressionSuppressionSchedule.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@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