JobConfigurationExtractArgs

data class JobConfigurationExtractArgs(val compression: Output<String>? = null, val destinationFormat: Output<String>? = null, val destinationUri: Output<String>? = null, val destinationUris: Output<List<String>>? = null, val fieldDelimiter: Output<String>? = null, val printHeader: Output<Boolean>? = null, val sourceModel: Output<ModelReferenceArgs>? = null, val sourceTable: Output<TableReferenceArgs>? = null, val useAvroLogicalTypes: Output<Boolean>? = null) : ConvertibleToJava<JobConfigurationExtractArgs>

Constructors

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

Properties

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

Optional 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. Not applicable when extracting models.

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

Optional The exported file format. Possible values include CSV, NEWLINE_DELIMITED_JSON, PARQUET or AVRO for tables and ML_TF_SAVED_MODEL or ML_XGBOOST_BOOSTER 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 ML_TF_SAVED_MODEL.

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

Pick one DEPRECATED: Use destinationUris instead, passing only one URI as necessary. The fully-qualified Google Cloud Storage URI where the extracted table should be written.

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

Pick one 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

Optional Delimiter to use between fields in the exported data. Default is ','. Not applicable when extracting models.

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

Optional Whether to print out a header row in the results. Default is true. Not applicable when extracting models.

Link copied to clipboard
val sourceModel: Output<ModelReferenceArgs>? = null

A reference to the model being exported.

Link copied to clipboard
val sourceTable: Output<TableReferenceArgs>? = null

A reference to the table being exported.

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

Optional If destinationFormat is set to "AVRO", this flag indicates whether to enable extracting applicable column types (such as TIMESTAMP) to their corresponding AVRO logical types (timestamp-micros), instead of only using their raw types (avro-long). Not applicable when extracting models.

Functions

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