Class: Google::Apis::DlpV2::GooglePrivacyDlpV2EntityId
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2EntityId
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dlp_v2/classes.rb,
generated/google/apis/dlp_v2/representations.rb,
generated/google/apis/dlp_v2/representations.rb 
Overview
An entity in a dataset is a field or set of fields that correspond to a
single person. For example, in medical records the EntityId might be a
patient identifier, or for financial records it might be an account
identifier. This message is used when generalizations or analysis must take
into account that multiple rows correspond to the same entity.
Instance Attribute Summary collapse
- 
  
    
      #field  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
General identifier of a data field in a storage service.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2EntityId 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2EntityId.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2EntityId
Returns a new instance of GooglePrivacyDlpV2EntityId
      1942 1943 1944  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 1942 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#field ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId
General identifier of a data field in a storage service.
Corresponds to the JSON property field
      1940 1941 1942  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 1940 def field @field end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1947 1948 1949  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 1947 def update!(**args) @field = args[:field] if args.key?(:field) end  |