Class: Google::Apis::DatastreamV1::MysqlColumn
- Inherits:
-
Object
- Object
- Google::Apis::DatastreamV1::MysqlColumn
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datastream_v1/classes.rb,
lib/google/apis/datastream_v1/representations.rb,
lib/google/apis/datastream_v1/representations.rb
Overview
MySQL Column.
Instance Attribute Summary collapse
-
#collation ⇒ String
Column collation.
-
#column ⇒ String
Column name.
-
#data_type ⇒ String
The MySQL data type.
-
#length ⇒ Fixnum
Column length.
-
#nullable ⇒ Boolean
(also: #nullable?)
Whether or not the column can accept a null value.
-
#ordinal_position ⇒ Fixnum
The ordinal position of the column in the table.
-
#primary_key ⇒ Boolean
(also: #primary_key?)
Whether or not the column represents a primary key.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MysqlColumn
constructor
A new instance of MysqlColumn.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MysqlColumn
Returns a new instance of MysqlColumn.
986 987 988 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 986 def initialize(**args) update!(**args) end |
Instance Attribute Details
#collation ⇒ String
Column collation.
Corresponds to the JSON property collation
951 952 953 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 951 def collation @collation end |
#column ⇒ String
Column name.
Corresponds to the JSON property column
956 957 958 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 956 def column @column end |
#data_type ⇒ String
The MySQL data type. Full data types list can be found here: https://dev.mysql.
com/doc/refman/8.0/en/data-types.html
Corresponds to the JSON property dataType
962 963 964 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 962 def data_type @data_type end |
#length ⇒ Fixnum
Column length.
Corresponds to the JSON property length
967 968 969 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 967 def length @length end |
#nullable ⇒ Boolean Also known as: nullable?
Whether or not the column can accept a null value.
Corresponds to the JSON property nullable
972 973 974 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 972 def nullable @nullable end |
#ordinal_position ⇒ Fixnum
The ordinal position of the column in the table.
Corresponds to the JSON property ordinalPosition
978 979 980 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 978 def ordinal_position @ordinal_position end |
#primary_key ⇒ Boolean Also known as: primary_key?
Whether or not the column represents a primary key.
Corresponds to the JSON property primaryKey
983 984 985 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 983 def primary_key @primary_key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
991 992 993 994 995 996 997 998 999 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 991 def update!(**args) @collation = args[:collation] if args.key?(:collation) @column = args[:column] if args.key?(:column) @data_type = args[:data_type] if args.key?(:data_type) @length = args[:length] if args.key?(:length) @nullable = args[:nullable] if args.key?(:nullable) @ordinal_position = args[:ordinal_position] if args.key?(:ordinal_position) @primary_key = args[:primary_key] if args.key?(:primary_key) end |