Class: Google::Apis::RedisV1::ClusterWeeklyMaintenanceWindow
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::RedisV1::ClusterWeeklyMaintenanceWindow
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/redis_v1/classes.rb,
lib/google/apis/redis_v1/representations.rb,
lib/google/apis/redis_v1/representations.rb 
Overview
Time window specified for weekly operations.
Instance Attribute Summary collapse
- 
  
    
      #day  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Allows to define schedule that runs specified day of the week.
 - 
  
    
      #duration  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Duration of the time window.
 - 
  
    
      #start_time  ⇒ Google::Apis::RedisV1::TimeOfDay 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Represents a time of day.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ClusterWeeklyMaintenanceWindow 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ClusterWeeklyMaintenanceWindow.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ClusterWeeklyMaintenanceWindow
Returns a new instance of ClusterWeeklyMaintenanceWindow.
      493 494 495  | 
    
      # File 'lib/google/apis/redis_v1/classes.rb', line 493 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#day ⇒ String
Allows to define schedule that runs specified day of the week.
Corresponds to the JSON property day
      479 480 481  | 
    
      # File 'lib/google/apis/redis_v1/classes.rb', line 479 def day @day end  | 
  
#duration ⇒ String
Duration of the time window.
Corresponds to the JSON property duration
      484 485 486  | 
    
      # File 'lib/google/apis/redis_v1/classes.rb', line 484 def duration @duration end  | 
  
#start_time ⇒ Google::Apis::RedisV1::TimeOfDay
Represents a time of day. The date and time zone are either not significant or
are specified elsewhere. An API may choose to allow leap seconds. Related
types are google.type.Date and google.protobuf.Timestamp.
Corresponds to the JSON property startTime
      491 492 493  | 
    
      # File 'lib/google/apis/redis_v1/classes.rb', line 491 def start_time @start_time end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      498 499 500 501 502  | 
    
      # File 'lib/google/apis/redis_v1/classes.rb', line 498 def update!(**args) @day = args[:day] if args.key?(:day) @duration = args[:duration] if args.key?(:duration) @start_time = args[:start_time] if args.key?(:start_time) end  |