Class CreateExtractJobOptions (2.2.0)

public sealed class CreateExtractJobOptions : JobCreationOptions

Options for CreateExtractJob operations.

Inheritance

Object > JobCreationOptions > CreateExtractJobOptions

Namespace

Google.Cloud.BigQuery.V2

Assembly

Google.Cloud.BigQuery.V2.dll

Properties

Compression

public CompressionType? Compression { get; set; }

The compression to apply for output. If this is unspecified, the default is not to compress the output.

Property Value
TypeDescription
Nullable<CompressionType>

DestinationFormat

public FileFormat? DestinationFormat { get; set; }

The file format to use for output. If this is unspecified, the default is to create CSV files.

Property Value
TypeDescription
Nullable<FileFormat>

FieldDelimiter

public string FieldDelimiter { get; set; }

The delimiter to use between fields in the exported data. If this is unspecified, the default is a comma.

Property Value
TypeDescription
String

PrintHeader

public bool? PrintHeader { get; set; }

Whether to print out a header row in the results. If this is unspecified, the default is true.

Property Value
TypeDescription
Nullable<Boolean>

UseAvroLogicalTypes

public bool? UseAvroLogicalTypes { get; set; }

Whether to use logical types when extracting to AVRO format. If unset, the server default will be used.

Property Value
TypeDescription
Nullable<Boolean>