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

com.pulumi.gcp.storage.kotlin.outputs.TransferJobScheduleStartTimeOfDay.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.12.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.storage.kotlin.outputs

import kotlin.Int
import kotlin.Suppress

/**
 *
 * @property hours Hours of day in 24 hour format. Should be from 0 to 23.
 * @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.
 */
public data class TransferJobScheduleStartTimeOfDay(
    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.storage.outputs.TransferJobScheduleStartTimeOfDay): TransferJobScheduleStartTimeOfDay = TransferJobScheduleStartTimeOfDay(
            hours = javaType.hours(),
            minutes = javaType.minutes(),
            nanos = javaType.nanos(),
            seconds = javaType.seconds(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy