Class: Google::Apis::DatastreamV1alpha1::OracleSourceConfig

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ OracleSourceConfig

Returns a new instance of OracleSourceConfig.



1469
1470
1471
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1469

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

Instance Attribute Details

#allowlistGoogle::Apis::DatastreamV1alpha1::OracleRdbms

Oracle database structure. Corresponds to the JSON property allowlist



1457
1458
1459
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1457

def allowlist
  @allowlist
end

#drop_large_objectsGoogle::Apis::DatastreamV1alpha1::DropLargeObjects

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



1462
1463
1464
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1462

def drop_large_objects
  @drop_large_objects
end

#rejectlistGoogle::Apis::DatastreamV1alpha1::OracleRdbms

Oracle database structure. Corresponds to the JSON property rejectlist



1467
1468
1469
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1467

def rejectlist
  @rejectlist
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1474
1475
1476
1477
1478
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1474

def update!(**args)
  @allowlist = args[:allowlist] if args.key?(:allowlist)
  @drop_large_objects = args[:drop_large_objects] if args.key?(:drop_large_objects)
  @rejectlist = args[:rejectlist] if args.key?(:rejectlist)
end