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

com.pulumi.googlenative.container.v1.kotlin.outputs.TimeWindowResponse.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.googlenative.container.v1.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * Represents an arbitrary window of time.
 * @property endTime The time that the window ends. The end time should take place after the start time.
 * @property maintenanceExclusionOptions MaintenanceExclusionOptions provides maintenance exclusion related options.
 * @property startTime The time that the window first starts.
 */
public data class TimeWindowResponse(
    public val endTime: String,
    public val maintenanceExclusionOptions: MaintenanceExclusionOptionsResponse,
    public val startTime: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.googlenative.container.v1.outputs.TimeWindowResponse): TimeWindowResponse = TimeWindowResponse(
            endTime = javaType.endTime(),
            maintenanceExclusionOptions = javaType.maintenanceExclusionOptions().let({ args0 ->
                com.pulumi.googlenative.container.v1.kotlin.outputs.MaintenanceExclusionOptionsResponse.Companion.toKotlin(args0)
            }),
            startTime = javaType.startTime(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy