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.
-
#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.
1452 1453 1454 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1452 def initialize(**args) update!(**args) end |
Instance Attribute Details
#allowlist ⇒ Google::Apis::DatastreamV1alpha1::OracleRdbms
Oracle database structure.
Corresponds to the JSON property allowlist
1445 1446 1447 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1445 def allowlist @allowlist end |
#rejectlist ⇒ Google::Apis::DatastreamV1alpha1::OracleRdbms
Oracle database structure.
Corresponds to the JSON property rejectlist
1450 1451 1452 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1450 def rejectlist @rejectlist end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1457 1458 1459 1460 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1457 def update!(**args) @allowlist = args[:allowlist] if args.key?(:allowlist) @rejectlist = args[:rejectlist] if args.key?(:rejectlist) end |