Class: Google::Apis::DlpV2::GooglePrivacyDlpV2ReidentifyContentRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2ReidentifyContentRequest
 
 
- 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 to re-identify an item.
Instance Attribute Summary collapse
- 
  
    
      #inspect_config  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2InspectConfig 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Configuration description of the scanning process.
 - 
  
    
      #inspect_template_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional template to use.
 - 
  
    
      #item  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2ContentItem 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Container structure for the content to inspect.
 - 
  
    
      #reidentify_config  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyConfig 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The configuration that controls how the data will change.
 - 
  
    
      #reidentify_template_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional template to use.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2ReidentifyContentRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2ReidentifyContentRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2ReidentifyContentRequest
Returns a new instance of GooglePrivacyDlpV2ReidentifyContentRequest
      4587 4588 4589  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 4587 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#inspect_config ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2InspectConfig
Configuration description of the scanning process.
When used with redactContent only info_types and min_likelihood are currently
used.
Corresponds to the JSON property inspectConfig
      4556 4557 4558  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 4556 def inspect_config @inspect_config end  | 
  
#inspect_template_name ⇒ String
Optional template to use. Any configuration directly specified in
inspect_config will override those set in the template. Singular fields
that are set in this request will replace their corresponding fields in the
template. Repeated fields are appended. Singular sub-messages and groups
are recursively merged.
Corresponds to the JSON property inspectTemplateName
      4565 4566 4567  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 4565 def inspect_template_name @inspect_template_name end  | 
  
#item ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2ContentItem
Container structure for the content to inspect.
Corresponds to the JSON property item
      4570 4571 4572  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 4570 def item @item end  | 
  
#reidentify_config ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyConfig
The configuration that controls how the data will change.
Corresponds to the JSON property reidentifyConfig
      4575 4576 4577  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 4575 def reidentify_config @reidentify_config end  | 
  
#reidentify_template_name ⇒ String
Optional template to use. References an instance of DeidentifyTemplate.
Any configuration directly specified in reidentify_config or
inspect_config will override those set in the template. Singular fields
that are set in this request will replace their corresponding fields in the
template. Repeated fields are appended. Singular sub-messages and groups
are recursively merged.
Corresponds to the JSON property reidentifyTemplateName
      4585 4586 4587  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 4585 def reidentify_template_name @reidentify_template_name end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4592 4593 4594 4595 4596 4597 4598  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 4592 def update!(**args) @inspect_config = args[:inspect_config] if args.key?(:inspect_config) @inspect_template_name = args[:inspect_template_name] if args.key?(:inspect_template_name) @item = args[:item] if args.key?(:item) @reidentify_config = args[:reidentify_config] if args.key?(:reidentify_config) @reidentify_template_name = args[:reidentify_template_name] if args.key?(:reidentify_template_name) end  |