JobConfigurationArgs

data class JobConfigurationArgs(val copy: Output<JobConfigurationTableCopyArgs>? = null, val dryRun: Output<Boolean>? = null, val extract: Output<JobConfigurationExtractArgs>? = null, val jobTimeoutMs: Output<String>? = null, val labels: Output<Map<String, String>>? = null, val load: Output<JobConfigurationLoadArgs>? = null, val query: Output<JobConfigurationQueryArgs>? = null) : ConvertibleToJava<JobConfigurationArgs>

Constructors

Link copied to clipboard
fun JobConfigurationArgs(copy: Output<JobConfigurationTableCopyArgs>? = null, dryRun: Output<Boolean>? = null, extract: Output<JobConfigurationExtractArgs>? = null, jobTimeoutMs: Output<String>? = null, labels: Output<Map<String, String>>? = null, load: Output<JobConfigurationLoadArgs>? = null, query: Output<JobConfigurationQueryArgs>? = null)

Functions

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

Properties

Link copied to clipboard
val copy: Output<JobConfigurationTableCopyArgs>? = null

Pick one Copies a table.

Link copied to clipboard
val dryRun: Output<Boolean>? = null

Optional If set, don't actually run this job. A valid query will return a mostly empty response with some processing statistics, while an invalid query will return the same error it would if it wasn't a dry run. Behavior of non-query jobs is undefined.

Link copied to clipboard

Pick one Configures an extract job.

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

Optional Job timeout in milliseconds. If this time limit is exceeded, BigQuery may attempt to terminate the job.

Link copied to clipboard
val labels: Output<Map<String, String>>? = null

The labels associated with this job. You can use these to organize and group your jobs. Label keys and values can be no longer than 63 characters, can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. Label values are optional. Label keys must start with a letter and each label in the list must have a different key.

Link copied to clipboard
val load: Output<JobConfigurationLoadArgs>? = null

Pick one Configures a load job.

Link copied to clipboard
val query: Output<JobConfigurationQueryArgs>? = null

Pick one Configures a query job.