Class: Google::Apis::DatastreamV1::OracleSchema
- Inherits:
-
Object
- Object
- Google::Apis::DatastreamV1::OracleSchema
- 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 schema.
Instance Attribute Summary collapse
-
#oracle_tables ⇒ Array<Google::Apis::DatastreamV1::OracleTable>
Tables in the schema.
-
#schema ⇒ String
The 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.
2919 2920 2921 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 2919 def initialize(**args) update!(**args) end |
Instance Attribute Details
#oracle_tables ⇒ Array<Google::Apis::DatastreamV1::OracleTable>
Tables in the schema.
Corresponds to the JSON property oracleTables
2912 2913 2914 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 2912 def oracle_tables @oracle_tables end |
#schema ⇒ String
The schema name.
Corresponds to the JSON property schema
2917 2918 2919 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 2917 def schema @schema end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2924 2925 2926 2927 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 2924 def update!(**args) @oracle_tables = args[:oracle_tables] if args.key?(:oracle_tables) @schema = args[:schema] if args.key?(:schema) end |