class Google::Apis::DatastreamV1alpha1::OracleSchema

Oracle schema.

Attributes

oracle_tables[RW]

Tables in the schema. Corresponds to the JSON property ‘oracleTables` @return [Array<Google::Apis::DatastreamV1alpha1::OracleTable>]

schema_name[RW]

Schema name. Corresponds to the JSON property ‘schemaName` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/datastream_v1alpha1/classes.rb, line 1439
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 1444
def update!(**args)
  @oracle_tables = args[:oracle_tables] if args.key?(:oracle_tables)
  @schema_name = args[:schema_name] if args.key?(:schema_name)
end