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.



1704
1705
1706
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1704

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

Instance Attribute Details

#allowlistGoogle::Apis::DatastreamV1alpha1::OracleRdbms

Oracle database structure. Corresponds to the JSON property allowlist



1692
1693
1694
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1692

def allowlist
  @allowlist
end

#drop_large_objectsGoogle::Apis::DatastreamV1alpha1::DropLargeObjects

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



1697
1698
1699
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1697

def drop_large_objects
  @drop_large_objects
end

#rejectlistGoogle::Apis::DatastreamV1alpha1::OracleRdbms

Oracle database structure. Corresponds to the JSON property rejectlist



1702
1703
1704
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1702

def rejectlist
  @rejectlist
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1709
1710
1711
1712
1713
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1709

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