Package-level declarations

Types

Link copied to clipboard
class Owner : KotlinCustomResource

An owner is an additional user that may manage a verified web site in the Google Search Console. There are two types of web resource owners:

Link copied to clipboard
data class OwnerArgs(val email: Output<String>? = null, val webResourceId: Output<String>? = null) : ConvertibleToJava<OwnerArgs>

An owner is an additional user that may manage a verified web site in the Google Search Console. There are two types of web resource owners:

Link copied to clipboard

Builder for OwnerArgs.

Link copied to clipboard
object OwnerMapper : ResourceMapper<Owner>
Link copied to clipboard

Builder for Owner.

Link copied to clipboard
Link copied to clipboard
class WebResource : KotlinCustomResource

A web resource is a website or domain with verified ownership. Once your ownership is verified you will be able to manage your website in the Google Search Console.

Link copied to clipboard
data class WebResourceArgs(val site: Output<WebResourceSiteArgs>? = null, val verificationMethod: Output<String>? = null) : ConvertibleToJava<WebResourceArgs>

A web resource is a website or domain with verified ownership. Once your ownership is verified you will be able to manage your website in the Google Search Console.

Link copied to clipboard
Link copied to clipboard
object WebResourceMapper : ResourceMapper<WebResource>
Link copied to clipboard

Functions

Link copied to clipboard
fun owner(name: String): Owner
suspend fun owner(name: String, block: suspend OwnerResourceBuilder.() -> Unit): Owner
Link copied to clipboard
suspend fun webResource(name: String, block: suspend WebResourceResourceBuilder.() -> Unit): WebResource