class Google::Apis::DatastreamV1::SourceObjectIdentifier

Represents an identifier of an object in the data source.

Attributes

mysql_identifier[RW]

Mysql data source object identifier. Corresponds to the JSON property ‘mysqlIdentifier` @return [Google::Apis::DatastreamV1::MysqlObjectIdentifier]

oracle_identifier[RW]

Oracle data source object identifier. Corresponds to the JSON property ‘oracleIdentifier` @return [Google::Apis::DatastreamV1::OracleObjectIdentifier]

Public Class Methods

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