Class: Google::Apis::BigqueryV2::JsonOptions

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

Overview

Json Options for load and make external tables.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ JsonOptions

Returns a new instance of JsonOptions.



6130
6131
6132
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6130

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

Instance Attribute Details

#encodingString

Optional. The character encoding of the data. The supported values are UTF-8, UTF-16BE, UTF-16LE, UTF-32BE, and UTF-32LE. The default value is UTF-8. Corresponds to the JSON property encoding

Returns:

  • (String)


6128
6129
6130
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6128

def encoding
  @encoding
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6135
6136
6137
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6135

def update!(**args)
  @encoding = args[:encoding] if args.key?(:encoding)
end