class Google::Apis::DatastreamV1::DiscoverConnectionProfileResponse

Response from a discover request.

Attributes

mysql_rdbms[RW]

MySQL database structure Corresponds to the JSON property ‘mysqlRdbms` @return [Google::Apis::DatastreamV1::MysqlRdbms]

oracle_rdbms[RW]

Oracle database structure. Corresponds to the JSON property ‘oracleRdbms` @return [Google::Apis::DatastreamV1::OracleRdbms]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/datastream_v1/classes.rb, line 305
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 310
def update!(**args)
  @mysql_rdbms = args[:mysql_rdbms] if args.key?(:mysql_rdbms)
  @oracle_rdbms = args[:oracle_rdbms] if args.key?(:oracle_rdbms)
end