Class: OCI::CloudGuard::Models::ImpactedResourceSummary
- Inherits:
-
Object
- Object
- OCI::CloudGuard::Models::ImpactedResourceSummary
- Defined in:
- lib/oci/cloud_guard/models/impacted_resource_summary.rb
Overview
Summary of information on a resource thatu2019s been impacted by a detected problem.
Instance Attribute Summary collapse
-
#compartment_id ⇒ String
[Required] Compartment OCID where the impacted resource is created.
-
#id ⇒ String
[Required] Unique identifier for finding event.
-
#problem_id ⇒ String
[Required] Problem ID associated with the Impacted resource.
-
#region ⇒ String
[Required] Region where the resource is created.
-
#resource_id ⇒ String
[Required] Unique identifier of the impacted resource.
-
#resource_name ⇒ String
[Required] Name of the impacted resource.
-
#resource_type ⇒ String
[Required] Type of the impacted resource.
-
#sighting_type ⇒ String
Sighting type involved.
-
#sighting_type_display_name ⇒ String
Display name of the sighting type.
-
#time_identified ⇒ DateTime
[Required] Date and time when the problem was identified.
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 = {}) ⇒ ImpactedResourceSummary
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 = {}) ⇒ ImpactedResourceSummary
Initializes the object
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 |
# File 'lib/oci/cloud_guard/models/impacted_resource_summary.rb', line 103 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.id = attributes[:'id'] if attributes[:'id'] self.resource_id = attributes[:'resourceId'] if attributes[:'resourceId'] raise 'You cannot provide both :resourceId and :resource_id' if attributes.key?(:'resourceId') && attributes.key?(:'resource_id') self.resource_id = attributes[:'resource_id'] if attributes[:'resource_id'] 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.compartment_id = attributes[:'compartmentId'] if attributes[:'compartmentId'] raise 'You cannot provide both :compartmentId and :compartment_id' if attributes.key?(:'compartmentId') && attributes.key?(:'compartment_id') self.compartment_id = attributes[:'compartment_id'] if attributes[:'compartment_id'] self.sighting_type = attributes[:'sightingType'] if attributes[:'sightingType'] raise 'You cannot provide both :sightingType and :sighting_type' if attributes.key?(:'sightingType') && attributes.key?(:'sighting_type') self.sighting_type = attributes[:'sighting_type'] if attributes[:'sighting_type'] self.sighting_type_display_name = attributes[:'sightingTypeDisplayName'] if attributes[:'sightingTypeDisplayName'] raise 'You cannot provide both :sightingTypeDisplayName and :sighting_type_display_name' if attributes.key?(:'sightingTypeDisplayName') && attributes.key?(:'sighting_type_display_name') self.sighting_type_display_name = attributes[:'sighting_type_display_name'] if attributes[:'sighting_type_display_name'] self.resource_name = attributes[:'resourceName'] if attributes[:'resourceName'] raise 'You cannot provide both :resourceName and :resource_name' if attributes.key?(:'resourceName') && attributes.key?(:'resource_name') self.resource_name = attributes[:'resource_name'] if attributes[:'resource_name'] self.resource_type = attributes[:'resourceType'] if attributes[:'resourceType'] raise 'You cannot provide both :resourceType and :resource_type' if attributes.key?(:'resourceType') && attributes.key?(:'resource_type') self.resource_type = attributes[:'resource_type'] if attributes[:'resource_type'] self.region = attributes[:'region'] if attributes[:'region'] self.time_identified = attributes[:'timeIdentified'] if attributes[:'timeIdentified'] raise 'You cannot provide both :timeIdentified and :time_identified' if attributes.key?(:'timeIdentified') && attributes.key?(:'time_identified') self.time_identified = attributes[:'time_identified'] if attributes[:'time_identified'] end |
Instance Attribute Details
#compartment_id ⇒ String
[Required] Compartment OCID where the impacted resource is created
25 26 27 |
# File 'lib/oci/cloud_guard/models/impacted_resource_summary.rb', line 25 def compartment_id @compartment_id end |
#id ⇒ String
[Required] Unique identifier for finding event
13 14 15 |
# File 'lib/oci/cloud_guard/models/impacted_resource_summary.rb', line 13 def id @id end |
#problem_id ⇒ String
[Required] Problem ID associated with the Impacted resource
21 22 23 |
# File 'lib/oci/cloud_guard/models/impacted_resource_summary.rb', line 21 def problem_id @problem_id end |
#region ⇒ String
[Required] Region where the resource is created
45 46 47 |
# File 'lib/oci/cloud_guard/models/impacted_resource_summary.rb', line 45 def region @region end |
#resource_id ⇒ String
[Required] Unique identifier of the impacted resource
17 18 19 |
# File 'lib/oci/cloud_guard/models/impacted_resource_summary.rb', line 17 def resource_id @resource_id end |
#resource_name ⇒ String
[Required] Name of the impacted resource
37 38 39 |
# File 'lib/oci/cloud_guard/models/impacted_resource_summary.rb', line 37 def resource_name @resource_name end |
#resource_type ⇒ String
[Required] Type of the impacted resource
41 42 43 |
# File 'lib/oci/cloud_guard/models/impacted_resource_summary.rb', line 41 def resource_type @resource_type end |
#sighting_type ⇒ String
Sighting type involved
29 30 31 |
# File 'lib/oci/cloud_guard/models/impacted_resource_summary.rb', line 29 def sighting_type @sighting_type end |
#sighting_type_display_name ⇒ String
Display name of the sighting type
33 34 35 |
# File 'lib/oci/cloud_guard/models/impacted_resource_summary.rb', line 33 def sighting_type_display_name @sighting_type_display_name end |
#time_identified ⇒ DateTime
[Required] Date and time when the problem was identified
49 50 51 |
# File 'lib/oci/cloud_guard/models/impacted_resource_summary.rb', line 49 def time_identified @time_identified end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'lib/oci/cloud_guard/models/impacted_resource_summary.rb', line 52 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'id': :'id', 'resource_id': :'resourceId', 'problem_id': :'problemId', 'compartment_id': :'compartmentId', 'sighting_type': :'sightingType', 'sighting_type_display_name': :'sightingTypeDisplayName', 'resource_name': :'resourceName', 'resource_type': :'resourceType', 'region': :'region', 'time_identified': :'timeIdentified' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
# File 'lib/oci/cloud_guard/models/impacted_resource_summary.rb', line 70 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'id': :'String', 'resource_id': :'String', 'problem_id': :'String', 'compartment_id': :'String', 'sighting_type': :'String', 'sighting_type_display_name': :'String', 'resource_name': :'String', 'resource_type': :'String', 'region': :'String', 'time_identified': :'DateTime' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 |
# File 'lib/oci/cloud_guard/models/impacted_resource_summary.rb', line 169 def ==(other) return true if equal?(other) self.class == other.class && id == other.id && resource_id == other.resource_id && problem_id == other.problem_id && compartment_id == other.compartment_id && sighting_type == other.sighting_type && sighting_type_display_name == other.sighting_type_display_name && resource_name == other.resource_name && resource_type == other.resource_type && region == other.region && time_identified == other.time_identified end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 |
# File 'lib/oci/cloud_guard/models/impacted_resource_summary.rb', line 208 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
188 189 190 |
# File 'lib/oci/cloud_guard/models/impacted_resource_summary.rb', line 188 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
197 198 199 |
# File 'lib/oci/cloud_guard/models/impacted_resource_summary.rb', line 197 def hash [id, resource_id, problem_id, compartment_id, sighting_type, sighting_type_display_name, resource_name, resource_type, region, time_identified].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
241 242 243 244 245 246 247 248 249 250 |
# File 'lib/oci/cloud_guard/models/impacted_resource_summary.rb', line 241 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
235 236 237 |
# File 'lib/oci/cloud_guard/models/impacted_resource_summary.rb', line 235 def to_s to_hash.to_s end |