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