Class: Google::Apis::BigqueryV2::JobConfigurationExtract

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/bigquery_v2/classes.rb,
generated/google/apis/bigquery_v2/representations.rb,
generated/google/apis/bigquery_v2/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ JobConfigurationExtract

Returns a new instance of JobConfigurationExtract



1210
1211
1212
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1210

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#compressionString

[Optional] The compression type to use for exported files. Possible values include GZIP and NONE. The default value is NONE. Corresponds to the JSON property compression

Returns:

  • (String)


1172
1173
1174
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1172

def compression
  @compression
end

#destination_formatString

[Optional] The exported file format. Possible values include CSV, NEWLINE_DELIMITED_JSON and AVRO. The default value is CSV. Tables with nested or repeated fields cannot be exported as CSV. Corresponds to the JSON property destinationFormat

Returns:

  • (String)


1179
1180
1181
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1179

def destination_format
  @destination_format
end

#destination_uriString

[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. Corresponds to the JSON property destinationUri

Returns:

  • (String)


1186
1187
1188
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1186

def destination_uri
  @destination_uri
end

#destination_urisArray<String>

[Pick one] A list of fully-qualified Google Cloud Storage URIs where the extracted table should be written. Corresponds to the JSON property destinationUris

Returns:

  • (Array<String>)


1192
1193
1194
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1192

def destination_uris
  @destination_uris
end

#field_delimiterString

[Optional] Delimiter to use between fields in the exported data. Default is ',' Corresponds to the JSON property fieldDelimiter

Returns:

  • (String)


1197
1198
1199
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1197

def field_delimiter
  @field_delimiter
end

[Optional] Whether to print out a header row in the results. Default is true. Corresponds to the JSON property printHeader

Returns:

  • (Boolean)


1202
1203
1204
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1202

def print_header
  @print_header
end

#source_tableGoogle::Apis::BigqueryV2::TableReference

[Required] A reference to the table being exported. Corresponds to the JSON property sourceTable



1208
1209
1210
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1208

def source_table
  @source_table
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1215
1216
1217
1218
1219
1220
1221
1222
1223
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1215

def update!(**args)
  @compression = args[:compression] if args.key?(:compression)
  @destination_format = args[:destination_format] if args.key?(:destination_format)
  @destination_uri = args[:destination_uri] if args.key?(:destination_uri)
  @destination_uris = args[:destination_uris] if args.key?(:destination_uris)
  @field_delimiter = args[:field_delimiter] if args.key?(:field_delimiter)
  @print_header = args[:print_header] if args.key?(:print_header)
  @source_table = args[:source_table] if args.key?(:source_table)
end