Class: Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateStoredInfoTypeRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateStoredInfoTypeRequest
 
 
- 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 UpdateStoredInfoType.
Instance Attribute Summary collapse
- 
  
    
      #config  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoTypeConfig 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Configuration for a StoredInfoType.
 - 
  
    
      #update_mask  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Mask to control which fields get updated.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2UpdateStoredInfoTypeRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2UpdateStoredInfoTypeRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2UpdateStoredInfoTypeRequest
Returns a new instance of GooglePrivacyDlpV2UpdateStoredInfoTypeRequest
      5525 5526 5527  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 5525 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#config ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoTypeConfig
Configuration for a StoredInfoType.
Corresponds to the JSON property config
      5518 5519 5520  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 5518 def config @config end  | 
  
#update_mask ⇒ String
Mask to control which fields get updated.
Corresponds to the JSON property updateMask
      5523 5524 5525  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 5523 def update_mask @update_mask end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      5530 5531 5532 5533  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 5530 def update!(**args) @config = args[:config] if args.key?(:config) @update_mask = args[:update_mask] if args.key?(:update_mask) end  |