![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.web.kotlin.outputs.StaticSiteDatabaseConnectionConfigurationFileOverviewResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.web.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* A database connection configuration file
* @property contents The Base64 encoding of the file contents.
* @property fileName The name of the configuration file.
* @property type The type of configuration file.
*/
public data class StaticSiteDatabaseConnectionConfigurationFileOverviewResponse(
public val contents: String,
public val fileName: String,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.web.outputs.StaticSiteDatabaseConnectionConfigurationFileOverviewResponse): StaticSiteDatabaseConnectionConfigurationFileOverviewResponse =
StaticSiteDatabaseConnectionConfigurationFileOverviewResponse(
contents = javaType.contents(),
fileName = javaType.fileName(),
type = javaType.type(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy