Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1EntryLinkTypeEvent

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

Payload associated with EntryLinkType related log events.

Instance Attribute Summary collapse

Instance Method Summary collapse

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_idString

Name of the resource. Corresponds to the JSON property entryLinkTypeId

Returns:

  • (String)


6724
6725
6726
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6724

def entry_link_type_id
  @entry_link_type_id
end

#event_typeString

The type of the event. Corresponds to the JSON property eventType

Returns:

  • (String)


6729
6730
6731
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6729

def event_type
  @event_type
end

#messageString

The log message. Corresponds to the JSON property message

Returns:

  • (String)


6734
6735
6736
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6734

def message
  @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