Class: Google::Apis::BigqueryV2::StandardSqlDataType
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::StandardSqlDataType
- 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
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"
]
* RANGE:
"typeKind": "RANGE", "rangeElementType":
"
typeKind": "DATE"
Instance Attribute Summary collapse
-
#array_element_type ⇒ Google::Apis::BigqueryV2::StandardSqlDataType
The data type of a variable such as a function argument.
-
#range_element_type ⇒ Google::Apis::BigqueryV2::StandardSqlDataType
The data type of a variable such as a function argument.
-
#struct_type ⇒ Google::Apis::BigqueryV2::StandardSqlStructType
The representation of a SQL STRUCT type.
-
#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.
9029 9030 9031 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9029 def initialize(**args) update!(**args) end |
Instance Attribute Details
#array_element_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"
]
* RANGE:
"typeKind": "RANGE", "rangeElementType":
"
typeKind": "DATE"
Corresponds to the JSON property
arrayElementType
9005 9006 9007 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9005 def array_element_type @array_element_type end |
#range_element_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"
]
* RANGE:
"typeKind": "RANGE", "rangeElementType":
"
typeKind": "DATE"
Corresponds to the JSON property
rangeElementType
9016 9017 9018 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9016 def range_element_type @range_element_type end |
#struct_type ⇒ Google::Apis::BigqueryV2::StandardSqlStructType
The representation of a SQL STRUCT type.
Corresponds to the JSON property structType
9021 9022 9023 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9021 def struct_type @struct_type end |
#type_kind ⇒ String
Required. The top level type of this field. Can be any GoogleSQL data type (e.
g., "INT64", "DATE", "ARRAY").
Corresponds to the JSON property typeKind
9027 9028 9029 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9027 def type_kind @type_kind end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9034 9035 9036 9037 9038 9039 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9034 def update!(**args) @array_element_type = args[:array_element_type] if args.key?(:array_element_type) @range_element_type = args[:range_element_type] if args.key?(:range_element_type) @struct_type = args[:struct_type] if args.key?(:struct_type) @type_kind = args[:type_kind] if args.key?(:type_kind) end |