Class: Google::Apis::BigqueryV2::QueryParameterValue

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ QueryParameterValue

Returns a new instance of QueryParameterValue.



5940
5941
5942
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5940

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

Instance Attribute Details

#array_valuesArray<Google::Apis::BigqueryV2::QueryParameterValue>

[Optional] The array values, if this is an array type. Corresponds to the JSON property arrayValues



5928
5929
5930
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5928

def array_values
  @array_values
end

#struct_valuesHash<String,Google::Apis::BigqueryV2::QueryParameterValue>

[Optional] The struct field values, in order of the struct type's declaration. Corresponds to the JSON property structValues



5933
5934
5935
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5933

def struct_values
  @struct_values
end

#valueString

[Optional] The value of this value, if a simple scalar type. Corresponds to the JSON property value

Returns:

  • (String)


5938
5939
5940
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5938

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5945
5946
5947
5948
5949
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5945

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