WebAppArgs

data class WebAppArgs(val deletionPolicy: Output<String>? = null, val displayName: Output<String>? = null, val project: Output<String>? = null) : ConvertibleToJava<WebAppArgs>

{{% examples %}}

Example Usage

{{% /examples %}}

Import

WebApp can be imported using any of these accepted formats

$ pulumi import gcp:firebase/webApp:WebApp default {{project}}/{{name}}
$ pulumi import gcp:firebase/webApp:WebApp default {{project}} {{name}}
$ pulumi import gcp:firebase/webApp:WebApp default {{name}}

Constructors

Link copied to clipboard
fun WebAppArgs(deletionPolicy: Output<String>? = null, displayName: Output<String>? = null, project: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): WebAppArgs

Properties

Link copied to clipboard
val deletionPolicy: Output<String>? = null

Set to 'ABANDON' to allow the WebApp to be untracked from terraform state rather than deleted upon 'terraform destroy'. This is useful becaue the WebApp may be serving traffic. Set to 'DELETE' to delete the WebApp. Default to 'ABANDON'

Link copied to clipboard
val displayName: Output<String>? = null

The user-assigned display name of the App.

Link copied to clipboard
val project: Output<String>? = null

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.