class Google::Apis::DatastreamV1alpha1::MysqlTable

MySQL table.

Attributes

mysql_columns[RW]

MySQL columns in the database. When unspecified as part of include/exclude lists, includes/excludes everything. Corresponds to the JSON property ‘mysqlColumns` @return [Array<Google::Apis::DatastreamV1alpha1::MysqlColumn>]

table_name[RW]

Table name. Corresponds to the JSON property ‘tableName` @return [String]

Public Class Methods

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