com.pulumi.gcp.firebase.kotlin.outputs.HostingCustomDomainRequiredDnsUpdate.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
import kotlin.collections.List
/**
*
* @property checkTime (Output)
* The last time Hosting checked your CustomDomain's DNS records.
* @property desireds A text string to serve at the path.
* @property discovereds Whether Hosting was able to find the required file contents on the
* specified path during its last check.
*/
public data class HostingCustomDomainRequiredDnsUpdate(
public val checkTime: String? = null,
public val desireds: List? = null,
public val discovereds: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.firebase.outputs.HostingCustomDomainRequiredDnsUpdate): HostingCustomDomainRequiredDnsUpdate = HostingCustomDomainRequiredDnsUpdate(
checkTime = javaType.checkTime().map({ args0 -> args0 }).orElse(null),
desireds = javaType.desireds().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.firebase.kotlin.outputs.HostingCustomDomainRequiredDnsUpdateDesired.Companion.toKotlin(args0)
})
}),
discovereds = javaType.discovereds().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.firebase.kotlin.outputs.HostingCustomDomainRequiredDnsUpdateDiscovered.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy