class Google::Apis::DatastreamV1::OracleColumn

Oracle Column.

Attributes

column[RW]

Column name. Corresponds to the JSON property ‘column` @return [String]

data_type[RW]

The Oracle data type. Corresponds to the JSON property ‘dataType` @return [String]

encoding[RW]

Column encoding. Corresponds to the JSON property ‘encoding` @return [String]

length[RW]

Column length. Corresponds to the JSON property ‘length` @return [Fixnum]

nullable[RW]

Whether or not the column can accept a null value. Corresponds to the JSON property ‘nullable` @return [Boolean]

nullable?[RW]

Whether or not the column can accept a null value. Corresponds to the JSON property ‘nullable` @return [Boolean]

ordinal_position[RW]

The ordinal position of the column in the table. Corresponds to the JSON property ‘ordinalPosition` @return [Fixnum]

precision[RW]

Column precision. Corresponds to the JSON property ‘precision` @return [Fixnum]

primary_key[RW]

Whether or not the column represents a primary key. Corresponds to the JSON property ‘primaryKey` @return [Boolean]

primary_key?[RW]

Whether or not the column represents a primary key. Corresponds to the JSON property ‘primaryKey` @return [Boolean]

scale[RW]

Column scale. Corresponds to the JSON property ‘scale` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/datastream_v1/classes.rb, line 1278
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

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