Class: Google::Apis::DlpV2::GooglePrivacyDlpV2Schedule
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2Schedule
 
- 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
Schedule for triggeredJobs.
Instance Attribute Summary collapse
- 
  
    
      #recurrence_period_duration  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    With this option a job is started a regular periodic basis. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2Schedule 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GooglePrivacyDlpV2Schedule. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2Schedule
Returns a new instance of GooglePrivacyDlpV2Schedule
| 4175 4176 4177 | # File 'generated/google/apis/dlp_v2/classes.rb', line 4175 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#recurrence_period_duration ⇒ String
With this option a job is started a regular periodic basis. For
example: every 10 minutes.
A scheduled start time will be skipped if the previous
execution has not ended when its scheduled time occurs.
This value must be set to a time duration greater than or equal
to 60 minutes and can be no longer than 60 days.
Corresponds to the JSON property recurrencePeriodDuration
| 4173 4174 4175 | # File 'generated/google/apis/dlp_v2/classes.rb', line 4173 def recurrence_period_duration @recurrence_period_duration end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 4180 4181 4182 | # File 'generated/google/apis/dlp_v2/classes.rb', line 4180 def update!(**args) @recurrence_period_duration = args[:recurrence_period_duration] if args.key?(:recurrence_period_duration) end |