Class: Google::Apis::BigqueryV2::StandardSqlField
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::StandardSqlField
- 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
-
#name ⇒ String
Optional.
-
#type ⇒ Google::Apis::BigqueryV2::StandardSqlDataType
The data type of a variable such as a function argument.
Instance Method Summary collapse
-
#initialize(**args) ⇒ StandardSqlField
constructor
A new instance of StandardSqlField.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ StandardSqlField
Returns a new instance of StandardSqlField.
6827 6828 6829 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6827 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Optional. The name of this field. Can be absent for struct fields.
Corresponds to the JSON property name
6815 6816 6817 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6815 def name @name end |
#type ⇒ Google::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
6825 6826 6827 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6825 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6832 6833 6834 6835 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6832 def update!(**args) @name = args[:name] if args.key?(:name) @type = args[:type] if args.key?(:type) end |