com.pulumi.gcp.looker.kotlin.outputs.InstanceDenyMaintenancePeriod.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.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