Class: DatadogAPIClient::V1::ServiceCheckStatus

Inherits:
Object
  • Object
show all
Includes:
BaseEnumModel
Defined in:
lib/datadog_api_client/v1/models/service_check_status.rb,
lib/datadog_api_client/v1/models/service_check_status.rb

Overview

The status of a service check. Set to 0 for OK, 1 for warning, 2 for critical, and 3 for unknown.

Constant Summary collapse

OK =
0.freeze
WARNING =
1.freeze
CRITICAL =
2.freeze
UNKNOWN =
3.freeze

Class Method Summary collapse

Instance Method Summary collapse

Methods included from BaseEnumModel

included

Class Method Details

.build_from_hash(value) ⇒ String

Builds the enum from string

Parameters:

  • The (String)

    enum value in the form of the string

Returns:

  • (String)

    The enum value



29
30
31
# File 'lib/datadog_api_client/v1/models/service_check_status.rb', line 29

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

Parameters:

  • The (String)

    enum value in the form of the string

Returns:

  • (String)

    The enum value



36
37
38
39
# File 'lib/datadog_api_client/v1/models/service_check_status.rb', line 36

def build_from_hash(value)
  constantValues = ServiceCheckStatus.constants.select { |c| ServiceCheckStatus::const_get(c) == value }
  constantValues.empty? ? DatadogAPIClient::V1::UnparsedObject.new(value) : value
end