com.pulumi.azure.maintenance.kotlin.outputs.GetConfigurationWindow.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.maintenance.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property duration The duration of the maintenance window.
* @property expirationDateTime Effective expiration date of the maintenance window.
* @property recurEvery The rate at which a maintenance window is expected to recur.
* @property startDateTime Effective start date of the maintenance window.
* @property timeZone The time zone for the maintenance window.
*/
public data class GetConfigurationWindow(
public val duration: String,
public val expirationDateTime: String,
public val recurEvery: String,
public val startDateTime: String,
public val timeZone: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.maintenance.outputs.GetConfigurationWindow):
GetConfigurationWindow = GetConfigurationWindow(
duration = javaType.duration(),
expirationDateTime = javaType.expirationDateTime(),
recurEvery = javaType.recurEvery(),
startDateTime = javaType.startDateTime(),
timeZone = javaType.timeZone(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy