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
The 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.
3065 3066 3067 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 3065 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
3058 3059 3060 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 3058 def oracle_columns @oracle_columns end |
#table ⇒ String
The table name.
Corresponds to the JSON property table
3063 3064 3065 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 3063 def table @table end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3070 3071 3072 3073 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 3070 def update!(**args) @oracle_columns = args[:oracle_columns] if args.key?(:oracle_columns) @table = args[:table] if args.key?(:table) end |