com.pulumi.gcp.compute.kotlin.outputs.ResourcePolicySnapshotSchedulePolicyScheduleDailySchedule.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 daysInCycle Defines a schedule with units measured in days. The value determines how many days pass between the start of each cycle. Days in cycle for snapshot schedule policy must be 1.
* @property startTime This must be in UTC format that resolves to one of
* 00:00, 04:00, 08:00, 12:00, 16:00, or 20:00. For example,
* both 13:00-5 and 08:00 are valid.
*/
public data class ResourcePolicySnapshotSchedulePolicyScheduleDailySchedule(
public val daysInCycle: Int,
public val startTime: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.compute.outputs.ResourcePolicySnapshotSchedulePolicyScheduleDailySchedule): ResourcePolicySnapshotSchedulePolicyScheduleDailySchedule =
ResourcePolicySnapshotSchedulePolicyScheduleDailySchedule(
daysInCycle = javaType.daysInCycle(),
startTime = javaType.startTime(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy