class Google::Apis::BigqueryV2::ParquetOptions
Attributes
enable_list_inference[RW]
- Optional
-
Indicates whether to use schema inference specifically for Parquet
LIST logical type. Corresponds to the JSON property `enableListInference` @return [Boolean]
enable_list_inference?[RW]
- Optional
-
Indicates whether to use schema inference specifically for Parquet
LIST logical type. Corresponds to the JSON property `enableListInference` @return [Boolean]
enum_as_string[RW]
- Optional
-
Indicates whether to infer Parquet ENUM logical type as STRING
instead of BYTES by default. Corresponds to the JSON property `enumAsString` @return [Boolean]
enum_as_string?[RW]
- Optional
-
Indicates whether to infer Parquet ENUM logical type as STRING
instead of BYTES by default. Corresponds to the JSON property `enumAsString` @return [Boolean]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/bigquery_v2/classes.rb, line 4770 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/bigquery_v2/classes.rb, line 4775 def update!(**args) @enable_list_inference = args[:enable_list_inference] if args.key?(:enable_list_inference) @enum_as_string = args[:enum_as_string] if args.key?(:enum_as_string) end