Class: OCI::ApmTraces::Models::AttributeMetadata
- Inherits:
-
Object
- Object
- OCI::ApmTraces::Models::AttributeMetadata
- Defined in:
- lib/oci/apm_traces/models/attribute_metadata.rb
Overview
Definition of the attribute metadata.
Constant Summary collapse
- ATTRIBUTE_TYPE_ENUM =
[ ATTRIBUTE_TYPE_STRING = 'STRING'.freeze, ATTRIBUTE_TYPE_NUMERIC = 'NUMERIC'.freeze, ATTRIBUTE_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- ATTRIBUTE_UNIT_ENUM =
[ ATTRIBUTE_UNIT_EPOCH_TIME_MS = 'EPOCH_TIME_MS'.freeze, ATTRIBUTE_UNIT_BYTES = 'BYTES'.freeze, ATTRIBUTE_UNIT_COUNT = 'COUNT'.freeze, ATTRIBUTE_UNIT_DURATION_MS = 'DURATION_MS'.freeze, ATTRIBUTE_UNIT_PERCENTAGE = 'PERCENTAGE'.freeze, ATTRIBUTE_UNIT_NONE = 'NONE'.freeze, ATTRIBUTE_UNIT_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#attribute_type ⇒ String
Type associated with the attribute key.
-
#attribute_unit ⇒ String
Unit associated with the attribute key.
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 = {}) ⇒ AttributeMetadata
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 = {}) ⇒ AttributeMetadata
Initializes the object
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
# File 'lib/oci/apm_traces/models/attribute_metadata.rb', line 67 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.attribute_type = attributes[:'attributeType'] if attributes[:'attributeType'] raise 'You cannot provide both :attributeType and :attribute_type' if attributes.key?(:'attributeType') && attributes.key?(:'attribute_type') self.attribute_type = attributes[:'attribute_type'] if attributes[:'attribute_type'] self.attribute_unit = attributes[:'attributeUnit'] if attributes[:'attributeUnit'] raise 'You cannot provide both :attributeUnit and :attribute_unit' if attributes.key?(:'attributeUnit') && attributes.key?(:'attribute_unit') self.attribute_unit = attributes[:'attribute_unit'] if attributes[:'attribute_unit'] end |
Instance Attribute Details
#attribute_type ⇒ String
Type associated with the attribute key.
32 33 34 |
# File 'lib/oci/apm_traces/models/attribute_metadata.rb', line 32 def attribute_type @attribute_type end |
#attribute_unit ⇒ String
Unit associated with the attribute key. If unit is not specified, it defaults to NONE.
37 38 39 |
# File 'lib/oci/apm_traces/models/attribute_metadata.rb', line 37 def attribute_unit @attribute_unit end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
40 41 42 43 44 45 46 47 |
# File 'lib/oci/apm_traces/models/attribute_metadata.rb', line 40 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'attribute_type': :'attributeType', 'attribute_unit': :'attributeUnit' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
50 51 52 53 54 55 56 57 |
# File 'lib/oci/apm_traces/models/attribute_metadata.rb', line 50 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'attribute_type': :'String', 'attribute_unit': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
119 120 121 122 123 124 125 |
# File 'lib/oci/apm_traces/models/attribute_metadata.rb', line 119 def ==(other) return true if equal?(other) self.class == other.class && attribute_type == other.attribute_type && attribute_unit == other.attribute_unit end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 |
# File 'lib/oci/apm_traces/models/attribute_metadata.rb', line 150 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
130 131 132 |
# File 'lib/oci/apm_traces/models/attribute_metadata.rb', line 130 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
139 140 141 |
# File 'lib/oci/apm_traces/models/attribute_metadata.rb', line 139 def hash [attribute_type, attribute_unit].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
183 184 185 186 187 188 189 190 191 192 |
# File 'lib/oci/apm_traces/models/attribute_metadata.rb', line 183 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
177 178 179 |
# File 'lib/oci/apm_traces/models/attribute_metadata.rb', line 177 def to_s to_hash.to_s end |