Class: Google::Apis::DatastreamV1::OracleSourceConfig

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ OracleSourceConfig

Returns a new instance of OracleSourceConfig.



2745
2746
2747
# File 'lib/google/apis/datastream_v1/classes.rb', line 2745

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#binary_log_parserGoogle::Apis::DatastreamV1::BinaryLogParser

Configuration to use Binary Log Parser CDC technique. Corresponds to the JSON property binaryLogParser



2706
2707
2708
# File 'lib/google/apis/datastream_v1/classes.rb', line 2706

def binary_log_parser
  @binary_log_parser
end

#drop_large_objectsGoogle::Apis::DatastreamV1::DropLargeObjects

Configuration to drop large object values. Corresponds to the JSON property dropLargeObjects



2711
2712
2713
# File 'lib/google/apis/datastream_v1/classes.rb', line 2711

def drop_large_objects
  @drop_large_objects
end

#exclude_objectsGoogle::Apis::DatastreamV1::OracleRdbms

Oracle database structure. Corresponds to the JSON property excludeObjects



2716
2717
2718
# File 'lib/google/apis/datastream_v1/classes.rb', line 2716

def exclude_objects
  @exclude_objects
end

#include_objectsGoogle::Apis::DatastreamV1::OracleRdbms

Oracle database structure. Corresponds to the JSON property includeObjects



2721
2722
2723
# File 'lib/google/apis/datastream_v1/classes.rb', line 2721

def include_objects
  @include_objects
end

#log_minerGoogle::Apis::DatastreamV1::LogMiner

Configuration to use LogMiner CDC method. Corresponds to the JSON property logMiner



2726
2727
2728
# File 'lib/google/apis/datastream_v1/classes.rb', line 2726

def log_miner
  @log_miner
end

#max_concurrent_backfill_tasksFixnum

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

Returns:

  • (Fixnum)


2732
2733
2734
# File 'lib/google/apis/datastream_v1/classes.rb', line 2732

def max_concurrent_backfill_tasks
  @max_concurrent_backfill_tasks
end

#max_concurrent_cdc_tasksFixnum

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

Returns:

  • (Fixnum)


2738
2739
2740
# File 'lib/google/apis/datastream_v1/classes.rb', line 2738

def max_concurrent_cdc_tasks
  @max_concurrent_cdc_tasks
end

#stream_large_objectsGoogle::Apis::DatastreamV1::StreamLargeObjects

Configuration to stream large object values. Corresponds to the JSON property streamLargeObjects



2743
2744
2745
# File 'lib/google/apis/datastream_v1/classes.rb', line 2743

def stream_large_objects
  @stream_large_objects
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
# File 'lib/google/apis/datastream_v1/classes.rb', line 2750

def update!(**args)
  @binary_log_parser = args[:binary_log_parser] if args.key?(:binary_log_parser)
  @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)
  @log_miner = args[:log_miner] if args.key?(:log_miner)
  @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