Class: Google::Apis::BigqueryV2::StandardSqlField

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

A field or a column.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ StandardSqlField

Returns a new instance of StandardSqlField.



7428
7429
7430
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7428

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

Instance Attribute Details

#nameString

Optional. The name of this field. Can be absent for struct fields. Corresponds to the JSON property name

Returns:

  • (String)


7416
7417
7418
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7416

def name
  @name
end

#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 type



7426
7427
7428
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7426

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7433
7434
7435
7436
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7433

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