Class: DatadogAPIClient::V2::SecurityMonitoringRuleKeepAlive
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::SecurityMonitoringRuleKeepAlive
- Includes:
- BaseEnumModel
- Defined in:
- lib/datadog_api_client/v2/models/security_monitoring_rule_keep_alive.rb,
lib/datadog_api_client/v2/models/security_monitoring_rule_keep_alive.rb
Overview
Once a signal is generated, the signal will remain “open” if a case is matched at least once within this keep alive window. For third party rules, this field is not used.
Constant Summary collapse
- ZERO_MINUTES =
0.freeze
- ONE_MINUTE =
60.freeze
- FIVE_MINUTES =
300.freeze
- TEN_MINUTES =
600.freeze
- FIFTEEN_MINUTES =
900.freeze
- THIRTY_MINUTES =
1800.freeze
- ONE_HOUR =
3600.freeze
- TWO_HOURS =
7200.freeze
- THREE_HOURS =
10800.freeze
- SIX_HOURS =
21600.freeze
Class Method Summary collapse
-
.build_from_hash(value) ⇒ String
Builds the enum from string.
Instance Method Summary collapse
-
#build_from_hash(value) ⇒ String
Builds the enum from string.
Methods included from BaseEnumModel
Class Method Details
.build_from_hash(value) ⇒ String
Builds the enum from string
35 36 37 |
# File 'lib/datadog_api_client/v2/models/security_monitoring_rule_keep_alive.rb', line 35 def self.build_from_hash(value) new.build_from_hash(value) end |
Instance Method Details
#build_from_hash(value) ⇒ String
Builds the enum from string
42 43 44 45 |
# File 'lib/datadog_api_client/v2/models/security_monitoring_rule_keep_alive.rb', line 42 def build_from_hash(value) constantValues = SecurityMonitoringRuleKeepAlive.constants.select { |c| SecurityMonitoringRuleKeepAlive::const_get(c) == value } constantValues.empty? ? DatadogAPIClient::V2::UnparsedObject.new(value) : value end |