![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.automation.kotlin.outputs.ScheduleMonthlyOccurrence.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.automation.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property day Day of the occurrence. Must be one of `Monday`, `Tuesday`, `Wednesday`, `Thursday`, `Friday`, `Saturday`, `Sunday`.
* @property occurrence Occurrence of the week within the month. Must be between `1` and `5`. `-1` for last week within the month.
*/
public data class ScheduleMonthlyOccurrence(
public val day: String,
public val occurrence: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.automation.outputs.ScheduleMonthlyOccurrence): ScheduleMonthlyOccurrence = ScheduleMonthlyOccurrence(
day = javaType.day(),
occurrence = javaType.occurrence(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy