Class: DatadogAPIClient::V1::MonitorOptionsSchedulingOptionsEvaluationWindow

Inherits:
Object
  • Object
show all
Includes:
BaseGenericModel
Defined in:
lib/datadog_api_client/v1/models/monitor_options_scheduling_options_evaluation_window.rb

Overview

Configuration options for the evaluation window. If hour_starts is set, no other fields may be set. Otherwise, day_starts and month_starts must be set together.

Instance Attribute Summary collapse

Method Summary

Methods included from BaseGenericModel

included

Instance Attribute Details

#day_startsObject

The time of the day at which a one day cumulative evaluation window starts. Must be defined in UTC time in HH:mm format.



25
26
27
# File 'lib/datadog_api_client/v1/models/monitor_options_scheduling_options_evaluation_window.rb', line 25

def day_starts
  @day_starts
end

#hour_startsObject

The minute of the hour at which a one hour cumulative evaluation window starts.



28
29
30
# File 'lib/datadog_api_client/v1/models/monitor_options_scheduling_options_evaluation_window.rb', line 28

def hour_starts
  @hour_starts
end

#month_startsObject

The day of the month at which a one month cumulative evaluation window starts.



31
32
33
# File 'lib/datadog_api_client/v1/models/monitor_options_scheduling_options_evaluation_window.rb', line 31

def month_starts
  @month_starts
end