![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.backup.kotlin.outputs.PolicyFileShareBackupHourly.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.backup.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property interval Specifies the interval at which backup needs to be triggered. Possible values are `4`, `6`, `8` and `12`.
* @property startTime Specifies the start time of the hourly backup. The time format should be in 24-hour format. Times must be either on the hour or half hour (e.g. 12:00, 12:30, 13:00, etc.).
* @property windowDuration Species the duration of the backup window in hours. Details could be found [here](https://learn.microsoft.com/en-us/azure/backup/backup-azure-files-faq#what-does-the-duration-attribute-in-azure-files-backup-policy-signify-).
*/
public data class PolicyFileShareBackupHourly(
public val interval: Int,
public val startTime: String,
public val windowDuration: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.backup.outputs.PolicyFileShareBackupHourly): PolicyFileShareBackupHourly = PolicyFileShareBackupHourly(
interval = javaType.interval(),
startTime = javaType.startTime(),
windowDuration = javaType.windowDuration(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy