Class: Google::Apis::BigqueryV2::JsonOptions
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::JsonOptions
- 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
-
#encoding ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ JsonOptions
constructor
A new instance of JsonOptions.
-
#update!(**args) ⇒ Object
Update properties of this object.
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
#encoding ⇒ String
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
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 |