Class: OCI::CloudGuard::Models::ProblemEntitySummary
- Inherits:
-
Object
- Object
- OCI::CloudGuard::Models::ProblemEntitySummary
- Defined in:
- lib/oci/cloud_guard/models/problem_entity_summary.rb
Overview
Summary information about problem entities for a data source for a problem.
Instance Attribute Summary collapse
-
#entity_details ⇒ Array<OCI::CloudGuard::Models::EntityDetails>
List of entity details related to a data source.
-
#problem_id ⇒ String
[Required] Attached problem ID.
-
#regions ⇒ Array<String>
[Required] Data source problem entities region.
-
#result_url ⇒ String
Log result query URL for a data source query.
-
#time_first_detected ⇒ DateTime
[Required] Data source problem entities first detected time.
-
#time_last_detected ⇒ DateTime
[Required] Data source problem entities last detected time.
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 = {}) ⇒ ProblemEntitySummary
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 = {}) ⇒ ProblemEntitySummary
Initializes the object
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
# File 'lib/oci/cloud_guard/models/problem_entity_summary.rb', line 75 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.regions = attributes[:'regions'] if attributes[:'regions'] self.time_first_detected = attributes[:'timeFirstDetected'] if attributes[:'timeFirstDetected'] raise 'You cannot provide both :timeFirstDetected and :time_first_detected' if attributes.key?(:'timeFirstDetected') && attributes.key?(:'time_first_detected') self.time_first_detected = attributes[:'time_first_detected'] if attributes[:'time_first_detected'] self.problem_id = attributes[:'problemId'] if attributes[:'problemId'] raise 'You cannot provide both :problemId and :problem_id' if attributes.key?(:'problemId') && attributes.key?(:'problem_id') self.problem_id = attributes[:'problem_id'] if attributes[:'problem_id'] self.time_last_detected = attributes[:'timeLastDetected'] if attributes[:'timeLastDetected'] raise 'You cannot provide both :timeLastDetected and :time_last_detected' if attributes.key?(:'timeLastDetected') && attributes.key?(:'time_last_detected') self.time_last_detected = attributes[:'time_last_detected'] if attributes[:'time_last_detected'] self.result_url = attributes[:'resultUrl'] if attributes[:'resultUrl'] raise 'You cannot provide both :resultUrl and :result_url' if attributes.key?(:'resultUrl') && attributes.key?(:'result_url') self.result_url = attributes[:'result_url'] if attributes[:'result_url'] self.entity_details = attributes[:'entityDetails'] if attributes[:'entityDetails'] raise 'You cannot provide both :entityDetails and :entity_details' if attributes.key?(:'entityDetails') && attributes.key?(:'entity_details') self.entity_details = attributes[:'entity_details'] if attributes[:'entity_details'] end |
Instance Attribute Details
#entity_details ⇒ Array<OCI::CloudGuard::Models::EntityDetails>
List of entity details related to a data source
33 34 35 |
# File 'lib/oci/cloud_guard/models/problem_entity_summary.rb', line 33 def entity_details @entity_details end |
#problem_id ⇒ String
[Required] Attached problem ID
21 22 23 |
# File 'lib/oci/cloud_guard/models/problem_entity_summary.rb', line 21 def problem_id @problem_id end |
#regions ⇒ Array<String>
[Required] Data source problem entities region
13 14 15 |
# File 'lib/oci/cloud_guard/models/problem_entity_summary.rb', line 13 def regions @regions end |
#result_url ⇒ String
Log result query URL for a data source query
29 30 31 |
# File 'lib/oci/cloud_guard/models/problem_entity_summary.rb', line 29 def result_url @result_url end |
#time_first_detected ⇒ DateTime
[Required] Data source problem entities first detected time
17 18 19 |
# File 'lib/oci/cloud_guard/models/problem_entity_summary.rb', line 17 def time_first_detected @time_first_detected end |
#time_last_detected ⇒ DateTime
[Required] Data source problem entities last detected time
25 26 27 |
# File 'lib/oci/cloud_guard/models/problem_entity_summary.rb', line 25 def time_last_detected @time_last_detected end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/oci/cloud_guard/models/problem_entity_summary.rb', line 36 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'regions': :'regions', 'time_first_detected': :'timeFirstDetected', 'problem_id': :'problemId', 'time_last_detected': :'timeLastDetected', 'result_url': :'resultUrl', 'entity_details': :'entityDetails' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
50 51 52 53 54 55 56 57 58 59 60 61 |
# File 'lib/oci/cloud_guard/models/problem_entity_summary.rb', line 50 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'regions': :'Array<String>', 'time_first_detected': :'DateTime', 'problem_id': :'String', 'time_last_detected': :'DateTime', 'result_url': :'String', 'entity_details': :'Array<OCI::CloudGuard::Models::EntityDetails>' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
121 122 123 124 125 126 127 128 129 130 131 |
# File 'lib/oci/cloud_guard/models/problem_entity_summary.rb', line 121 def ==(other) return true if equal?(other) self.class == other.class && regions == other.regions && time_first_detected == other.time_first_detected && problem_id == other.problem_id && time_last_detected == other.time_last_detected && result_url == other.result_url && entity_details == other.entity_details end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 |
# File 'lib/oci/cloud_guard/models/problem_entity_summary.rb', line 156 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
136 137 138 |
# File 'lib/oci/cloud_guard/models/problem_entity_summary.rb', line 136 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
145 146 147 |
# File 'lib/oci/cloud_guard/models/problem_entity_summary.rb', line 145 def hash [regions, time_first_detected, problem_id, time_last_detected, result_url, entity_details].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
189 190 191 192 193 194 195 196 197 198 |
# File 'lib/oci/cloud_guard/models/problem_entity_summary.rb', line 189 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
183 184 185 |
# File 'lib/oci/cloud_guard/models/problem_entity_summary.rb', line 183 def to_s to_hash.to_s end |