![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.logic.kotlin.outputs.RecurrenceScheduleResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.logic.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* The recurrence schedule.
* @property hours The hours.
* @property minutes The minutes.
* @property monthDays The month days.
* @property monthlyOccurrences The monthly occurrences.
* @property weekDays The days of the week.
*/
public data class RecurrenceScheduleResponse(
public val hours: List? = null,
public val minutes: List? = null,
public val monthDays: List? = null,
public val monthlyOccurrences: List? = null,
public val weekDays: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.logic.outputs.RecurrenceScheduleResponse): RecurrenceScheduleResponse = RecurrenceScheduleResponse(
hours = javaType.hours().map({ args0 -> args0 }),
minutes = javaType.minutes().map({ args0 -> args0 }),
monthDays = javaType.monthDays().map({ args0 -> args0 }),
monthlyOccurrences = javaType.monthlyOccurrences().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.logic.kotlin.outputs.RecurrenceScheduleOccurrenceResponse.Companion.toKotlin(args0)
})
}),
weekDays = javaType.weekDays().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy