Class: Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateConnectionRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateConnectionRequest
 
 
- 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 UpdateConnection.
Instance Attribute Summary collapse
- 
  
    
      #connection  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2Connection 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A data connection to allow DLP to profile data in locations that require additional configuration.
 - 
  
    
      #update_mask  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2UpdateConnectionRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2UpdateConnectionRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2UpdateConnectionRequest
Returns a new instance of GooglePrivacyDlpV2UpdateConnectionRequest.
      9958 9959 9960  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 9958 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#connection ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2Connection
A data connection to allow DLP to profile data in locations that require
additional configuration.
Corresponds to the JSON property connection
      9951 9952 9953  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 9951 def connection @connection end  | 
  
#update_mask ⇒ String
Optional. Mask to control which fields get updated.
Corresponds to the JSON property updateMask
      9956 9957 9958  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 9956 def update_mask @update_mask end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      9963 9964 9965 9966  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 9963 def update!(**args) @connection = args[:connection] if args.key?(:connection) @update_mask = args[:update_mask] if args.key?(:update_mask) end  |