Class: Google::Apis::DatastreamV1alpha1::OracleObjectIdentifier
- Inherits:
-
Object
- Object
- Google::Apis::DatastreamV1alpha1::OracleObjectIdentifier
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datastream_v1alpha1/classes.rb,
lib/google/apis/datastream_v1alpha1/representations.rb,
lib/google/apis/datastream_v1alpha1/representations.rb
Overview
Oracle data source object identifier.
Instance Attribute Summary collapse
-
#schema ⇒ String
The schema name.
-
#table ⇒ String
The table name.
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.
1334 1335 1336 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1334 def initialize(**args) update!(**args) end |
Instance Attribute Details
#schema ⇒ String
The schema name.
Corresponds to the JSON property schema
1327 1328 1329 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1327 def schema @schema end |
#table ⇒ String
The table name.
Corresponds to the JSON property table
1332 1333 1334 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1332 def table @table end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1339 1340 1341 1342 |
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1339 def update!(**args) @schema = args[:schema] if args.key?(:schema) @table = args[:table] if args.key?(:table) end |