class Google::Apis::DatastreamV1::SourceConfig

The configuration of the stream source.

Attributes

mysql_source_config[RW]

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

oracle_source_config[RW]

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

source_connection_profile[RW]

Required. Source connection profile resoource. Format: ‘projects/`project`/ locations/`location`/connectionProfiles/`name“ Corresponds to the JSON property `sourceConnectionProfile` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/datastream_v1/classes.rb, line 1630
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_v1/classes.rb, line 1635
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 = args[:source_connection_profile] if args.key?(:source_connection_profile)
end