Class: Google::Apis::BigqueryV2::StandardSqlDataType

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

Overview

The type of a variable, e.g., a function argument. Examples: INT64: type_kind="INT64" ARRAY: type_kind="ARRAY", array_element_type="STRING" STRUCT>: type_kind="STRUCT", struct_type=fields=[ name="x", type=type_kind="STRING", `name="y", type=`type_kind="ARRAY", array_element_type="DATE" ]``

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) ⇒ StandardSqlDataType

Returns a new instance of StandardSqlDataType.



4773
4774
4775
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4773

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

Instance Attribute Details

#array_element_typeGoogle::Apis::BigqueryV2::StandardSqlDataType

The type of a variable, e.g., a function argument. Examples: INT64: type_kind="INT64" ARRAY: type_kind="ARRAY", array_element_type="STRING" STRUCT>: type_kind="STRUCT", struct_type=fields=[ name="x", type=type_kind="STRING", `name="y", type=`type_kind="ARRAY", array_element_type="DATE" ]` Corresponds to the JSON propertyarrayElementType`



4760
4761
4762
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4760

def array_element_type
  @array_element_type
end

#struct_typeGoogle::Apis::BigqueryV2::StandardSqlStructType

The fields of this struct, in order, if type_kind = "STRUCT". Corresponds to the JSON property structType



4765
4766
4767
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4765

def struct_type
  @struct_type
end

#type_kindString

Required. The top level type of this field. Can be any standard SQL data type (e.g., "INT64", "DATE", "ARRAY"). Corresponds to the JSON property typeKind

Returns:

  • (String)


4771
4772
4773
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4771

def type_kind
  @type_kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4778
4779
4780
4781
4782
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4778

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