Show / Hide Table of Contents

Class JobExtractGetArgs

Inheritance
System.Object
InputArgs
ResourceArgs
JobExtractGetArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Gcp.BigQuery.Inputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class JobExtractGetArgs : ResourceArgs

Constructors

View Source

JobExtractGetArgs()

Declaration
public JobExtractGetArgs()

Properties

View Source

Compression

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.

Declaration
public Input<string> Compression { get; set; }
Property Value
Type Description
Input<System.String>
View Source

DestinationFormat

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.

Declaration
public Input<string> DestinationFormat { get; set; }
Property Value
Type Description
Input<System.String>
View Source

DestinationUris

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

Declaration
public InputList<string> DestinationUris { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

FieldDelimiter

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

Declaration
public Input<string> FieldDelimiter { get; set; }
Property Value
Type Description
Input<System.String>
View Source

PrintHeader

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

Declaration
public Input<bool> PrintHeader { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

SourceModel

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

Declaration
public Input<JobExtractSourceModelGetArgs> SourceModel { get; set; }
Property Value
Type Description
Input<JobExtractSourceModelGetArgs>
View Source

SourceTable

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

Declaration
public Input<JobExtractSourceTableGetArgs> SourceTable { get; set; }
Property Value
Type Description
Input<JobExtractSourceTableGetArgs>
View Source

UseAvroLogicalTypes

Whether to use logical types when extracting to AVRO format.

Declaration
public Input<bool> UseAvroLogicalTypes { get; set; }
Property Value
Type Description
Input<System.Boolean>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.