class Google::Apis::DatastreamV1alpha1::OracleTable
Oracle table.
Attributes
oracle_columns[RW]
Oracle columns in the schema. When unspecified as part of inclue/exclude lists, includes/excludes everything. Corresponds to the JSON property ‘oracleColumns` @return [Array<Google::Apis::DatastreamV1alpha1::OracleColumn>]
table_name[RW]
Table name. Corresponds to the JSON property ‘tableName` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/datastream_v1alpha1/classes.rb, line 1496 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_v1alpha1/classes.rb, line 1501 def update!(**args) @oracle_columns = args[:oracle_columns] if args.key?(:oracle_columns) @table_name = args[:table_name] if args.key?(:table_name) end