com.pulumi.gcp.edgecontainer.kotlin.outputs.ClusterMaintenancePolicyWindowRecurringWindow.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.edgecontainer.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property recurrence An RRULE (https://tools.ietf.org/html/rfc5545#section-3.8.5.3) for how
* this window recurs. They go on for the span of time between the start and
* end time.
* @property window Represents an arbitrary window of time.
* Structure is documented below.
*/
public data class ClusterMaintenancePolicyWindowRecurringWindow(
public val recurrence: String? = null,
public val window: ClusterMaintenancePolicyWindowRecurringWindowWindow? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.edgecontainer.outputs.ClusterMaintenancePolicyWindowRecurringWindow): ClusterMaintenancePolicyWindowRecurringWindow =
ClusterMaintenancePolicyWindowRecurringWindow(
recurrence = javaType.recurrence().map({ args0 -> args0 }).orElse(null),
window = javaType.window().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.edgecontainer.kotlin.outputs.ClusterMaintenancePolicyWindowRecurringWindowWindow.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy