Class: Google::Apis::DatastreamV1::SqlServerObjectIdentifier

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

SQLServer data source object identifier.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SqlServerObjectIdentifier

Returns a new instance of SqlServerObjectIdentifier.



2715
2716
2717
# File 'lib/google/apis/datastream_v1/classes.rb', line 2715

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

Instance Attribute Details

#schemaString

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

Returns:

  • (String)


2708
2709
2710
# File 'lib/google/apis/datastream_v1/classes.rb', line 2708

def schema
  @schema
end

#tableString

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

Returns:

  • (String)


2713
2714
2715
# File 'lib/google/apis/datastream_v1/classes.rb', line 2713

def table
  @table
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2720
2721
2722
2723
# File 'lib/google/apis/datastream_v1/classes.rb', line 2720

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