![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.datafactory.kotlin.outputs.GetTriggerScheduleSchedule.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
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