Class: OCI::Audit::Models::AuditEvent
- Inherits:
-
Object
- Object
- OCI::Audit::Models::AuditEvent
- Defined in:
- lib/oci/audit/models/audit_event.rb
Overview
AuditEvent model.
Instance Attribute Summary collapse
-
#compartment_id ⇒ String
The OCID of the compartment.
-
#credential_id ⇒ String
The credential ID of the user.
-
#event_id ⇒ String
The GUID of the event.
-
#event_name ⇒ String
The name of the event.
-
#event_source ⇒ String
The source of the event.
-
#event_time ⇒ DateTime
The time the event occurred, expressed in [RFC 3339](tools.ietf.org/html/rfc3339) timestamp format.
-
#event_type ⇒ String
The type of the event.
-
#principal_id ⇒ String
The OCID of the user whose action triggered the event.
-
#request_action ⇒ String
The HTTP method of the request.
-
#request_agent ⇒ String
The user agent of the client that made the request.
-
#request_headers ⇒ Hash<String, Array<String>>
The HTTP header fields and values in the request.
-
#request_id ⇒ String
The opc-request-id of the request.
-
#request_origin ⇒ String
The IP address of the source of the request.
-
#request_parameters ⇒ Hash<String, Array<String>>
The query parameter fields and values for the request.
-
#request_resource ⇒ String
The resource targeted by the request.
-
#response_headers ⇒ Hash<String, Array<String>>
The headers of the response.
-
#response_payload ⇒ Hash<String, Object>
Metadata of interest from the response payload.
-
#response_status ⇒ String
The status code of the response.
-
#response_time ⇒ DateTime
The time of the response to the audited request, expressed in [RFC 3339](tools.ietf.org/html/rfc3339) timestamp format.
-
#tenant_id ⇒ String
The OCID of the tenant.
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 = {}) ⇒ AuditEvent
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 = {}) ⇒ AuditEvent
Initializes the object
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 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 |
# File 'lib/oci/audit/models/audit_event.rb', line 173 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.tenant_id = attributes[:'tenantId'] if attributes[:'tenantId'] raise 'You cannot provide both :tenantId and :tenant_id' if attributes.key?(:'tenantId') && attributes.key?(:'tenant_id') self.tenant_id = attributes[:'tenant_id'] if attributes[:'tenant_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.event_id = attributes[:'eventId'] if attributes[:'eventId'] raise 'You cannot provide both :eventId and :event_id' if attributes.key?(:'eventId') && attributes.key?(:'event_id') self.event_id = attributes[:'event_id'] if attributes[:'event_id'] self.event_name = attributes[:'eventName'] if attributes[:'eventName'] raise 'You cannot provide both :eventName and :event_name' if attributes.key?(:'eventName') && attributes.key?(:'event_name') self.event_name = attributes[:'event_name'] if attributes[:'event_name'] self.event_source = attributes[:'eventSource'] if attributes[:'eventSource'] raise 'You cannot provide both :eventSource and :event_source' if attributes.key?(:'eventSource') && attributes.key?(:'event_source') self.event_source = attributes[:'event_source'] if attributes[:'event_source'] self.event_type = attributes[:'eventType'] if attributes[:'eventType'] raise 'You cannot provide both :eventType and :event_type' if attributes.key?(:'eventType') && attributes.key?(:'event_type') self.event_type = attributes[:'event_type'] if attributes[:'event_type'] self.event_time = attributes[:'eventTime'] if attributes[:'eventTime'] raise 'You cannot provide both :eventTime and :event_time' if attributes.key?(:'eventTime') && attributes.key?(:'event_time') self.event_time = attributes[:'event_time'] if attributes[:'event_time'] self.principal_id = attributes[:'principalId'] if attributes[:'principalId'] raise 'You cannot provide both :principalId and :principal_id' if attributes.key?(:'principalId') && attributes.key?(:'principal_id') self.principal_id = attributes[:'principal_id'] if attributes[:'principal_id'] self.credential_id = attributes[:'credentialId'] if attributes[:'credentialId'] raise 'You cannot provide both :credentialId and :credential_id' if attributes.key?(:'credentialId') && attributes.key?(:'credential_id') self.credential_id = attributes[:'credential_id'] if attributes[:'credential_id'] self.request_action = attributes[:'requestAction'] if attributes[:'requestAction'] raise 'You cannot provide both :requestAction and :request_action' if attributes.key?(:'requestAction') && attributes.key?(:'request_action') self.request_action = attributes[:'request_action'] if attributes[:'request_action'] self.request_id = attributes[:'requestId'] if attributes[:'requestId'] raise 'You cannot provide both :requestId and :request_id' if attributes.key?(:'requestId') && attributes.key?(:'request_id') self.request_id = attributes[:'request_id'] if attributes[:'request_id'] self.request_agent = attributes[:'requestAgent'] if attributes[:'requestAgent'] raise 'You cannot provide both :requestAgent and :request_agent' if attributes.key?(:'requestAgent') && attributes.key?(:'request_agent') self.request_agent = attributes[:'request_agent'] if attributes[:'request_agent'] self.request_headers = attributes[:'requestHeaders'] if attributes[:'requestHeaders'] raise 'You cannot provide both :requestHeaders and :request_headers' if attributes.key?(:'requestHeaders') && attributes.key?(:'request_headers') self.request_headers = attributes[:'request_headers'] if attributes[:'request_headers'] self.request_origin = attributes[:'requestOrigin'] if attributes[:'requestOrigin'] raise 'You cannot provide both :requestOrigin and :request_origin' if attributes.key?(:'requestOrigin') && attributes.key?(:'request_origin') self.request_origin = attributes[:'request_origin'] if attributes[:'request_origin'] self.request_parameters = attributes[:'requestParameters'] if attributes[:'requestParameters'] raise 'You cannot provide both :requestParameters and :request_parameters' if attributes.key?(:'requestParameters') && attributes.key?(:'request_parameters') self.request_parameters = attributes[:'request_parameters'] if attributes[:'request_parameters'] self.request_resource = attributes[:'requestResource'] if attributes[:'requestResource'] raise 'You cannot provide both :requestResource and :request_resource' if attributes.key?(:'requestResource') && attributes.key?(:'request_resource') self.request_resource = attributes[:'request_resource'] if attributes[:'request_resource'] self.response_headers = attributes[:'responseHeaders'] if attributes[:'responseHeaders'] raise 'You cannot provide both :responseHeaders and :response_headers' if attributes.key?(:'responseHeaders') && attributes.key?(:'response_headers') self.response_headers = attributes[:'response_headers'] if attributes[:'response_headers'] self.response_status = attributes[:'responseStatus'] if attributes[:'responseStatus'] raise 'You cannot provide both :responseStatus and :response_status' if attributes.key?(:'responseStatus') && attributes.key?(:'response_status') self.response_status = attributes[:'response_status'] if attributes[:'response_status'] self.response_time = attributes[:'responseTime'] if attributes[:'responseTime'] raise 'You cannot provide both :responseTime and :response_time' if attributes.key?(:'responseTime') && attributes.key?(:'response_time') self.response_time = attributes[:'response_time'] if attributes[:'response_time'] self.response_payload = attributes[:'responsePayload'] if attributes[:'responsePayload'] raise 'You cannot provide both :responsePayload and :response_payload' if attributes.key?(:'responsePayload') && attributes.key?(:'response_payload') self.response_payload = attributes[:'response_payload'] if attributes[:'response_payload'] end |
Instance Attribute Details
#compartment_id ⇒ String
The OCID of the compartment.
15 16 17 |
# File 'lib/oci/audit/models/audit_event.rb', line 15 def compartment_id @compartment_id end |
#credential_id ⇒ String
The credential ID of the user. This value is extracted from the HTTP ‘Authorization’ request header. It consists of the tenantId, userId, and user fingerprint, all delimited by a slash (/).
45 46 47 |
# File 'lib/oci/audit/models/audit_event.rb', line 45 def credential_id @credential_id end |
#event_id ⇒ String
The GUID of the event.
19 20 21 |
# File 'lib/oci/audit/models/audit_event.rb', line 19 def event_id @event_id end |
#event_name ⇒ String
The name of the event. Example: ‘LaunchInstance`
25 26 27 |
# File 'lib/oci/audit/models/audit_event.rb', line 25 def event_name @event_name end |
#event_source ⇒ String
The source of the event.
29 30 31 |
# File 'lib/oci/audit/models/audit_event.rb', line 29 def event_source @event_source end |
#event_time ⇒ DateTime
The time the event occurred, expressed in [RFC 3339](tools.ietf.org/html/rfc3339) timestamp format.
37 38 39 |
# File 'lib/oci/audit/models/audit_event.rb', line 37 def event_time @event_time end |
#event_type ⇒ String
The type of the event.
33 34 35 |
# File 'lib/oci/audit/models/audit_event.rb', line 33 def event_type @event_type end |
#principal_id ⇒ String
The OCID of the user whose action triggered the event.
41 42 43 |
# File 'lib/oci/audit/models/audit_event.rb', line 41 def principal_id @principal_id end |
#request_action ⇒ String
The HTTP method of the request.
49 50 51 |
# File 'lib/oci/audit/models/audit_event.rb', line 49 def request_action @request_action end |
#request_agent ⇒ String
The user agent of the client that made the request.
57 58 59 |
# File 'lib/oci/audit/models/audit_event.rb', line 57 def request_agent @request_agent end |
#request_headers ⇒ Hash<String, Array<String>>
The HTTP header fields and values in the request.
61 62 63 |
# File 'lib/oci/audit/models/audit_event.rb', line 61 def request_headers @request_headers end |
#request_id ⇒ String
The opc-request-id of the request.
53 54 55 |
# File 'lib/oci/audit/models/audit_event.rb', line 53 def request_id @request_id end |
#request_origin ⇒ String
The IP address of the source of the request.
65 66 67 |
# File 'lib/oci/audit/models/audit_event.rb', line 65 def request_origin @request_origin end |
#request_parameters ⇒ Hash<String, Array<String>>
The query parameter fields and values for the request.
69 70 71 |
# File 'lib/oci/audit/models/audit_event.rb', line 69 def request_parameters @request_parameters end |
#request_resource ⇒ String
The resource targeted by the request.
73 74 75 |
# File 'lib/oci/audit/models/audit_event.rb', line 73 def request_resource @request_resource end |
#response_headers ⇒ Hash<String, Array<String>>
The headers of the response.
77 78 79 |
# File 'lib/oci/audit/models/audit_event.rb', line 77 def response_headers @response_headers end |
#response_payload ⇒ Hash<String, Object>
Metadata of interest from the response payload. For example, the OCID of a resource.
89 90 91 |
# File 'lib/oci/audit/models/audit_event.rb', line 89 def response_payload @response_payload end |
#response_status ⇒ String
The status code of the response.
81 82 83 |
# File 'lib/oci/audit/models/audit_event.rb', line 81 def response_status @response_status end |
#response_time ⇒ DateTime
The time of the response to the audited request, expressed in [RFC 3339](tools.ietf.org/html/rfc3339) timestamp format.
85 86 87 |
# File 'lib/oci/audit/models/audit_event.rb', line 85 def response_time @response_time end |
#tenant_id ⇒ String
The OCID of the tenant.
11 12 13 |
# File 'lib/oci/audit/models/audit_event.rb', line 11 def tenant_id @tenant_id end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
# File 'lib/oci/audit/models/audit_event.rb', line 92 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'tenant_id': :'tenantId', 'compartment_id': :'compartmentId', 'event_id': :'eventId', 'event_name': :'eventName', 'event_source': :'eventSource', 'event_type': :'eventType', 'event_time': :'eventTime', 'principal_id': :'principalId', 'credential_id': :'credentialId', 'request_action': :'requestAction', 'request_id': :'requestId', 'request_agent': :'requestAgent', 'request_headers': :'requestHeaders', 'request_origin': :'requestOrigin', 'request_parameters': :'requestParameters', 'request_resource': :'requestResource', 'response_headers': :'responseHeaders', 'response_status': :'responseStatus', 'response_time': :'responseTime', 'response_payload': :'responsePayload' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
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 |
# File 'lib/oci/audit/models/audit_event.rb', line 120 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'tenant_id': :'String', 'compartment_id': :'String', 'event_id': :'String', 'event_name': :'String', 'event_source': :'String', 'event_type': :'String', 'event_time': :'DateTime', 'principal_id': :'String', 'credential_id': :'String', 'request_action': :'String', 'request_id': :'String', 'request_agent': :'String', 'request_headers': :'Hash<String, Array<String>>', 'request_origin': :'String', 'request_parameters': :'Hash<String, Array<String>>', 'request_resource': :'String', 'response_headers': :'Hash<String, Array<String>>', 'response_status': :'String', 'response_time': :'DateTime', 'response_payload': :'Hash<String, Object>' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 |
# File 'lib/oci/audit/models/audit_event.rb', line 307 def ==(other) return true if equal?(other) self.class == other.class && tenant_id == other.tenant_id && compartment_id == other.compartment_id && event_id == other.event_id && event_name == other.event_name && event_source == other.event_source && event_type == other.event_type && event_time == other.event_time && principal_id == other.principal_id && credential_id == other.credential_id && request_action == other.request_action && request_id == other.request_id && request_agent == other.request_agent && request_headers == other.request_headers && request_origin == other.request_origin && request_parameters == other.request_parameters && request_resource == other.request_resource && response_headers == other.response_headers && response_status == other.response_status && response_time == other.response_time && response_payload == other.response_payload end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 |
# File 'lib/oci/audit/models/audit_event.rb', line 355 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
335 336 337 |
# File 'lib/oci/audit/models/audit_event.rb', line 335 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
344 345 346 |
# File 'lib/oci/audit/models/audit_event.rb', line 344 def hash [tenant_id, compartment_id, event_id, event_name, event_source, event_type, event_time, principal_id, credential_id, request_action, request_id, request_agent, request_headers, request_origin, request_parameters, request_resource, response_headers, response_status, response_time, response_payload].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
387 388 389 390 391 392 393 394 395 |
# File 'lib/oci/audit/models/audit_event.rb', line 387 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
381 382 383 |
# File 'lib/oci/audit/models/audit_event.rb', line 381 def to_s to_hash.to_s end |