Class: Google::Apis::SheetsV4::DataSourceRefreshMonthlySchedule
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::DataSourceRefreshMonthlySchedule
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/sheets_v4/classes.rb,
generated/google/apis/sheets_v4/representations.rb,
generated/google/apis/sheets_v4/representations.rb
Overview
A monthly schedule for data to refresh on specific days in the month in a given time interval.
Instance Attribute Summary collapse
-
#days_of_month ⇒ Array<Fixnum>
Days of the month to refresh.
-
#start_time ⇒ Google::Apis::SheetsV4::TimeOfDay
Represents a time of day.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DataSourceRefreshMonthlySchedule
constructor
A new instance of DataSourceRefreshMonthlySchedule.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DataSourceRefreshMonthlySchedule
Returns a new instance of DataSourceRefreshMonthlySchedule.
4057 4058 4059 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4057 def initialize(**args) update!(**args) end |
Instance Attribute Details
#days_of_month ⇒ Array<Fixnum>
Days of the month to refresh. Only 1-28 are supported, mapping to the 1st to
the 28th day. At lesat one day must be specified.
Corresponds to the JSON property daysOfMonth
4048 4049 4050 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4048 def days_of_month @days_of_month end |
#start_time ⇒ Google::Apis::SheetsV4::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
4055 4056 4057 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4055 def start_time @start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4062 4063 4064 4065 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4062 def update!(**args) @days_of_month = args[:days_of_month] if args.key?(:days_of_month) @start_time = args[:start_time] if args.key?(:start_time) end |