class Google::Apis::MetastoreV1alpha::MaintenanceWindow

Maintenance window. This specifies when Dataproc Metastore may perform system maintenance operation to the service.

Attributes

day_of_week[RW]

The day of week, when the window starts. Corresponds to the JSON property `dayOfWeek` @return [String]

hour_of_day[RW]

The hour of day (0-23) when the window starts. Corresponds to the JSON property `hourOfDay` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/metastore_v1alpha/classes.rb, line 789
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/metastore_v1alpha/classes.rb, line 794
def update!(**args)
  @day_of_week = args[:day_of_week] if args.key?(:day_of_week)
  @hour_of_day = args[:hour_of_day] if args.key?(:hour_of_day)
end