public sealed class CreateExtractJobOptions : JobCreationOptions
Reference documentation and code samples for the Google BigQuery v2 API class CreateExtractJobOptions.
Options for CreateExtractJob
operations.
Namespace
Google.Cloud.BigQuery.V2Assembly
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 | |
---|---|
Type | Description |
CompressionType |
ConfigurationModifier
public Action<JobConfigurationExtract> ConfigurationModifier { get; set; }
Optional action to perform after preparing the request. If this property is non-null, the JobConfigurationExtract used for a request will be passed to the delegate before the request is executed. This allows for fine-grained modifications which aren't otherwise directly supported by the properties in this options type.
Property Value | |
---|---|
Type | Description |
ActionJobConfigurationExtract |
Prefer the properties on this type over this modifier to prepare the request. Only use this modifier to configure aspects for which there are no properties available. This modifier is applied to the request after all properties on this type have been applied. The delegate is only called once per operation, even if the request is automatically retried.
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 | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
bool |
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 | |
---|---|
Type | Description |
bool |