Class: Google::Apis::DatastreamV1alpha1::OracleSourceConfig
- Inherits:
-
Object
- Object
- Google::Apis::DatastreamV1alpha1::OracleSourceConfig
- 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 data source configuration
Instance Attribute Summary collapse
-
#allowlist ⇒ Google::Apis::DatastreamV1alpha1::OracleRdbms
Oracle database structure.
-
#drop_large_objects ⇒ Google::Apis::DatastreamV1alpha1::DropLargeObjects
Configuration to drop large object values.
-
#rejectlist ⇒ Google::Apis::DatastreamV1alpha1::OracleRdbms
Oracle database structure.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OracleSourceConfig
constructor
A new instance of OracleSourceConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OracleSourceConfig
Returns a new instance of OracleSourceConfig.
1478 1479 1480 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1478 def initialize(**args) update!(**args) end |
Instance Attribute Details
#allowlist ⇒ Google::Apis::DatastreamV1alpha1::OracleRdbms
Oracle database structure.
Corresponds to the JSON property allowlist
1466 1467 1468 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1466 def allowlist @allowlist end |
#drop_large_objects ⇒ Google::Apis::DatastreamV1alpha1::DropLargeObjects
Configuration to drop large object values.
Corresponds to the JSON property dropLargeObjects
1471 1472 1473 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1471 def drop_large_objects @drop_large_objects end |
#rejectlist ⇒ Google::Apis::DatastreamV1alpha1::OracleRdbms
Oracle database structure.
Corresponds to the JSON property rejectlist
1476 1477 1478 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1476 def rejectlist @rejectlist end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1483 1484 1485 1486 1487 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1483 def update!(**args) @allowlist = args[:allowlist] if args.key?(:allowlist) @drop_large_objects = args[:drop_large_objects] if args.key?(:drop_large_objects) @rejectlist = args[:rejectlist] if args.key?(:rejectlist) end |