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

com.pulumi.gcp.compute.kotlin.outputs.GetResourcePolicySnapshotSchedulePolicyScheduleDailySchedule.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.10.0.0
Show newest version
@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 GetResourcePolicySnapshotSchedulePolicyScheduleDailySchedule(
    public val daysInCycle: Int,
    public val startTime: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.compute.outputs.GetResourcePolicySnapshotSchedulePolicyScheduleDailySchedule): GetResourcePolicySnapshotSchedulePolicyScheduleDailySchedule =
            GetResourcePolicySnapshotSchedulePolicyScheduleDailySchedule(
                daysInCycle = javaType.daysInCycle(),
                startTime = javaType.startTime(),
            )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy