Class: Google::Apis::DatastreamV1::SqlServerSourceConfig
- Inherits:
-
Object
- Object
- Google::Apis::DatastreamV1::SqlServerSourceConfig
- 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
SQLServer data source configuration
Instance Attribute Summary collapse
-
#exclude_objects ⇒ Google::Apis::DatastreamV1::SqlServerRdbms
SQLServer database structure.
-
#include_objects ⇒ Google::Apis::DatastreamV1::SqlServerRdbms
SQLServer database structure.
-
#max_concurrent_backfill_tasks ⇒ Fixnum
Max concurrent backfill tasks.
-
#max_concurrent_cdc_tasks ⇒ Fixnum
Max concurrent CDC tasks.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SqlServerSourceConfig
constructor
A new instance of SqlServerSourceConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SqlServerSourceConfig
Returns a new instance of SqlServerSourceConfig.
2583 2584 2585 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 2583 def initialize(**args) update!(**args) end |
Instance Attribute Details
#exclude_objects ⇒ Google::Apis::DatastreamV1::SqlServerRdbms
SQLServer database structure.
Corresponds to the JSON property excludeObjects
2566 2567 2568 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 2566 def exclude_objects @exclude_objects end |
#include_objects ⇒ Google::Apis::DatastreamV1::SqlServerRdbms
SQLServer database structure.
Corresponds to the JSON property includeObjects
2571 2572 2573 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 2571 def include_objects @include_objects end |
#max_concurrent_backfill_tasks ⇒ Fixnum
Max concurrent backfill tasks.
Corresponds to the JSON property maxConcurrentBackfillTasks
2576 2577 2578 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 2576 def max_concurrent_backfill_tasks @max_concurrent_backfill_tasks end |
#max_concurrent_cdc_tasks ⇒ Fixnum
Max concurrent CDC tasks.
Corresponds to the JSON property maxConcurrentCdcTasks
2581 2582 2583 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 2581 def max_concurrent_cdc_tasks @max_concurrent_cdc_tasks end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2588 2589 2590 2591 2592 2593 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 2588 def update!(**args) @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) end |