Class: Google::Apis::DatastreamV1::OracleObjectIdentifier
- Inherits:
-
Object
- Object
- Google::Apis::DatastreamV1::OracleObjectIdentifier
- 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
Oracle data source object identifier.
Instance Attribute Summary collapse
-
#schema ⇒ String
Required.
-
#table ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OracleObjectIdentifier
constructor
A new instance of OracleObjectIdentifier.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OracleObjectIdentifier
Returns a new instance of OracleObjectIdentifier.
1545 1546 1547 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 1545 def initialize(**args) update!(**args) end |
Instance Attribute Details
#schema ⇒ String
Required. The schema name.
Corresponds to the JSON property schema
1538 1539 1540 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 1538 def schema @schema end |
#table ⇒ String
Required. The table name.
Corresponds to the JSON property table
1543 1544 1545 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 1543 def table @table end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1550 1551 1552 1553 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 1550 def update!(**args) @schema = args[:schema] if args.key?(:schema) @table = args[:table] if args.key?(:table) end |