Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1EntryLinkTypeEvent
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1EntryLinkTypeEvent
- 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
Payload associated with EntryLinkType related log events.
Instance Attribute Summary collapse
-
#entry_link_type_id ⇒ String
Name of the resource.
-
#event_type ⇒ String
The type of the event.
-
#message ⇒ String
The log message.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1EntryLinkTypeEvent
constructor
A new instance of GoogleCloudDataplexV1EntryLinkTypeEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1EntryLinkTypeEvent
Returns a new instance of GoogleCloudDataplexV1EntryLinkTypeEvent.
6736 6737 6738 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6736 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entry_link_type_id ⇒ String
Name of the resource.
Corresponds to the JSON property entryLinkTypeId
6724 6725 6726 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6724 def entry_link_type_id @entry_link_type_id end |
#event_type ⇒ String
The type of the event.
Corresponds to the JSON property eventType
6729 6730 6731 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6729 def event_type @event_type end |
#message ⇒ String
The log message.
Corresponds to the JSON property message
6734 6735 6736 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6734 def @message end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6741 6742 6743 6744 6745 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6741 def update!(**args) @entry_link_type_id = args[:entry_link_type_id] if args.key?(:entry_link_type_id) @event_type = args[:event_type] if args.key?(:event_type) @message = args[:message] if args.key?(:message) end |