com.pulumi.azure.appservice.kotlin.outputs.GetLinuxWebAppBackup.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.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property enabled Is the Backup enabled?
* @property name The name of this Linux Web App.
* @property schedules A `schedule` block as defined below.
* @property storageAccountUrl The SAS URL to the container.
*/
public data class GetLinuxWebAppBackup(
public val enabled: Boolean,
public val name: String,
public val schedules: List,
public val storageAccountUrl: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.appservice.outputs.GetLinuxWebAppBackup):
GetLinuxWebAppBackup = GetLinuxWebAppBackup(
enabled = javaType.enabled(),
name = javaType.name(),
schedules = javaType.schedules().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.appservice.kotlin.outputs.GetLinuxWebAppBackupSchedule.Companion.toKotlin(args0)
})
}),
storageAccountUrl = javaType.storageAccountUrl(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy