Class: Google::Apis::DatastreamV1::SqlServerObjectIdentifier
- Inherits:
-
Object
- Object
- Google::Apis::DatastreamV1::SqlServerObjectIdentifier
- 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 data source object identifier.
Instance Attribute Summary collapse
-
#schema ⇒ String
Required.
-
#table ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SqlServerObjectIdentifier
constructor
A new instance of SqlServerObjectIdentifier.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SqlServerObjectIdentifier
Returns a new instance of SqlServerObjectIdentifier.
2419 2420 2421 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 2419 def initialize(**args) update!(**args) end |
Instance Attribute Details
#schema ⇒ String
Required. The schema name.
Corresponds to the JSON property schema
2412 2413 2414 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 2412 def schema @schema end |
#table ⇒ String
Required. The table name.
Corresponds to the JSON property table
2417 2418 2419 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 2417 def table @table end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2424 2425 2426 2427 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 2424 def update!(**args) @schema = args[:schema] if args.key?(:schema) @table = args[:table] if args.key?(:table) end |