com.pulumi.gcp.siteverification.kotlin.outputs.WebResourceSite.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.siteverification.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property identifier The site identifier. If the type is set to SITE, the identifier is a URL. If the type is
* set to INET_DOMAIN, the identifier is a domain name.
* - - -
* @property type The type of resource to be verified.
* Possible values are: `INET_DOMAIN`, `SITE`.
*/
public data class WebResourceSite(
public val identifier: String,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.siteverification.outputs.WebResourceSite): WebResourceSite = WebResourceSite(
identifier = javaType.identifier(),
type = javaType.type(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy