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.
7175 7176 7177 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7175 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
7163 7164 7165 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7163 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
7173 7174 7175 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7173 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7180 7181 7182 7183 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7180 def update!(**args) @name = args[:name] if args.key?(:name) @type = args[:type] if args.key?(:type) end |