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

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

package com.pulumi.gcp.backupdisasterrecovery.kotlin.outputs

import kotlin.Int
import kotlin.Suppress

/**
 *
 * @property endHourOfDay The hour of the day (1-24) when the window ends, for example, if the value of end hour of the day is 10, that means the backup window end time is 10:00.
 * The end hour of the day should be greater than the start
 * @property startHourOfDay The hour of the day (0-23) when the window starts, for example, if the value of the start hour of the day is 6, that means the backup window starts at 6:00.
 */
public data class GetBackupPlanBackupRuleStandardScheduleBackupWindow(
    public val endHourOfDay: Int,
    public val startHourOfDay: Int,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.backupdisasterrecovery.outputs.GetBackupPlanBackupRuleStandardScheduleBackupWindow): GetBackupPlanBackupRuleStandardScheduleBackupWindow =
            GetBackupPlanBackupRuleStandardScheduleBackupWindow(
                endHourOfDay = javaType.endHourOfDay(),
                startHourOfDay = javaType.startHourOfDay(),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy