Class: Google::Apis::DlpV2::GooglePrivacyDlpV2RequestedDeidentifyOptions
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2RequestedDeidentifyOptions
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/dlp_v2/classes.rb,
lib/google/apis/dlp_v2/representations.rb,
lib/google/apis/dlp_v2/representations.rb 
Overview
De-identification options.
Instance Attribute Summary collapse
- 
  
    
      #snapshot_deidentify_template  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
DeidentifyTemplates contains instructions on how to de-identify content.
 - 
  
    
      #snapshot_image_redact_template  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
DeidentifyTemplates contains instructions on how to de-identify content.
 - 
  
    
      #snapshot_structured_deidentify_template  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
DeidentifyTemplates contains instructions on how to de-identify content.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2RequestedDeidentifyOptions 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2RequestedDeidentifyOptions.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2RequestedDeidentifyOptions
Returns a new instance of GooglePrivacyDlpV2RequestedDeidentifyOptions.
      8305 8306 8307  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 8305 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#snapshot_deidentify_template ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate
DeidentifyTemplates contains instructions on how to de-identify content. See
https://cloud.google.com/sensitive-data-protection/docs/concepts-templates to
learn more.
Corresponds to the JSON property snapshotDeidentifyTemplate
      8289 8290 8291  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 8289 def snapshot_deidentify_template @snapshot_deidentify_template end  | 
  
#snapshot_image_redact_template ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate
DeidentifyTemplates contains instructions on how to de-identify content. See
https://cloud.google.com/sensitive-data-protection/docs/concepts-templates to
learn more.
Corresponds to the JSON property snapshotImageRedactTemplate
      8296 8297 8298  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 8296 def snapshot_image_redact_template @snapshot_image_redact_template end  | 
  
#snapshot_structured_deidentify_template ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate
DeidentifyTemplates contains instructions on how to de-identify content. See
https://cloud.google.com/sensitive-data-protection/docs/concepts-templates to
learn more.
Corresponds to the JSON property snapshotStructuredDeidentifyTemplate
      8303 8304 8305  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 8303 def snapshot_structured_deidentify_template @snapshot_structured_deidentify_template end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      8310 8311 8312 8313 8314  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 8310 def update!(**args) @snapshot_deidentify_template = args[:snapshot_deidentify_template] if args.key?(:snapshot_deidentify_template) @snapshot_image_redact_template = args[:snapshot_image_redact_template] if args.key?(:snapshot_image_redact_template) @snapshot_structured_deidentify_template = args[:snapshot_structured_deidentify_template] if args.key?(:snapshot_structured_deidentify_template) end  |