Class: OCI::Audit::Models::AuditEvent

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/audit/models/audit_event.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ AuditEvent

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash

Options Hash (attributes):

  • :tenant_id (String)

    The value to assign to the #tenant_id property

  • :compartment_id (String)

    The value to assign to the #compartment_id property

  • :event_id (String)

    The value to assign to the #event_id property

  • :event_source (String)

    The value to assign to the #event_source property

  • :event_type (String)

    The value to assign to the #event_type property

  • :event_time (DateTime)

    The value to assign to the #event_time property

  • :principal_id (String)

    The value to assign to the #principal_id property

  • :credential_id (String)

    The value to assign to the #credential_id property

  • :request_action (String)

    The value to assign to the #request_action property

  • :request_id (String)

    The value to assign to the #request_id property

  • :request_agent (String)

    The value to assign to the #request_agent property

  • :request_headers (Hash<String, Array<String>>)

    The value to assign to the #request_headers property

  • :request_origin (String)

    The value to assign to the #request_origin property

  • :request_parameters (Hash<String, Array<String>>)

    The value to assign to the #request_parameters property

  • :request_resource (String)

    The value to assign to the #request_resource property

  • :response_headers (Hash<String, Array<String>>)

    The value to assign to the #response_headers property

  • :response_status (String)

    The value to assign to the #response_status property

  • :response_time (DateTime)

    The value to assign to the #response_time property

  • :response_payload (Hash<String, Object>)

    The value to assign to the #response_payload property



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
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
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
299
300
301
# File 'lib/oci/audit/models/audit_event.rb', line 105

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}

  if attributes[:'tenantId']
    self.tenant_id = attributes[:'tenantId']
  end

  raise 'You cannot provide both :tenantId and :tenant_id' if attributes.key?(:'tenantId') && attributes.key?(:'tenant_id')

  if attributes[:'tenant_id']
    self.tenant_id = attributes[:'tenant_id']
  end

  if attributes[:'compartmentId']
    self.compartment_id = attributes[:'compartmentId']
  end

  raise 'You cannot provide both :compartmentId and :compartment_id' if attributes.key?(:'compartmentId') && attributes.key?(:'compartment_id')

  if attributes[:'compartment_id']
    self.compartment_id = attributes[:'compartment_id']
  end

  if attributes[:'eventId']
    self.event_id = attributes[:'eventId']
  end

  raise 'You cannot provide both :eventId and :event_id' if attributes.key?(:'eventId') && attributes.key?(:'event_id')

  if attributes[:'event_id']
    self.event_id = attributes[:'event_id']
  end

  if attributes[:'eventSource']
    self.event_source = attributes[:'eventSource']
  end

  raise 'You cannot provide both :eventSource and :event_source' if attributes.key?(:'eventSource') && attributes.key?(:'event_source')

  if attributes[:'event_source']
    self.event_source = attributes[:'event_source']
  end

  if attributes[:'eventType']
    self.event_type = attributes[:'eventType']
  end

  raise 'You cannot provide both :eventType and :event_type' if attributes.key?(:'eventType') && attributes.key?(:'event_type')

  if attributes[:'event_type']
    self.event_type = attributes[:'event_type']
  end

  if attributes[:'eventTime']
    self.event_time = attributes[:'eventTime']
  end

  raise 'You cannot provide both :eventTime and :event_time' if attributes.key?(:'eventTime') && attributes.key?(:'event_time')

  if attributes[:'event_time']
    self.event_time = attributes[:'event_time']
  end

  if attributes[:'principalId']
    self.principal_id = attributes[:'principalId']
  end

  raise 'You cannot provide both :principalId and :principal_id' if attributes.key?(:'principalId') && attributes.key?(:'principal_id')

  if attributes[:'principal_id']
    self.principal_id = attributes[:'principal_id']
  end

  if attributes[:'credentialId']
    self.credential_id = attributes[:'credentialId']
  end

  raise 'You cannot provide both :credentialId and :credential_id' if attributes.key?(:'credentialId') && attributes.key?(:'credential_id')

  if attributes[:'credential_id']
    self.credential_id = attributes[:'credential_id']
  end

  if attributes[:'requestAction']
    self.request_action = attributes[:'requestAction']
  end

  raise 'You cannot provide both :requestAction and :request_action' if attributes.key?(:'requestAction') && attributes.key?(:'request_action')

  if attributes[:'request_action']
    self.request_action = attributes[:'request_action']
  end

  if attributes[:'requestId']
    self.request_id = attributes[:'requestId']
  end

  raise 'You cannot provide both :requestId and :request_id' if attributes.key?(:'requestId') && attributes.key?(:'request_id')

  if attributes[:'request_id']
    self.request_id = attributes[:'request_id']
  end

  if attributes[:'requestAgent']
    self.request_agent = attributes[:'requestAgent']
  end

  raise 'You cannot provide both :requestAgent and :request_agent' if attributes.key?(:'requestAgent') && attributes.key?(:'request_agent')

  if attributes[:'request_agent']
    self.request_agent = attributes[:'request_agent']
  end

  if attributes[:'requestHeaders']
    self.request_headers = attributes[:'requestHeaders']
  end

  raise 'You cannot provide both :requestHeaders and :request_headers' if attributes.key?(:'requestHeaders') && attributes.key?(:'request_headers')

  if attributes[:'request_headers']
    self.request_headers = attributes[:'request_headers']
  end

  if attributes[:'requestOrigin']
    self.request_origin = attributes[:'requestOrigin']
  end

  raise 'You cannot provide both :requestOrigin and :request_origin' if attributes.key?(:'requestOrigin') && attributes.key?(:'request_origin')

  if attributes[:'request_origin']
    self.request_origin = attributes[:'request_origin']
  end

  if attributes[:'requestParameters']
    self.request_parameters = attributes[:'requestParameters']
  end

  raise 'You cannot provide both :requestParameters and :request_parameters' if attributes.key?(:'requestParameters') && attributes.key?(:'request_parameters')

  if attributes[:'request_parameters']
    self.request_parameters = attributes[:'request_parameters']
  end

  if attributes[:'requestResource']
    self.request_resource = attributes[:'requestResource']
  end

  raise 'You cannot provide both :requestResource and :request_resource' if attributes.key?(:'requestResource') && attributes.key?(:'request_resource')

  if attributes[:'request_resource']
    self.request_resource = attributes[:'request_resource']
  end

  if attributes[:'responseHeaders']
    self.response_headers = attributes[:'responseHeaders']
  end

  raise 'You cannot provide both :responseHeaders and :response_headers' if attributes.key?(:'responseHeaders') && attributes.key?(:'response_headers')

  if attributes[:'response_headers']
    self.response_headers = attributes[:'response_headers']
  end

  if attributes[:'responseStatus']
    self.response_status = attributes[:'responseStatus']
  end

  raise 'You cannot provide both :responseStatus and :response_status' if attributes.key?(:'responseStatus') && attributes.key?(:'response_status')

  if attributes[:'response_status']
    self.response_status = attributes[:'response_status']
  end

  if attributes[:'responseTime']
    self.response_time = attributes[:'responseTime']
  end

  raise 'You cannot provide both :responseTime and :response_time' if attributes.key?(:'responseTime') && attributes.key?(:'response_time')

  if attributes[:'response_time']
    self.response_time = attributes[:'response_time']
  end

  if attributes[:'responsePayload']
    self.response_payload = attributes[:'responsePayload']
  end

  raise 'You cannot provide both :responsePayload and :response_payload' if attributes.key?(:'responsePayload') && attributes.key?(:'response_payload')

  if attributes[:'response_payload']
    self.response_payload = attributes[:'response_payload']
  end

end

Instance Attribute Details

#compartment_idString

The OCID of the compartment.

Returns:

  • (String)


13
14
15
# File 'lib/oci/audit/models/audit_event.rb', line 13

def compartment_id
  @compartment_id
end

#credential_idString

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 (/).

Returns:

  • (String)


37
38
39
# File 'lib/oci/audit/models/audit_event.rb', line 37

def credential_id
  @credential_id
end

#event_idString

The GUID of the event.

Returns:

  • (String)


17
18
19
# File 'lib/oci/audit/models/audit_event.rb', line 17

def event_id
  @event_id
end

#event_sourceString

The source of the event.

Returns:

  • (String)


21
22
23
# File 'lib/oci/audit/models/audit_event.rb', line 21

def event_source
  @event_source
end

#event_timeDateTime

The time the event occurred, expressed in [RFC 3339](tools.ietf.org/html/rfc3339) timestamp format.

Returns:

  • (DateTime)


29
30
31
# File 'lib/oci/audit/models/audit_event.rb', line 29

def event_time
  @event_time
end

#event_typeString

The type of the event.

Returns:

  • (String)


25
26
27
# File 'lib/oci/audit/models/audit_event.rb', line 25

def event_type
  @event_type
end

#principal_idString

The OCID of the user whose action triggered the event.

Returns:

  • (String)


33
34
35
# File 'lib/oci/audit/models/audit_event.rb', line 33

def principal_id
  @principal_id
end

#request_actionString

The HTTP method of the request.

Returns:

  • (String)


41
42
43
# File 'lib/oci/audit/models/audit_event.rb', line 41

def request_action
  @request_action
end

#request_agentString

The user agent of the client that made the request.

Returns:

  • (String)


49
50
51
# File 'lib/oci/audit/models/audit_event.rb', line 49

def request_agent
  @request_agent
end

#request_headersHash<String, Array<String>>

The HTTP header fields and values in the request.

Returns:

  • (Hash<String, Array<String>>)


53
54
55
# File 'lib/oci/audit/models/audit_event.rb', line 53

def request_headers
  @request_headers
end

#request_idString

The opc-request-id of the request.

Returns:

  • (String)


45
46
47
# File 'lib/oci/audit/models/audit_event.rb', line 45

def request_id
  @request_id
end

#request_originString

The IP address of the source of the request.

Returns:

  • (String)


57
58
59
# File 'lib/oci/audit/models/audit_event.rb', line 57

def request_origin
  @request_origin
end

#request_parametersHash<String, Array<String>>

The query parameter fields and values for the request.

Returns:

  • (Hash<String, Array<String>>)


61
62
63
# File 'lib/oci/audit/models/audit_event.rb', line 61

def request_parameters
  @request_parameters
end

#request_resourceString

The resource targeted by the request.

Returns:

  • (String)


65
66
67
# File 'lib/oci/audit/models/audit_event.rb', line 65

def request_resource
  @request_resource
end

#response_headersHash<String, Array<String>>

The headers of the response.

Returns:

  • (Hash<String, Array<String>>)


69
70
71
# File 'lib/oci/audit/models/audit_event.rb', line 69

def response_headers
  @response_headers
end

#response_payloadHash<String, Object>

Metadata of interest from the response payload. For example, the OCID of a resource.

Returns:

  • (Hash<String, Object>)


81
82
83
# File 'lib/oci/audit/models/audit_event.rb', line 81

def response_payload
  @response_payload
end

#response_statusString

The status code of the response.

Returns:

  • (String)


73
74
75
# File 'lib/oci/audit/models/audit_event.rb', line 73

def response_status
  @response_status
end

#response_timeDateTime

The time of the response to the audited request, expressed in [RFC 3339](tools.ietf.org/html/rfc3339) timestamp format.

Returns:

  • (DateTime)


77
78
79
# File 'lib/oci/audit/models/audit_event.rb', line 77

def response_time
  @response_time
end

#tenant_idString

The OCID of the tenant.

Returns:

  • (String)


9
10
11
# File 'lib/oci/audit/models/audit_event.rb', line 9

def tenant_id
  @tenant_id
end

Instance Method Details

#==(other_object) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • other_object (Object)

    to be compared



305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
# File 'lib/oci/audit/models/audit_event.rb', line 305

def ==(other_object)
  return true if self.equal?(other_object)
  self.class == other_object.class &&
      tenant_id == other_object.tenant_id &&
      compartment_id == other_object.compartment_id &&
      event_id == other_object.event_id &&
      event_source == other_object.event_source &&
      event_type == other_object.event_type &&
      event_time == other_object.event_time &&
      principal_id == other_object.principal_id &&
      credential_id == other_object.credential_id &&
      request_action == other_object.request_action &&
      request_id == other_object.request_id &&
      request_agent == other_object.request_agent &&
      request_headers == other_object.request_headers &&
      request_origin == other_object.request_origin &&
      request_parameters == other_object.request_parameters &&
      request_resource == other_object.request_resource &&
      response_headers == other_object.response_headers &&
      response_status == other_object.response_status &&
      response_time == other_object.response_time &&
      response_payload == other_object.response_payload
end

#build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
# File 'lib/oci/audit/models/audit_event.rb', line 344

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)
        self.public_method("#{key}=").call(attributes[self.class.attribute_map[key]].map{ |v| OCI::Internal::Util.convert_to_type($1, v) } )
      end
    elsif !attributes[self.class.attribute_map[key]].nil?
      self.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_object) ⇒ Boolean

Parameters:

  • other_object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


331
332
333
# File 'lib/oci/audit/models/audit_event.rb', line 331

def eql?(other_object)
  self == other_object
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



337
338
339
# File 'lib/oci/audit/models/audit_event.rb', line 337

def hash
  [tenant_id, compartment_id, event_id, 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_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



369
370
371
372
373
374
375
376
377
# File 'lib/oci/audit/models/audit_event.rb', line 369

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_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



363
364
365
# File 'lib/oci/audit/models/audit_event.rb', line 363

def to_s
  to_hash.to_s
end