class Google::Apis::DatastreamV1::MysqlDatabase

MySQL database.

Attributes

database[RW]

Database name. Corresponds to the JSON property ‘database` @return [String]

mysql_tables[RW]

Tables in the database. Corresponds to the JSON property ‘mysqlTables` @return [Array<Google::Apis::DatastreamV1::MysqlTable>]

Public Class Methods

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