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

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

The data type of a variable such as a function argument. Examples include: * INT64: "typeKind": "INT64" * ARRAY: "typeKind": "ARRAY", " arrayElementType":"typeKind": "STRING" * STRUCT>: "typeKind": "STRUCT", "structType": "fields": [ "name": "x", "type":"typeKind": "STRING", "name": "y", "type": "typeKind": "ARRAY", "arrayElementType": "typeKind": " DATE" ]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ StandardSqlDataType

Returns a new instance of StandardSqlDataType.



7144
7145
7146
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7144

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

Instance Attribute Details

#array_element_typeGoogle::Apis::BigqueryV2::StandardSqlDataType

The data type of a variable such as a function argument. Examples include: * INT64: "typeKind": "INT64" * ARRAY: "typeKind": "ARRAY", " arrayElementType":"typeKind": "STRING" * STRUCT>: "typeKind": "STRUCT", "structType": "fields": [ "name": "x", "type":"typeKind": "STRING", "name": "y", "type": "typeKind": "ARRAY", "arrayElementType": "typeKind": " DATE" ] Corresponds to the JSON property arrayElementType



7131
7132
7133
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7131

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



7136
7137
7138
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7136

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)


7142
7143
7144
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7142

def type_kind
  @type_kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7149
7150
7151
7152
7153
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7149

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