class Google::Apis::DatastreamV1alpha1::OracleObjectIdentifier

Oracle data source object identifier.

Attributes

schema[RW]

Required. The schema name. Corresponds to the JSON property ‘schema` @return [String]

table[RW]

Required. The table name. Corresponds to the JSON property ‘table` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/datastream_v1alpha1/classes.rb, line 1346
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# 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