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

com.pulumi.googlenative.container.v1beta1.kotlin.outputs.DailyMaintenanceWindowResponse.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.

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