com.pulumi.azure.managedlustre.kotlin.outputs.FileSystemMaintenanceWindow.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.managedlustre.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property dayOfWeek The day of the week on which the maintenance window will occur. Possible values are `Sunday`, `Monday`, `Tuesday`, `Wednesday`, `Thursday`, `Friday` and `Saturday`.
* @property timeOfDayInUtc The time of day (in UTC) to start the maintenance window.
*/
public data class FileSystemMaintenanceWindow(
public val dayOfWeek: String,
public val timeOfDayInUtc: String,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.managedlustre.outputs.FileSystemMaintenanceWindow):
FileSystemMaintenanceWindow = FileSystemMaintenanceWindow(
dayOfWeek = javaType.dayOfWeek(),
timeOfDayInUtc = javaType.timeOfDayInUtc(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy