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

com.pulumi.gcp.compute.kotlin.outputs.ResourcePolicySnapshotSchedulePolicyScheduleHourlySchedule.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.compute.kotlin.outputs

import kotlin.Int
import kotlin.String
import kotlin.Suppress

/**
 *
 * @property hoursInCycle The number of hours between snapshots.
 * @property startTime Time within the window to start the operations.
 * It must be in an hourly format "HH:MM",
 * where HH : [00-23] and MM : [00] GMT. eg: 21:00
 */
public data class ResourcePolicySnapshotSchedulePolicyScheduleHourlySchedule(
    public val hoursInCycle: Int,
    public val startTime: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.compute.outputs.ResourcePolicySnapshotSchedulePolicyScheduleHourlySchedule): ResourcePolicySnapshotSchedulePolicyScheduleHourlySchedule =
            ResourcePolicySnapshotSchedulePolicyScheduleHourlySchedule(
                hoursInCycle = javaType.hoursInCycle(),
                startTime = javaType.startTime(),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy