Class: DatadogAPIClient::V2::DowntimeScheduleRecurrenceResponse
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::DowntimeScheduleRecurrenceResponse
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v2/models/downtime_schedule_recurrence_response.rb
Overview
An RRULE-based recurring downtime.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#duration ⇒ Object
The length of the downtime.
-
#rrule ⇒ Object
The
RRULE
standard for defining recurring events. -
#start ⇒ Object
ISO-8601 Datetime to start the downtime.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
39 40 41 |
# File 'lib/datadog_api_client/v2/models/downtime_schedule_recurrence_response.rb', line 39 def additional_properties @additional_properties end |
#duration ⇒ Object
The length of the downtime. Must begin with an integer and end with one of 'm', 'h', d', or 'w'.
25 26 27 |
# File 'lib/datadog_api_client/v2/models/downtime_schedule_recurrence_response.rb', line 25 def duration @duration end |
#rrule ⇒ Object
The RRULE
standard for defining recurring events.
For example, to have a recurring event on the first day of each month, set the type to rrule
and set the FREQ
to MONTHLY
and BYMONTHDAY
to 1
.
Most common rrule
options from the iCalendar Spec are supported.
Note: Attributes specifying the duration in RRULE
are not supported (for example, DTSTART
, DTEND
, DURATION
).
More examples available in this downtime guide.
33 34 35 |
# File 'lib/datadog_api_client/v2/models/downtime_schedule_recurrence_response.rb', line 33 def rrule @rrule end |
#start ⇒ Object
ISO-8601 Datetime to start the downtime. Must not include a UTC offset. If not provided, the downtime starts the moment it is created.
37 38 39 |
# File 'lib/datadog_api_client/v2/models/downtime_schedule_recurrence_response.rb', line 37 def start @start end |