com.pulumi.azure.storage.kotlin.outputs.AccountStaticWebsite.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.storage.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property error404Document The absolute path to a custom webpage that should be used when a request is made which does not correspond to an existing file.
* @property indexDocument The webpage that Azure Storage serves for requests to the root of a website or any subfolder. For example, index.html. The value is case-sensitive.
*/
public data class AccountStaticWebsite(
public val error404Document: String? = null,
public val indexDocument: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.storage.outputs.AccountStaticWebsite):
AccountStaticWebsite = AccountStaticWebsite(
error404Document = javaType.error404Document().map({ args0 -> args0 }).orElse(null),
indexDocument = javaType.indexDocument().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy