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

com.pulumi.gcp.looker.kotlin.outputs.InstanceDenyMaintenancePeriod.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.

There is a newer version: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.looker.kotlin.outputs

import kotlin.Suppress

/**
 *
 * @property endDate Required. Start date of the deny maintenance period
 * Structure is documented below.
 * @property startDate Required. Start date of the deny maintenance period
 * Structure is documented below.
 * @property time Required. Start time of the window in UTC time.
 * Structure is documented below.
 */
public data class InstanceDenyMaintenancePeriod(
    public val endDate: InstanceDenyMaintenancePeriodEndDate,
    public val startDate: InstanceDenyMaintenancePeriodStartDate,
    public val time: InstanceDenyMaintenancePeriodTime,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.looker.outputs.InstanceDenyMaintenancePeriod): InstanceDenyMaintenancePeriod = InstanceDenyMaintenancePeriod(
            endDate = javaType.endDate().let({ args0 ->
                com.pulumi.gcp.looker.kotlin.outputs.InstanceDenyMaintenancePeriodEndDate.Companion.toKotlin(args0)
            }),
            startDate = javaType.startDate().let({ args0 ->
                com.pulumi.gcp.looker.kotlin.outputs.InstanceDenyMaintenancePeriodStartDate.Companion.toKotlin(args0)
            }),
            time = javaType.time().let({ args0 ->
                com.pulumi.gcp.looker.kotlin.outputs.InstanceDenyMaintenancePeriodTime.Companion.toKotlin(args0)
            }),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy