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

com.pulumi.azure.maintenance.kotlin.outputs.GetConfigurationWindow.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.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