class Google::Apis::DatastreamV1alpha1::MysqlObjectIdentifier
Mysql data source object identifier.
Attributes
database[RW]
Required. The database name. Corresponds to the JSON property ‘database` @return [String]
table[RW]
Required. The table name. Corresponds to the JSON property ‘table` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/datastream_v1alpha1/classes.rb, line 942 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 947 def update!(**args) @database = args[:database] if args.key?(:database) @table = args[:table] if args.key?(:table) end