All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.firebase.kotlin.outputs.HostingCustomDomainCertVerificationHttp.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.13.1.0
Show newest version
@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