Class: Google::Apis::BigqueryV2::TableFieldSchema
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::TableFieldSchema
- 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
Instance Attribute Summary collapse
-
#description ⇒ String
[Optional] The field description.
-
#fields ⇒ Array<Google::Apis::BigqueryV2::TableFieldSchema>
[Optional] Describes the nested schema fields if the type property is set to RECORD.
-
#mode ⇒ String
[Optional] The field mode.
-
#name ⇒ String
[Required] The field name.
-
#type ⇒ String
[Required] The field data type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TableFieldSchema
constructor
A new instance of TableFieldSchema.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TableFieldSchema
Returns a new instance of TableFieldSchema
3609 3610 3611 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3609 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
[Optional] The field description. The maximum length is 1,024 characters.
Corresponds to the JSON property description
3580 3581 3582 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3580 def description @description end |
#fields ⇒ Array<Google::Apis::BigqueryV2::TableFieldSchema>
[Optional] Describes the nested schema fields if the type property is set to
RECORD.
Corresponds to the JSON property fields
3586 3587 3588 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3586 def fields @fields end |
#mode ⇒ String
[Optional] The field mode. Possible values include NULLABLE, REQUIRED and
REPEATED. The default value is NULLABLE.
Corresponds to the JSON property mode
3592 3593 3594 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3592 def mode @mode end |
#name ⇒ String
[Required] The field name. The name must contain only letters (a-z, A-Z),
numbers (0-9), or underscores (_), and must start with a letter or underscore.
The maximum length is 128 characters.
Corresponds to the JSON property name
3599 3600 3601 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3599 def name @name end |
#type ⇒ String
[Required] The field data type. Possible values include STRING, BYTES, INTEGER,
INT64 (same as INTEGER), FLOAT, FLOAT64 (same as FLOAT), BOOLEAN, BOOL (same
as BOOLEAN), TIMESTAMP, DATE, TIME, DATETIME, RECORD (where RECORD indicates
that the field contains a nested schema) or STRUCT (same as RECORD).
Corresponds to the JSON property type
3607 3608 3609 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3607 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3614 3615 3616 3617 3618 3619 3620 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3614 def update!(**args) @description = args[:description] if args.key?(:description) @fields = args[:fields] if args.key?(:fields) @mode = args[:mode] if args.key?(:mode) @name = args[:name] if args.key?(:name) @type = args[:type] if args.key?(:type) end |