
com.pulumi.googlenative.container.v1beta1.kotlin.outputs.DailyMaintenanceWindowResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.container.v1beta1.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Time window specified for daily maintenance operations.
* @property duration [Output only] Duration of the time window, automatically chosen to be smallest possible in the given scenario.
* @property startTime Time within the maintenance window to start the maintenance operations. It must be in format "HH:MM", where HH : [00-23] and MM : [00-59] GMT.
*/
public data class DailyMaintenanceWindowResponse(
public val duration: String,
public val startTime: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.container.v1beta1.outputs.DailyMaintenanceWindowResponse): DailyMaintenanceWindowResponse = DailyMaintenanceWindowResponse(
duration = javaType.duration(),
startTime = javaType.startTime(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy