TargetArgs

data class TargetArgs(val database: Output<String>? = null, val name: Output<String>? = null, val schema: Output<String>? = null) : ConvertibleToJava<TargetArgs>

Represents an action identifier. If the action writes output, the output will be written to the referenced database object.

Constructors

Link copied to clipboard
fun TargetArgs(database: Output<String>? = null, name: Output<String>? = null, schema: Output<String>? = null)

Functions

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

Properties

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

The action's database (Google Cloud project ID) .

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

The action's name, within database and schema.

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

The action's schema (BigQuery dataset ID), within database.