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

com.pulumi.azure.datafactory.kotlin.outputs.TriggerScheduleScheduleMonthly.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.14.0.0
Show newest version
@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