Class: Google::Apis::ComposerV1beta1::MaintenanceWindow
- Inherits:
-
Object
- Object
- Google::Apis::ComposerV1beta1::MaintenanceWindow
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/composer_v1beta1/classes.rb,
generated/google/apis/composer_v1beta1/representations.rb,
generated/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
-
#end_time ⇒ String
Required.
-
#recurrence ⇒ String
Required.
-
#start_time ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MaintenanceWindow
constructor
A new instance of MaintenanceWindow.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MaintenanceWindow
Returns a new instance of MaintenanceWindow.
546 547 548 |
# File 'generated/google/apis/composer_v1beta1/classes.rb', line 546 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_time ⇒ String
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
531 532 533 |
# File 'generated/google/apis/composer_v1beta1/classes.rb', line 531 def end_time @end_time end |
#recurrence ⇒ String
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
539 540 541 |
# File 'generated/google/apis/composer_v1beta1/classes.rb', line 539 def recurrence @recurrence end |
#start_time ⇒ String
Required. Start time of the first recurrence of the maintenance window.
Corresponds to the JSON property startTime
544 545 546 |
# File 'generated/google/apis/composer_v1beta1/classes.rb', line 544 def start_time @start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
551 552 553 554 555 |
# File 'generated/google/apis/composer_v1beta1/classes.rb', line 551 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 |