Class: Google::Apis::BigqueryV2::QueryParameter

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ QueryParameter

Returns a new instance of QueryParameter



3989
3990
3991
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3989

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

Instance Attribute Details

#nameString

[Optional] If unset, this is a positional parameter. Otherwise, should be unique within a query. Corresponds to the JSON property name

Returns:

  • (String)


3977
3978
3979
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3977

def name
  @name
end

#parameter_typeGoogle::Apis::BigqueryV2::QueryParameterType

[Required] The type of this parameter. Corresponds to the JSON property parameterType



3982
3983
3984
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3982

def parameter_type
  @parameter_type
end

#parameter_valueGoogle::Apis::BigqueryV2::QueryParameterValue

[Required] The value of this parameter. Corresponds to the JSON property parameterValue



3987
3988
3989
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3987

def parameter_value
  @parameter_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3994
3995
3996
3997
3998
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3994

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