Class: Google::Apis::DatastreamV1alpha1::OracleObjectIdentifier

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ OracleObjectIdentifier

Returns a new instance of OracleObjectIdentifier.



1346
1347
1348
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1346

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#schemaString

Required. The schema name. Corresponds to the JSON property schema

Returns:

  • (String)


1339
1340
1341
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1339

def schema
  @schema
end

#tableString

Required. The table name. Corresponds to the JSON property table

Returns:

  • (String)


1344
1345
1346
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1344

def table
  @table
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1351
1352
1353
1354
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 1351

def update!(**args)
  @schema = args[:schema] if args.key?(:schema)
  @table = args[:table] if args.key?(:table)
end