Class: Google::Apis::DatastreamV1::SqlServerTable
- Inherits:
-
Object
- Object
- Google::Apis::DatastreamV1::SqlServerTable
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datastream_v1/classes.rb,
lib/google/apis/datastream_v1/representations.rb,
lib/google/apis/datastream_v1/representations.rb
Overview
SQLServer table.
Instance Attribute Summary collapse
-
#columns ⇒ Array<Google::Apis::DatastreamV1::SqlServerColumn>
SQLServer columns in the schema.
-
#table ⇒ String
The table name.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SqlServerTable
constructor
A new instance of SqlServerTable.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SqlServerTable
Returns a new instance of SqlServerTable.
4901 4902 4903 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 4901 def initialize(**args) update!(**args) end |
Instance Attribute Details
#columns ⇒ Array<Google::Apis::DatastreamV1::SqlServerColumn>
SQLServer columns in the schema. When unspecified as part of include/exclude
objects, includes/excludes everything.
Corresponds to the JSON property columns
4894 4895 4896 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 4894 def columns @columns end |
#table ⇒ String
The table name.
Corresponds to the JSON property table
4899 4900 4901 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 4899 def table @table end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4906 4907 4908 4909 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 4906 def update!(**args) @columns = args[:columns] if args.key?(:columns) @table = args[:table] if args.key?(:table) end |