JobExtractArgs

data class JobExtractArgs(val compression: Output<String>? = null, val destinationFormat: Output<String>? = null, val destinationUris: Output<List<String>>, val fieldDelimiter: Output<String>? = null, val printHeader: Output<Boolean>? = null, val sourceModel: Output<JobExtractSourceModelArgs>? = null, val sourceTable: Output<JobExtractSourceTableArgs>? = null, val useAvroLogicalTypes: Output<Boolean>? = null) : ConvertibleToJava<JobExtractArgs>

Constructors

Link copied to clipboard
constructor(compression: Output<String>? = null, destinationFormat: Output<String>? = null, destinationUris: Output<List<String>>, fieldDelimiter: Output<String>? = null, printHeader: Output<Boolean>? = null, sourceModel: Output<JobExtractSourceModelArgs>? = null, sourceTable: Output<JobExtractSourceTableArgs>? = null, useAvroLogicalTypes: Output<Boolean>? = null)

Properties

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

The compression type to use for exported files. Possible values include GZIP, DEFLATE, SNAPPY, and NONE. The default value is NONE. DEFLATE and SNAPPY are only supported for Avro.

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

The exported file format. Possible values include CSV, NEWLINE_DELIMITED_JSON and AVRO for tables and SAVED_MODEL for models. The default value for tables is CSV. Tables with nested or repeated fields cannot be exported as CSV. The default value for models is SAVED_MODEL.

Link copied to clipboard

A list of fully-qualified Google Cloud Storage URIs where the extracted table should be written.

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

When extracting data in CSV format, this defines the delimiter to use between fields in the exported data. Default is ','

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

Whether to print out a header row in the results. Default is true.

Link copied to clipboard

A reference to the model being exported. Structure is documented below.

Link copied to clipboard

A reference to the table being exported. Structure is documented below.

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

Whether to use logical types when extracting to AVRO format.

Functions

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