Class: Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest
 
 
- 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
Request message for UpdateDeidentifyTemplate.
Instance Attribute Summary collapse
- 
  
    
      #deidentify_template  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The DeidentifyTemplates contains instructions on how to deidentify content.
 - 
  
    
      #update_mask  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Mask to control which fields get updated.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest
Returns a new instance of GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest
      5446 5447 5448  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 5446 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#deidentify_template ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate
The DeidentifyTemplates contains instructions on how to deidentify content.
See https://cloud.google.com/dlp/docs/concepts-templates to learn more.
Corresponds to the JSON property deidentifyTemplate
      5439 5440 5441  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 5439 def deidentify_template @deidentify_template end  | 
  
#update_mask ⇒ String
Mask to control which fields get updated.
Corresponds to the JSON property updateMask
      5444 5445 5446  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 5444 def update_mask @update_mask end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      5451 5452 5453 5454  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 5451 def update!(**args) @deidentify_template = args[:deidentify_template] if args.key?(:deidentify_template) @update_mask = args[:update_mask] if args.key?(:update_mask) end  |