com.pulumi.gcp.compute.kotlin.outputs.GetResourcePolicySnapshotSchedulePolicyScheduleHourlySchedule.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.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 GetResourcePolicySnapshotSchedulePolicyScheduleHourlySchedule(
public val hoursInCycle: Int,
public val startTime: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.compute.outputs.GetResourcePolicySnapshotSchedulePolicyScheduleHourlySchedule): GetResourcePolicySnapshotSchedulePolicyScheduleHourlySchedule =
GetResourcePolicySnapshotSchedulePolicyScheduleHourlySchedule(
hoursInCycle = javaType.hoursInCycle(),
startTime = javaType.startTime(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy