Class: Google::Apis::OsconfigV1beta::MonthlySchedule

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/osconfig_v1beta/classes.rb,
generated/google/apis/osconfig_v1beta/representations.rb,
generated/google/apis/osconfig_v1beta/representations.rb

Overview

Represents a monthly schedule. An example of a valid monthly schedule is "on the third Tuesday of the month" or "on the 15th of the month".

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MonthlySchedule

Returns a new instance of MonthlySchedule.



1253
1254
1255
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 1253

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

Instance Attribute Details

#month_dayFixnum

Required. One day of the month. 1-31 indicates the 1st to the 31st day. -1 indicates the last day of the month. Months without the target day will be skipped. For example, a schedule to run "every month on the 31st" will not run in February, April, June, etc. Corresponds to the JSON property monthDay

Returns:

  • (Fixnum)


1246
1247
1248
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 1246

def month_day
  @month_day
end

#week_day_of_monthGoogle::Apis::OsconfigV1beta::WeekDayOfMonth

Represents one week day in a month. An example is "the 4th Sunday". Corresponds to the JSON property weekDayOfMonth



1251
1252
1253
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 1251

def week_day_of_month
  @week_day_of_month
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1258
1259
1260
1261
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 1258

def update!(**args)
  @month_day = args[:month_day] if args.key?(:month_day)
  @week_day_of_month = args[:week_day_of_month] if args.key?(:week_day_of_month)
end