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

com.pulumi.azure.datafactory.kotlin.outputs.GetTriggerScheduleSchedule.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.datafactory.kotlin.outputs

import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property daysOfMonths Day(s) of the month on which the trigger is scheduled.
 * @property daysOfWeeks Day(s) of the week on which the trigger is scheduled.
 * @property hours Hours of the day on which the trigger is scheduled.
 * @property minutes Minutes of the hour on which the trigger is scheduled.
 * @property monthlies A `monthly` block as documented below, which specifies the days of the month on which the trigger is scheduled.
 */
public data class GetTriggerScheduleSchedule(
    public val daysOfMonths: List,
    public val daysOfWeeks: List,
    public val hours: List,
    public val minutes: List,
    public val monthlies: List,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.datafactory.outputs.GetTriggerScheduleSchedule): GetTriggerScheduleSchedule = GetTriggerScheduleSchedule(
            daysOfMonths = javaType.daysOfMonths().map({ args0 -> args0 }),
            daysOfWeeks = javaType.daysOfWeeks().map({ args0 -> args0 }),
            hours = javaType.hours().map({ args0 -> args0 }),
            minutes = javaType.minutes().map({ args0 -> args0 }),
            monthlies = javaType.monthlies().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.datafactory.kotlin.outputs.GetTriggerScheduleScheduleMonthly.Companion.toKotlin(args0)
                })
            }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy