class Google::Apis::DatastreamV1::OracleColumn
Oracle Column.
Attributes
Column name. Corresponds to the JSON property ‘column` @return [String]
The Oracle data type. Corresponds to the JSON property ‘dataType` @return [String]
Column encoding. Corresponds to the JSON property ‘encoding` @return [String]
Column length. Corresponds to the JSON property ‘length` @return [Fixnum]
Whether or not the column can accept a null value. Corresponds to the JSON property ‘nullable` @return [Boolean]
Whether or not the column can accept a null value. Corresponds to the JSON property ‘nullable` @return [Boolean]
The ordinal position of the column in the table. Corresponds to the JSON property ‘ordinalPosition` @return [Fixnum]
Column precision. Corresponds to the JSON property ‘precision` @return [Fixnum]
Whether or not the column represents a primary key. Corresponds to the JSON property ‘primaryKey` @return [Boolean]
Whether or not the column represents a primary key. Corresponds to the JSON property ‘primaryKey` @return [Boolean]
Column scale. Corresponds to the JSON property ‘scale` @return [Fixnum]
Public Class Methods
# File lib/google/apis/datastream_v1/classes.rb, line 1278 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/datastream_v1/classes.rb, line 1283 def update!(**args) @column = args[:column] if args.key?(:column) @data_type = args[:data_type] if args.key?(:data_type) @encoding = args[:encoding] if args.key?(:encoding) @length = args[:length] if args.key?(:length) @nullable = args[:nullable] if args.key?(:nullable) @ordinal_position = args[:ordinal_position] if args.key?(:ordinal_position) @precision = args[:precision] if args.key?(:precision) @primary_key = args[:primary_key] if args.key?(:primary_key) @scale = args[:scale] if args.key?(:scale) end