Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1GovernanceEventEntity
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DataplexV1::GoogleCloudDataplexV1GovernanceEventEntity
 
 
- 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
Information about Entity resource that the log event is associated with.
Instance Attribute Summary collapse
- 
  
    
      #entity  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Entity resource the log event is associated with.
 - 
  
    
      #entity_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Type of entity.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDataplexV1GovernanceEventEntity 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudDataplexV1GovernanceEventEntity.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1GovernanceEventEntity
Returns a new instance of GoogleCloudDataplexV1GovernanceEventEntity.
      4770 4771 4772  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 4770 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#entity ⇒ String
The Entity resource the log event is associated with. Format: projects/
project_number/locations/location_id/lakes/lake_id/zones/zone_id/
entities/entity_id
Corresponds to the JSON property entity
      4763 4764 4765  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 4763 def entity @entity end  | 
  
#entity_type ⇒ String
Type of entity.
Corresponds to the JSON property entityType
      4768 4769 4770  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 4768 def entity_type @entity_type end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4775 4776 4777 4778  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 4775 def update!(**args) @entity = args[:entity] if args.key?(:entity) @entity_type = args[:entity_type] if args.key?(:entity_type) end  |