Class: Google::Apis::DatastreamV1::OracleSourceConfig
- Inherits:
-
Object
- Object
- Google::Apis::DatastreamV1::OracleSourceConfig
- 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 data source configuration
Instance Attribute Summary collapse
-
#drop_large_objects ⇒ Google::Apis::DatastreamV1::DropLargeObjects
Configuration to drop large object values.
-
#exclude_objects ⇒ Google::Apis::DatastreamV1::OracleRdbms
Oracle database structure.
-
#include_objects ⇒ Google::Apis::DatastreamV1::OracleRdbms
Oracle database structure.
-
#max_concurrent_backfill_tasks ⇒ Fixnum
Maximum number of concurrent backfill tasks.
-
#max_concurrent_cdc_tasks ⇒ Fixnum
Maximum number of concurrent CDC tasks.
-
#stream_large_objects ⇒ Google::Apis::DatastreamV1::StreamLargeObjects
Configuration to stream large object values.
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.
1722 1723 1724 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 1722 def initialize(**args) update!(**args) end |
Instance Attribute Details
#drop_large_objects ⇒ Google::Apis::DatastreamV1::DropLargeObjects
Configuration to drop large object values.
Corresponds to the JSON property dropLargeObjects
1693 1694 1695 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 1693 def drop_large_objects @drop_large_objects end |
#exclude_objects ⇒ Google::Apis::DatastreamV1::OracleRdbms
Oracle database structure.
Corresponds to the JSON property excludeObjects
1698 1699 1700 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 1698 def exclude_objects @exclude_objects end |
#include_objects ⇒ Google::Apis::DatastreamV1::OracleRdbms
Oracle database structure.
Corresponds to the JSON property includeObjects
1703 1704 1705 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 1703 def include_objects @include_objects end |
#max_concurrent_backfill_tasks ⇒ Fixnum
Maximum number of concurrent backfill tasks. The number should be non-negative.
If not set (or set to 0), the system's default value is used.
Corresponds to the JSON property maxConcurrentBackfillTasks
1709 1710 1711 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 1709 def max_concurrent_backfill_tasks @max_concurrent_backfill_tasks end |
#max_concurrent_cdc_tasks ⇒ Fixnum
Maximum number of concurrent CDC tasks. The number should be non-negative. If
not set (or set to 0), the system's default value is used.
Corresponds to the JSON property maxConcurrentCdcTasks
1715 1716 1717 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 1715 def max_concurrent_cdc_tasks @max_concurrent_cdc_tasks end |
#stream_large_objects ⇒ Google::Apis::DatastreamV1::StreamLargeObjects
Configuration to stream large object values.
Corresponds to the JSON property streamLargeObjects
1720 1721 1722 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 1720 def stream_large_objects @stream_large_objects end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1727 1728 1729 1730 1731 1732 1733 1734 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 1727 def update!(**args) @drop_large_objects = args[:drop_large_objects] if args.key?(:drop_large_objects) @exclude_objects = args[:exclude_objects] if args.key?(:exclude_objects) @include_objects = args[:include_objects] if args.key?(:include_objects) @max_concurrent_backfill_tasks = args[:max_concurrent_backfill_tasks] if args.key?(:max_concurrent_backfill_tasks) @max_concurrent_cdc_tasks = args[:max_concurrent_cdc_tasks] if args.key?(:max_concurrent_cdc_tasks) @stream_large_objects = args[:stream_large_objects] if args.key?(:stream_large_objects) end |