Class: Google::Apis::DatastreamV1::OracleTable
- Inherits:
-
Object
- Object
- Google::Apis::DatastreamV1::OracleTable
- 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
Oracle table.
Instance Attribute Summary collapse
-
#oracle_columns ⇒ Array<Google::Apis::DatastreamV1::OracleColumn>
Oracle columns in the schema.
-
#table ⇒ String
Table name.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OracleTable
constructor
A new instance of OracleTable.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OracleTable
Returns a new instance of OracleTable.
1834 1835 1836 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 1834 def initialize(**args) update!(**args) end |
Instance Attribute Details
#oracle_columns ⇒ Array<Google::Apis::DatastreamV1::OracleColumn>
Oracle columns in the schema. When unspecified as part of include/exclude
objects, includes/excludes everything.
Corresponds to the JSON property oracleColumns
1827 1828 1829 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 1827 def oracle_columns @oracle_columns end |
#table ⇒ String
Table name.
Corresponds to the JSON property table
1832 1833 1834 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 1832 def table @table end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1839 1840 1841 1842 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 1839 def update!(**args) @oracle_columns = args[:oracle_columns] if args.key?(:oracle_columns) @table = args[:table] if args.key?(:table) end |