Class: Google::Apis::BigqueryV2::SystemVariables

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

System variables given to a query.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SystemVariables

Returns a new instance of SystemVariables.



9222
9223
9224
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9222

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

Instance Attribute Details

#typesHash<String,Google::Apis::BigqueryV2::StandardSqlDataType>

Output only. Data type for each system variable. Corresponds to the JSON property types



9215
9216
9217
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9215

def types
  @types
end

#valuesHash<String,Object>

Output only. Value for each system variable. Corresponds to the JSON property values

Returns:

  • (Hash<String,Object>)


9220
9221
9222
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9220

def values
  @values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9227
9228
9229
9230
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9227

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