class Google::Apis::DatastreamV1alpha1::SourceConfig

The configuration of the stream source.

Attributes

mysql_source_config[RW]

MySQL source configuration Corresponds to the JSON property ‘mysqlSourceConfig` @return [Google::Apis::DatastreamV1alpha1::MysqlSourceConfig]

oracle_source_config[RW]

Oracle data source configuration Corresponds to the JSON property ‘oracleSourceConfig` @return [Google::Apis::DatastreamV1alpha1::OracleSourceConfig]

source_connection_profile_name[RW]

Required. Source connection profile identifier. Corresponds to the JSON property ‘sourceConnectionProfileName` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/datastream_v1alpha1/classes.rb, line 1664
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/datastream_v1alpha1/classes.rb, line 1669
def update!(**args)
  @mysql_source_config = args[:mysql_source_config] if args.key?(:mysql_source_config)
  @oracle_source_config = args[:oracle_source_config] if args.key?(:oracle_source_config)
  @source_connection_profile_name = args[:source_connection_profile_name] if args.key?(:source_connection_profile_name)
end