class Google::Apis::DatastreamV1alpha1::MysqlDatabase
MySQL database.
Attributes
database_name[RW]
Database name. Corresponds to the JSON property ‘databaseName` @return [String]
mysql_tables[RW]
Tables in the database. Corresponds to the JSON property ‘mysqlTables` @return [Array<Google::Apis::DatastreamV1alpha1::MysqlTable>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/datastream_v1alpha1/classes.rb, line 917 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 922 def update!(**args) @database_name = args[:database_name] if args.key?(:database_name) @mysql_tables = args[:mysql_tables] if args.key?(:mysql_tables) end