com.pulumi.azure.datafactory.kotlin.outputs.TriggerScheduleScheduleMonthly.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.datafactory.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property week The occurrence of the specified day during the month. For example, a `monthly` property with `weekday` and `week` values of `Sunday, -1` means the last Sunday of the month.
* @property weekday The day of the week on which the trigger runs. For example, a `monthly` property with a `weekday` value of `Sunday` means every Sunday of the month.
*/
public data class TriggerScheduleScheduleMonthly(
public val week: Int? = null,
public val weekday: String,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.datafactory.outputs.TriggerScheduleScheduleMonthly):
TriggerScheduleScheduleMonthly = TriggerScheduleScheduleMonthly(
week = javaType.week().map({ args0 -> args0 }).orElse(null),
weekday = javaType.weekday(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy