com.pulumi.gcp.redis.kotlin.outputs.GetInstanceMaintenancePolicyWeeklyMaintenanceWindowStartTime.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.redis.kotlin.outputs
import kotlin.Int
import kotlin.Suppress
/**
*
* @property hours Hours of day in 24 hour format. Should be from 0 to 23.
* An API may choose to allow the value "24:00:00" for scenarios like business closing time.
* @property minutes Minutes of hour of day. Must be from 0 to 59.
* @property nanos Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
* @property seconds Seconds of minutes of the time. Must normally be from 0 to 59.
* An API may allow the value 60 if it allows leap-seconds.
*/
public data class GetInstanceMaintenancePolicyWeeklyMaintenanceWindowStartTime(
public val hours: Int,
public val minutes: Int,
public val nanos: Int,
public val seconds: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.redis.outputs.GetInstanceMaintenancePolicyWeeklyMaintenanceWindowStartTime): GetInstanceMaintenancePolicyWeeklyMaintenanceWindowStartTime =
GetInstanceMaintenancePolicyWeeklyMaintenanceWindowStartTime(
hours = javaType.hours(),
minutes = javaType.minutes(),
nanos = javaType.nanos(),
seconds = javaType.seconds(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy