Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DiscoveryEventTableDetails
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1DiscoveryEventTableDetails
- 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
-
#table ⇒ String
The fully-qualified resource name of the table resource.
-
#type ⇒ String
The type of the table resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1DiscoveryEventTableDetails
constructor
A new instance of GoogleCloudDataplexV1DiscoveryEventTableDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1DiscoveryEventTableDetails
Returns a new instance of GoogleCloudDataplexV1DiscoveryEventTableDetails.
6148 6149 6150 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6148 def initialize(**args) update!(**args) end |
Instance Attribute Details
#table ⇒ String
The fully-qualified resource name of the table resource.
Corresponds to the JSON property table
6141 6142 6143 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6141 def table @table end |
#type ⇒ String
The type of the table resource.
Corresponds to the JSON property type
6146 6147 6148 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6146 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6153 6154 6155 6156 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6153 def update!(**args) @table = args[:table] if args.key?(:table) @type = args[:type] if args.key?(:type) end |