Class: Google::Apis::BigqueryV2::StandardSqlDataType
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::StandardSqlDataType
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/bigquery_v2/classes.rb,
generated/google/apis/bigquery_v2/representations.rb,
generated/google/apis/bigquery_v2/representations.rb
Overview
The type of a variable, e.g., a function argument. Examples: INT64: type_kind=
"INT64"
ARRAY: type_kind="ARRAY", array_element_type="STRING"
STRUCT>:
type_kind="STRUCT", struct_type=
fields=[ name="x", type=
type_kind="STRING"
, `name="y", type=`type_kind="ARRAY", array_element_type="DATE"
]``
Instance Attribute Summary collapse
-
#array_element_type ⇒ Google::Apis::BigqueryV2::StandardSqlDataType
The type of a variable, e.g., a function argument.
-
#struct_type ⇒ Google::Apis::BigqueryV2::StandardSqlStructType
The fields of this struct, in order, if type_kind = "STRUCT".
-
#type_kind ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ StandardSqlDataType
constructor
A new instance of StandardSqlDataType.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ StandardSqlDataType
Returns a new instance of StandardSqlDataType.
5682 5683 5684 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 5682 def initialize(**args) update!(**args) end |
Instance Attribute Details
#array_element_type ⇒ Google::Apis::BigqueryV2::StandardSqlDataType
The type of a variable, e.g., a function argument. Examples: INT64: type_kind=
"INT64"
ARRAY: type_kind="ARRAY", array_element_type="STRING"
STRUCT>:
type_kind="STRUCT", struct_type=
fields=[ name="x", type=
type_kind="STRING"
, `name="y", type=`type_kind="ARRAY", array_element_type="DATE"
]`
Corresponds to the JSON property
arrayElementType`
5669 5670 5671 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 5669 def array_element_type @array_element_type end |
#struct_type ⇒ Google::Apis::BigqueryV2::StandardSqlStructType
The fields of this struct, in order, if type_kind = "STRUCT".
Corresponds to the JSON property structType
5674 5675 5676 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 5674 def struct_type @struct_type end |
#type_kind ⇒ String
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
5680 5681 5682 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 5680 def type_kind @type_kind end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5687 5688 5689 5690 5691 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 5687 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 |