Class: Google::Apis::ComputeBeta::ResourcePolicyDailyCycle
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ComputeBeta::ResourcePolicyDailyCycle
 
 
- Defined in:
 - generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb 
Overview
Time window specified for daily operations.
Instance Attribute Summary collapse
- 
  
    
      #days_in_cycle  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Allows to define schedule that runs every nth day of the month.
 - 
  
    
      #duration  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output only] Duration of the time window, automatically chosen to be smallest possible in the given scenario.
 - 
  
    
      #start_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Time within the window to start the operations.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ResourcePolicyDailyCycle 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ResourcePolicyDailyCycle.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ResourcePolicyDailyCycle
Returns a new instance of ResourcePolicyDailyCycle
      18270 18271 18272  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 18270 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#days_in_cycle ⇒ Fixnum
Allows to define schedule that runs every nth day of the month.
Corresponds to the JSON property daysInCycle
      18256 18257 18258  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 18256 def days_in_cycle @days_in_cycle end  | 
  
#duration ⇒ String
[Output only] Duration of the time window, automatically chosen to be smallest
possible in the given scenario.
Corresponds to the JSON property duration
      18262 18263 18264  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 18262 def duration @duration end  | 
  
#start_time ⇒ String
Time within the window to start the operations. It must be in format "HH:MM?,
where HH : [00-23] and MM : [00-59] GMT.
Corresponds to the JSON property startTime
      18268 18269 18270  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 18268 def start_time @start_time end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      18275 18276 18277 18278 18279  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 18275 def update!(**args) @days_in_cycle = args[:days_in_cycle] if args.key?(:days_in_cycle) @duration = args[:duration] if args.key?(:duration) @start_time = args[:start_time] if args.key?(:start_time) end  |