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.



9039
9040
9041
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9039

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)


9027
9028
9029
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9027

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



9037
9038
9039
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9037

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9044
9045
9046
9047
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9044

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