![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.gcp.firebase.kotlin.outputs.HostingCustomDomainCertVerificationHttp.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.firebase.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property desired A text string to serve at the path.
* @property discovered Whether Hosting was able to find the required file contents on the
* specified path during its last check.
* @property lastCheckTime (Output)
* The last time Hosting systems checked for the file contents.
* @property path The path to the file.
*/
public data class HostingCustomDomainCertVerificationHttp(
public val desired: String? = null,
public val discovered: String? = null,
public val lastCheckTime: String? = null,
public val path: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.firebase.outputs.HostingCustomDomainCertVerificationHttp): HostingCustomDomainCertVerificationHttp = HostingCustomDomainCertVerificationHttp(
desired = javaType.desired().map({ args0 -> args0 }).orElse(null),
discovered = javaType.discovered().map({ args0 -> args0 }).orElse(null),
lastCheckTime = javaType.lastCheckTime().map({ args0 -> args0 }).orElse(null),
path = javaType.path().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy