Class: Google::Apis::DlpV2::GooglePrivacyDlpV2CreateInspectTemplateRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2CreateInspectTemplateRequest
 
 
- 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
Request message for CreateInspectTemplate.
Instance Attribute Summary collapse
- 
  
    
      #inspect_template  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The inspectTemplate contains a configuration (set of types of sensitive data to be detected) to be used anywhere you otherwise would normally specify InspectConfig.
 - 
  
    
      #location_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Deprecated.
 - 
  
    
      #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)  ⇒ GooglePrivacyDlpV2CreateInspectTemplateRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2CreateInspectTemplateRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2CreateInspectTemplateRequest
Returns a new instance of GooglePrivacyDlpV2CreateInspectTemplateRequest.
      1913 1914 1915  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 1913 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#inspect_template ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate
The inspectTemplate contains a configuration (set of types of sensitive data
to be detected) to be used anywhere you otherwise would normally specify
InspectConfig. See https://cloud.google.com/sensitive-data-protection/docs/
concepts-templates to learn more.
Corresponds to the JSON property inspectTemplate
      1898 1899 1900  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 1898 def inspect_template @inspect_template end  | 
  
#location_id ⇒ String
Deprecated. This field has no effect.
Corresponds to the JSON property locationId
      1903 1904 1905  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 1903 def location_id @location_id 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
      1911 1912 1913  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 1911 def template_id @template_id end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1918 1919 1920 1921 1922  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 1918 def update!(**args) @inspect_template = args[:inspect_template] if args.key?(:inspect_template) @location_id = args[:location_id] if args.key?(:location_id) @template_id = args[:template_id] if args.key?(:template_id) end  |