Class: Google::Apis::DatastreamV1alpha1::OracleTable
- Inherits:
-
Object
- Object
- Google::Apis::DatastreamV1alpha1::OracleTable
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datastream_v1alpha1/classes.rb,
lib/google/apis/datastream_v1alpha1/representations.rb,
lib/google/apis/datastream_v1alpha1/representations.rb
Overview
Oracle table.
Instance Attribute Summary collapse
-
#oracle_columns ⇒ Array<Google::Apis::DatastreamV1alpha1::OracleColumn>
Oracle columns in the schema.
-
#table_name ⇒ 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.
1478 1479 1480 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1478 def initialize(**args) update!(**args) end |
Instance Attribute Details
#oracle_columns ⇒ Array<Google::Apis::DatastreamV1alpha1::OracleColumn>
Oracle columns in the schema. When unspecified as part of inclue/exclude lists,
includes/excludes everything.
Corresponds to the JSON property oracleColumns
1471 1472 1473 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1471 def oracle_columns @oracle_columns end |
#table_name ⇒ String
Table name.
Corresponds to the JSON property tableName
1476 1477 1478 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1476 def table_name @table_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1483 1484 1485 1486 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1483 def update!(**args) @oracle_columns = args[:oracle_columns] if args.key?(:oracle_columns) @table_name = args[:table_name] if args.key?(:table_name) end |