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.
1360 1361 1362 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1360 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
1353 1354 1355 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1353 def oracle_columns @oracle_columns end |
#table_name ⇒ String
Table name.
Corresponds to the JSON property tableName
1358 1359 1360 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1358 def table_name @table_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1365 1366 1367 1368 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1365 def update!(**args) @oracle_columns = args[:oracle_columns] if args.key?(:oracle_columns) @table_name = args[:table_name] if args.key?(:table_name) end |