com.pulumi.azure.appservice.kotlin.outputs.GetWindowsFunctionAppBackupSchedule.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.appservice.kotlin.outputs
import kotlin.Boolean
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property frequencyInterval How often the backup is executed.
* @property frequencyUnit The unit of time the backup should take place.
* @property keepAtLeastOneBackup Should the service keep at least one backup.
* @property lastExecutionTime The time the backup was last attempted.
* @property retentionPeriodDays After how many days backups is deleted.
* @property startTime When the schedule should start working in RFC-3339 format.
*/
public data class GetWindowsFunctionAppBackupSchedule(
public val frequencyInterval: Int,
public val frequencyUnit: String,
public val keepAtLeastOneBackup: Boolean,
public val lastExecutionTime: String,
public val retentionPeriodDays: Int,
public val startTime: String,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.appservice.outputs.GetWindowsFunctionAppBackupSchedule):
GetWindowsFunctionAppBackupSchedule = GetWindowsFunctionAppBackupSchedule(
frequencyInterval = javaType.frequencyInterval(),
frequencyUnit = javaType.frequencyUnit(),
keepAtLeastOneBackup = javaType.keepAtLeastOneBackup(),
lastExecutionTime = javaType.lastExecutionTime(),
retentionPeriodDays = javaType.retentionPeriodDays(),
startTime = javaType.startTime(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy