Class: OCI::CloudGuard::Models::ResourceProfileEndpointSummary
- Inherits:
-
Object
- Object
- OCI::CloudGuard::Models::ResourceProfileEndpointSummary
- Defined in:
- lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb
Overview
Summary information for resource profile endpoints.
Instance Attribute Summary collapse
-
#asn_number ⇒ String
ASN number of sighting.
-
#country ⇒ String
Country of sighting.
-
#id ⇒ String
[Required] Unique identifier for sighting endpoints.
-
#ip_address ⇒ String
[Required] IP address for sighting.
-
#ip_address_type ⇒ String
[Required] Type of IP address for sighting.
-
#ip_classification_type ⇒ String
IP address classification type.
-
#latitude ⇒ Float
Latitude of sighting.
-
#longitude ⇒ Float
Longitude of sighting.
-
#problem_id ⇒ String
Problem ID for sighting endpoints.
-
#regions ⇒ Array<String>
Regions where activities were performed from this IP address.
-
#resource_profile_id ⇒ String
[Required] Resource profile ID associated with the impacted resource.
-
#services ⇒ Array<String>
List of services where activities were performed from this IP address.
-
#sighting_type ⇒ String
[Required] Type of sighting for sighting endpoints.
-
#sighting_type_display_name ⇒ String
[Required] Display name of the sighting type.
-
#time_first_detected ⇒ DateTime
Time the activities were first detected.
-
#time_first_occurred ⇒ DateTime
Time the activities were first performed.
-
#time_last_detected ⇒ DateTime
[Required] Time the activities were last detected.
-
#time_last_occurred ⇒ DateTime
Time the activities were last performed.
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 = {}) ⇒ ResourceProfileEndpointSummary
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 = {}) ⇒ ResourceProfileEndpointSummary
Initializes the object
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 |
# File 'lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb', line 159 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_profile_id = attributes[:'resourceProfileId'] if attributes[:'resourceProfileId'] raise 'You cannot provide both :resourceProfileId and :resource_profile_id' if attributes.key?(:'resourceProfileId') && attributes.key?(:'resource_profile_id') self.resource_profile_id = attributes[:'resource_profile_id'] if attributes[:'resource_profile_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.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.ip_address = attributes[:'ipAddress'] if attributes[:'ipAddress'] raise 'You cannot provide both :ipAddress and :ip_address' if attributes.key?(:'ipAddress') && attributes.key?(:'ip_address') self.ip_address = attributes[:'ip_address'] if attributes[:'ip_address'] self.ip_address_type = attributes[:'ipAddressType'] if attributes[:'ipAddressType'] raise 'You cannot provide both :ipAddressType and :ip_address_type' if attributes.key?(:'ipAddressType') && attributes.key?(:'ip_address_type') self.ip_address_type = attributes[:'ip_address_type'] if attributes[:'ip_address_type'] self.ip_classification_type = attributes[:'ipClassificationType'] if attributes[:'ipClassificationType'] raise 'You cannot provide both :ipClassificationType and :ip_classification_type' if attributes.key?(:'ipClassificationType') && attributes.key?(:'ip_classification_type') self.ip_classification_type = attributes[:'ip_classification_type'] if attributes[:'ip_classification_type'] self.country = attributes[:'country'] if attributes[:'country'] self.latitude = attributes[:'latitude'] if attributes[:'latitude'] self.longitude = attributes[:'longitude'] if attributes[:'longitude'] self.asn_number = attributes[:'asnNumber'] if attributes[:'asnNumber'] raise 'You cannot provide both :asnNumber and :asn_number' if attributes.key?(:'asnNumber') && attributes.key?(:'asn_number') self.asn_number = attributes[:'asn_number'] if attributes[:'asn_number'] self.regions = attributes[:'regions'] if attributes[:'regions'] self.services = attributes[:'services'] if attributes[:'services'] 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.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.time_first_occurred = attributes[:'timeFirstOccurred'] if attributes[:'timeFirstOccurred'] raise 'You cannot provide both :timeFirstOccurred and :time_first_occurred' if attributes.key?(:'timeFirstOccurred') && attributes.key?(:'time_first_occurred') self.time_first_occurred = attributes[:'time_first_occurred'] if attributes[:'time_first_occurred'] self.time_last_occurred = attributes[:'timeLastOccurred'] if attributes[:'timeLastOccurred'] raise 'You cannot provide both :timeLastOccurred and :time_last_occurred' if attributes.key?(:'timeLastOccurred') && attributes.key?(:'time_last_occurred') self.time_last_occurred = attributes[:'time_last_occurred'] if attributes[:'time_last_occurred'] end |
Instance Attribute Details
#asn_number ⇒ String
ASN number of sighting
57 58 59 |
# File 'lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb', line 57 def asn_number @asn_number end |
#country ⇒ String
Country of sighting
45 46 47 |
# File 'lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb', line 45 def country @country end |
#id ⇒ String
[Required] Unique identifier for sighting endpoints
13 14 15 |
# File 'lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb', line 13 def id @id end |
#ip_address ⇒ String
[Required] IP address for sighting
33 34 35 |
# File 'lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb', line 33 def ip_address @ip_address end |
#ip_address_type ⇒ String
[Required] Type of IP address for sighting
37 38 39 |
# File 'lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb', line 37 def ip_address_type @ip_address_type end |
#ip_classification_type ⇒ String
IP address classification type
41 42 43 |
# File 'lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb', line 41 def ip_classification_type @ip_classification_type end |
#latitude ⇒ Float
Latitude of sighting
49 50 51 |
# File 'lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb', line 49 def latitude @latitude end |
#longitude ⇒ Float
Longitude of sighting
53 54 55 |
# File 'lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb', line 53 def longitude @longitude end |
#problem_id ⇒ String
Problem ID for sighting endpoints
21 22 23 |
# File 'lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb', line 21 def problem_id @problem_id end |
#regions ⇒ Array<String>
Regions where activities were performed from this IP address
61 62 63 |
# File 'lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb', line 61 def regions @regions end |
#resource_profile_id ⇒ String
[Required] Resource profile ID associated with the impacted resource
17 18 19 |
# File 'lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb', line 17 def resource_profile_id @resource_profile_id end |
#services ⇒ Array<String>
List of services where activities were performed from this IP address
65 66 67 |
# File 'lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb', line 65 def services @services end |
#sighting_type ⇒ String
[Required] Type of sighting for sighting endpoints
25 26 27 |
# File 'lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb', line 25 def sighting_type @sighting_type end |
#sighting_type_display_name ⇒ String
[Required] Display name of the sighting type
29 30 31 |
# File 'lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb', line 29 def sighting_type_display_name @sighting_type_display_name end |
#time_first_detected ⇒ DateTime
Time the activities were first detected.
69 70 71 |
# File 'lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb', line 69 def time_first_detected @time_first_detected end |
#time_first_occurred ⇒ DateTime
Time the activities were first performed.
77 78 79 |
# File 'lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb', line 77 def time_first_occurred @time_first_occurred end |
#time_last_detected ⇒ DateTime
[Required] Time the activities were last detected.
73 74 75 |
# File 'lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb', line 73 def time_last_detected @time_last_detected end |
#time_last_occurred ⇒ DateTime
Time the activities were last performed.
81 82 83 |
# File 'lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb', line 81 def time_last_occurred @time_last_occurred end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
# File 'lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb', line 84 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'id': :'id', 'resource_profile_id': :'resourceProfileId', 'problem_id': :'problemId', 'sighting_type': :'sightingType', 'sighting_type_display_name': :'sightingTypeDisplayName', 'ip_address': :'ipAddress', 'ip_address_type': :'ipAddressType', 'ip_classification_type': :'ipClassificationType', 'country': :'country', 'latitude': :'latitude', 'longitude': :'longitude', 'asn_number': :'asnNumber', 'regions': :'regions', 'services': :'services', 'time_first_detected': :'timeFirstDetected', 'time_last_detected': :'timeLastDetected', 'time_first_occurred': :'timeFirstOccurred', 'time_last_occurred': :'timeLastOccurred' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
# File 'lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb', line 110 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'id': :'String', 'resource_profile_id': :'String', 'problem_id': :'String', 'sighting_type': :'String', 'sighting_type_display_name': :'String', 'ip_address': :'String', 'ip_address_type': :'String', 'ip_classification_type': :'String', 'country': :'String', 'latitude': :'Float', 'longitude': :'Float', 'asn_number': :'String', 'regions': :'Array<String>', 'services': :'Array<String>', 'time_first_detected': :'DateTime', 'time_last_detected': :'DateTime', 'time_first_occurred': :'DateTime', 'time_last_occurred': :'DateTime' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 |
# File 'lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb', line 257 def ==(other) return true if equal?(other) self.class == other.class && id == other.id && resource_profile_id == other.resource_profile_id && problem_id == other.problem_id && sighting_type == other.sighting_type && sighting_type_display_name == other.sighting_type_display_name && ip_address == other.ip_address && ip_address_type == other.ip_address_type && ip_classification_type == other.ip_classification_type && country == other.country && latitude == other.latitude && longitude == other.longitude && asn_number == other.asn_number && regions == other.regions && services == other.services && time_first_detected == other.time_first_detected && time_last_detected == other.time_last_detected && time_first_occurred == other.time_first_occurred && time_last_occurred == other.time_last_occurred end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 |
# File 'lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb', line 304 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
284 285 286 |
# File 'lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb', line 284 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
293 294 295 |
# File 'lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb', line 293 def hash [id, resource_profile_id, problem_id, sighting_type, sighting_type_display_name, ip_address, ip_address_type, ip_classification_type, country, latitude, longitude, asn_number, regions, services, time_first_detected, time_last_detected, time_first_occurred, time_last_occurred].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
337 338 339 340 341 342 343 344 345 346 |
# File 'lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb', line 337 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
331 332 333 |
# File 'lib/oci/cloud_guard/models/resource_profile_endpoint_summary.rb', line 331 def to_s to_hash.to_s end |