com.pulumi.gcp.gkebackup.kotlin.outputs.BackupPlanBackupScheduleRpoConfigExclusionWindowStartTime.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.gkebackup.kotlin.outputs
import kotlin.Int
import kotlin.Suppress
/**
*
* @property hours Hours of day in 24 hour format.
* @property minutes Minutes of hour of day.
* @property nanos Fractions of seconds in nanoseconds.
* @property seconds Seconds of minutes of the time.
*/
public data class BackupPlanBackupScheduleRpoConfigExclusionWindowStartTime(
public val hours: Int? = null,
public val minutes: Int? = null,
public val nanos: Int? = null,
public val seconds: Int? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.gkebackup.outputs.BackupPlanBackupScheduleRpoConfigExclusionWindowStartTime): BackupPlanBackupScheduleRpoConfigExclusionWindowStartTime =
BackupPlanBackupScheduleRpoConfigExclusionWindowStartTime(
hours = javaType.hours().map({ args0 -> args0 }).orElse(null),
minutes = javaType.minutes().map({ args0 -> args0 }).orElse(null),
nanos = javaType.nanos().map({ args0 -> args0 }).orElse(null),
seconds = javaType.seconds().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy