Class: Google::Apis::DlpV2::GooglePrivacyDlpV2CreateDeidentifyTemplateRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2CreateDeidentifyTemplateRequest
 
- 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 CreateDeidentifyTemplate.
Instance Attribute Summary collapse
- 
  
    
      #deidentify_template  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The DeidentifyTemplates contains instructions on how to deidentify content. 
- 
  
    
      #template_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The template id can contain uppercase and lowercase letters, numbers, and hyphens; that is, it must match the regular expression: [a-zA-Z\\d-]+.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2CreateDeidentifyTemplateRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GooglePrivacyDlpV2CreateDeidentifyTemplateRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2CreateDeidentifyTemplateRequest
Returns a new instance of GooglePrivacyDlpV2CreateDeidentifyTemplateRequest
| 837 838 839 | # File 'generated/google/apis/dlp_v2/classes.rb', line 837 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#deidentify_template ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate
The DeidentifyTemplates contains instructions on how to deidentify content.
Corresponds to the JSON property deidentifyTemplate
| 827 828 829 | # File 'generated/google/apis/dlp_v2/classes.rb', line 827 def deidentify_template @deidentify_template end | 
#template_id ⇒ String
The template id can contain uppercase and lowercase letters,
numbers, and hyphens; that is, it must match the regular
expression: [a-zA-Z\\d-]+. The maximum length is 100
characters. Can be empty to allow the system to generate one.
Corresponds to the JSON property templateId
| 835 836 837 | # File 'generated/google/apis/dlp_v2/classes.rb', line 835 def template_id @template_id end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 842 843 844 845 | # File 'generated/google/apis/dlp_v2/classes.rb', line 842 def update!(**args) @deidentify_template = args[:deidentify_template] if args.key?(:deidentify_template) @template_id = args[:template_id] if args.key?(:template_id) end |