Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DiscoveryEventTableDetails

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dataplex_v1/classes.rb,
lib/google/apis/dataplex_v1/representations.rb,
lib/google/apis/dataplex_v1/representations.rb

Overview

Details about the published table.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1DiscoveryEventTableDetails

Returns a new instance of GoogleCloudDataplexV1DiscoveryEventTableDetails.



5939
5940
5941
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5939

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

Instance Attribute Details

#tableString

The fully-qualified resource name of the table resource. Corresponds to the JSON property table

Returns:

  • (String)


5932
5933
5934
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5932

def table
  @table
end

#typeString

The type of the table resource. Corresponds to the JSON property type

Returns:

  • (String)


5937
5938
5939
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5937

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5944
5945
5946
5947
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5944

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