class Google::Apis::DatastreamV1::MysqlTable
MySQL table.
Attributes
mysql_columns[RW]
MySQL columns in the database. When unspecified as part of include/exclude objects, includes/excludes everything. Corresponds to the JSON property ‘mysqlColumns` @return [Array<Google::Apis::DatastreamV1::MysqlColumn>]
table[RW]
Table name. Corresponds to the JSON property ‘table` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/datastream_v1/classes.rb, line 1089 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 1094 def update!(**args) @mysql_columns = args[:mysql_columns] if args.key?(:mysql_columns) @table = args[:table] if args.key?(:table) end