Class: OCI::Monitoring::Models::AlarmDimensionStatesEntry
- Inherits:
-
Object
- Object
- OCI::Monitoring::Models::AlarmDimensionStatesEntry
- Defined in:
- lib/oci/monitoring/models/alarm_dimension_states_entry.rb
Overview
A timestamped alarm state entry for a metric stream.
Constant Summary collapse
- STATUS_ENUM =
[ STATUS_FIRING = 'FIRING'.freeze, STATUS_OK = 'OK'.freeze, STATUS_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#dimensions ⇒ Hash<String, String>
[Required] Indicator of the metric stream associated with the alarm state entry.
-
#rule_name ⇒ String
[Required] Identifier of the alarm's base values for alarm evaluation, for use when the alarm contains overrides.
-
#status ⇒ String
[Required] Transition state (status value) associated with the alarm state entry.
-
#timestamp ⇒ DateTime
[Required] Transition time associated with the alarm state entry.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(other) ⇒ Object
Checks equality by comparing each attribute.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(other) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ AlarmDimensionStatesEntry
constructor
Initializes the object.
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
Constructor Details
#initialize(attributes = {}) ⇒ AlarmDimensionStatesEntry
Initializes the object
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
# File 'lib/oci/monitoring/models/alarm_dimension_states_entry.rb', line 79 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } self.dimensions = attributes[:'dimensions'] if attributes[:'dimensions'] self.status = attributes[:'status'] if attributes[:'status'] self.rule_name = attributes[:'ruleName'] if attributes[:'ruleName'] raise 'You cannot provide both :ruleName and :rule_name' if attributes.key?(:'ruleName') && attributes.key?(:'rule_name') self.rule_name = attributes[:'rule_name'] if attributes[:'rule_name'] self. = attributes[:'timestamp'] if attributes[:'timestamp'] end |
Instance Attribute Details
#dimensions ⇒ Hash<String, String>
[Required] Indicator of the metric stream associated with the alarm state entry. Includes one or more dimension key-value pairs.
22 23 24 |
# File 'lib/oci/monitoring/models/alarm_dimension_states_entry.rb', line 22 def dimensions @dimensions end |
#rule_name ⇒ String
[Required] Identifier of the alarm's base values for alarm evaluation, for use when the alarm contains overrides. A valid ruleName value starts with an alphabetic character and includes only alphanumeric characters, underscores and square brackets. Minimum number of characters: 3. Default value is BASE
. For information about alarm overrides, see alarm_override.
36 37 38 |
# File 'lib/oci/monitoring/models/alarm_dimension_states_entry.rb', line 36 def rule_name @rule_name end |
#status ⇒ String
[Required] Transition state (status value) associated with the alarm state entry.
Example: FIRING
29 30 31 |
# File 'lib/oci/monitoring/models/alarm_dimension_states_entry.rb', line 29 def status @status end |
#timestamp ⇒ DateTime
[Required] Transition time associated with the alarm state entry. Format defined by RFC3339.
Example: 2022-02-01T01:02:29.600Z
43 44 45 |
# File 'lib/oci/monitoring/models/alarm_dimension_states_entry.rb', line 43 def @timestamp end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
46 47 48 49 50 51 52 53 54 55 |
# File 'lib/oci/monitoring/models/alarm_dimension_states_entry.rb', line 46 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'dimensions': :'dimensions', 'status': :'status', 'rule_name': :'ruleName', 'timestamp': :'timestamp' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
58 59 60 61 62 63 64 65 66 67 |
# File 'lib/oci/monitoring/models/alarm_dimension_states_entry.rb', line 58 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'dimensions': :'Hash<String, String>', 'status': :'String', 'rule_name': :'String', 'timestamp': :'DateTime' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
118 119 120 121 122 123 124 125 126 |
# File 'lib/oci/monitoring/models/alarm_dimension_states_entry.rb', line 118 def ==(other) return true if equal?(other) self.class == other.class && dimensions == other.dimensions && status == other.status && rule_name == other.rule_name && == other. end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 |
# File 'lib/oci/monitoring/models/alarm_dimension_states_entry.rb', line 151 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.swagger_types.each_pair do |key, type| if type =~ /^Array<(.*)>/i # check to ensure the input is an array given that the the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) public_method("#{key}=").call( attributes[self.class.attribute_map[key]] .map { |v| OCI::Internal::Util.convert_to_type(Regexp.last_match(1), v) } ) end elsif !attributes[self.class.attribute_map[key]].nil? public_method("#{key}=").call( OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]) ) end # or else data not found in attributes(hash), not an issue as the data can be optional end self end |
#eql?(other) ⇒ Boolean
131 132 133 |
# File 'lib/oci/monitoring/models/alarm_dimension_states_entry.rb', line 131 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
140 141 142 |
# File 'lib/oci/monitoring/models/alarm_dimension_states_entry.rb', line 140 def hash [dimensions, status, rule_name, ].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
184 185 186 187 188 189 190 191 192 193 |
# File 'lib/oci/monitoring/models/alarm_dimension_states_entry.rb', line 184 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = public_method(attr).call next if value.nil? && !instance_variable_defined?("@#{attr}") hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
178 179 180 |
# File 'lib/oci/monitoring/models/alarm_dimension_states_entry.rb', line 178 def to_s to_hash.to_s end |