com.pulumi.digitalocean.kotlin.outputs.DatabaseClusterMaintenanceWindow.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-digitalocean-kotlin Show documentation
Show all versions of pulumi-digitalocean-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.digitalocean.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property day The day of the week on which to apply maintenance updates.
* @property hour The hour in UTC at which maintenance updates will be applied in 24 hour format.
*/
public data class DatabaseClusterMaintenanceWindow(
public val day: String,
public val hour: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.digitalocean.outputs.DatabaseClusterMaintenanceWindow): DatabaseClusterMaintenanceWindow = DatabaseClusterMaintenanceWindow(
day = javaType.day(),
hour = javaType.hour(),
)
}
}