Class: Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateJobTriggerRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateJobTriggerRequest
 
- 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 UpdateJobTrigger.
Instance Attribute Summary collapse
- 
  
    
      #job_trigger  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Contains a configuration to make dlp api calls on a repeating basis. 
- 
  
    
      #update_mask  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Mask to control which fields get updated. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2UpdateJobTriggerRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GooglePrivacyDlpV2UpdateJobTriggerRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2UpdateJobTriggerRequest
Returns a new instance of GooglePrivacyDlpV2UpdateJobTriggerRequest
| 4666 4667 4668 | # File 'generated/google/apis/dlp_v2/classes.rb', line 4666 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#job_trigger ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger
Contains a configuration to make dlp api calls on a repeating basis.
Corresponds to the JSON property jobTrigger
| 4659 4660 4661 | # File 'generated/google/apis/dlp_v2/classes.rb', line 4659 def job_trigger @job_trigger end | 
#update_mask ⇒ String
Mask to control which fields get updated.
Corresponds to the JSON property updateMask
| 4664 4665 4666 | # File 'generated/google/apis/dlp_v2/classes.rb', line 4664 def update_mask @update_mask end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 4671 4672 4673 4674 | # File 'generated/google/apis/dlp_v2/classes.rb', line 4671 def update!(**args) @job_trigger = args[:job_trigger] if args.key?(:job_trigger) @update_mask = args[:update_mask] if args.key?(:update_mask) end |