
com.pulumi.azure.appservice.kotlin.outputs.WindowsWebAppSiteCredential.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.appservice.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property name The name which should be used for this Windows Web App. Changing this forces a new Windows Web App to be created.
* @property password The Site Credentials Password used for publishing.
*/
public data class WindowsWebAppSiteCredential(
public val name: String? = null,
public val password: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.appservice.outputs.WindowsWebAppSiteCredential): WindowsWebAppSiteCredential = WindowsWebAppSiteCredential(
name = javaType.name().map({ args0 -> args0 }).orElse(null),
password = javaType.password().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy