Class: Google::Apis::ComposerV1beta1::MaintenanceWindow

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/composer_v1beta1/classes.rb,
lib/google/apis/composer_v1beta1/representations.rb,
lib/google/apis/composer_v1beta1/representations.rb

Overview

The configuration settings for Cloud Composer maintenance window. The following example: ` "startTime":"2019-08-01T01:00:00Z" "endTime":"2019-08- 01T07:00:00Z" "recurrence":"FREQ=WEEKLY;BYDAY=TU,WE" ` would define a maintenance window between 01 and 07 hours UTC during each Tuesday and Wednesday.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MaintenanceWindow

Returns a new instance of MaintenanceWindow.



1246
1247
1248
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1246

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#end_timeString

Required. Maintenance window end time. It is used only to calculate the duration of the maintenance window. The value for end_time must be in the future, relative to start_time. Corresponds to the JSON property endTime

Returns:

  • (String)


1231
1232
1233
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1231

def end_time
  @end_time
end

#recurrenceString

Required. Maintenance window recurrence. Format is a subset of RFC-5545 RRULE. The only allowed values for FREQ field are FREQ=DAILY and FREQ=WEEKLY;BYDAY=... Example values: FREQ= WEEKLY;BYDAY=TU,WE, FREQ=DAILY. Corresponds to the JSON property recurrence

Returns:

  • (String)


1239
1240
1241
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1239

def recurrence
  @recurrence
end

#start_timeString

Required. Start time of the first recurrence of the maintenance window. Corresponds to the JSON property startTime

Returns:

  • (String)


1244
1245
1246
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1244

def start_time
  @start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1251
1252
1253
1254
1255
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1251

def update!(**args)
  @end_time = args[:end_time] if args.key?(:end_time)
  @recurrence = args[:recurrence] if args.key?(:recurrence)
  @start_time = args[:start_time] if args.key?(:start_time)
end