Class: Google::Apis::DatastreamV1alpha1::OracleSchema
- Inherits:
-
Object
- Object
- Google::Apis::DatastreamV1alpha1::OracleSchema
- 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 schema.
Instance Attribute Summary collapse
-
#oracle_tables ⇒ Array<Google::Apis::DatastreamV1alpha1::OracleTable>
Tables in the schema.
-
#schema_name ⇒ String
Schema name.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OracleSchema
constructor
A new instance of OracleSchema.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OracleSchema
Returns a new instance of OracleSchema.
1439 1440 1441 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1439 def initialize(**args) update!(**args) end |
Instance Attribute Details
#oracle_tables ⇒ Array<Google::Apis::DatastreamV1alpha1::OracleTable>
Tables in the schema.
Corresponds to the JSON property oracleTables
1432 1433 1434 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1432 def oracle_tables @oracle_tables end |
#schema_name ⇒ String
Schema name.
Corresponds to the JSON property schemaName
1437 1438 1439 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1437 def schema_name @schema_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1444 1445 1446 1447 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1444 def update!(**args) @oracle_tables = args[:oracle_tables] if args.key?(:oracle_tables) @schema_name = args[:schema_name] if args.key?(:schema_name) end |