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.



1434
1435
1436
# File 'lib/google/apis/datastream_v1/classes.rb', line 1434

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

Instance Attribute Details

#drop_large_objectsGoogle::Apis::DatastreamV1::OracleDropLargeObjects

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



1422
1423
1424
# File 'lib/google/apis/datastream_v1/classes.rb', line 1422

def drop_large_objects
  @drop_large_objects
end

#exclude_objectsGoogle::Apis::DatastreamV1::OracleRdbms

Oracle database structure. Corresponds to the JSON property excludeObjects



1427
1428
1429
# File 'lib/google/apis/datastream_v1/classes.rb', line 1427

def exclude_objects
  @exclude_objects
end

#include_objectsGoogle::Apis::DatastreamV1::OracleRdbms

Oracle database structure. Corresponds to the JSON property includeObjects



1432
1433
1434
# File 'lib/google/apis/datastream_v1/classes.rb', line 1432

def include_objects
  @include_objects
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1439
1440
1441
1442
1443
# File 'lib/google/apis/datastream_v1/classes.rb', line 1439

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)
end