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.
1334 1335 1336 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1334 def initialize(**args) update!(**args) end |
Instance Attribute Details
#allowlist ⇒ Google::Apis::DatastreamV1alpha1::OracleRdbms
Oracle database structure.
Corresponds to the JSON property allowlist
1327 1328 1329 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1327 def allowlist @allowlist end |
#rejectlist ⇒ Google::Apis::DatastreamV1alpha1::OracleRdbms
Oracle database structure.
Corresponds to the JSON property rejectlist
1332 1333 1334 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1332 def rejectlist @rejectlist end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1339 1340 1341 1342 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1339 def update!(**args) @allowlist = args[:allowlist] if args.key?(:allowlist) @rejectlist = args[:rejectlist] if args.key?(:rejectlist) end |