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.
4082 4083 4084 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4082 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
4075 4076 4077 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4075 def table @table end |
#type ⇒ String
The type of the table resource.
Corresponds to the JSON property type
4080 4081 4082 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4080 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4087 4088 4089 4090 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4087 def update!(**args) @table = args[:table] if args.key?(:table) @type = args[:type] if args.key?(:type) end |