Class: OCI::OsManagementHub::Models::KernelEventData
- Inherits:
-
Object
- Object
- OCI::OsManagementHub::Models::KernelEventData
- Defined in:
- lib/oci/os_management_hub/models/kernel_event_data.rb
Overview
Information about the kernel event.
Instance Attribute Summary collapse
- #additional_details ⇒ OCI::OsManagementHub::Models::KernelEventAdditionalDetails
-
#content ⇒ OCI::OsManagementHub::Models::KernelEventContent
This attribute is required.
-
#count ⇒ Integer
[Required] Number of times the event has occurred.
-
#event_fingerprint ⇒ String
[Required] Fingerprint of the event.
-
#reason ⇒ String
[Required] Reason for the event.
-
#time_first_occurred ⇒ DateTime
[Required] The date and time that the event first occurred.
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 = {}) ⇒ KernelEventData
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 = {}) ⇒ KernelEventData
Initializes the object
74 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 |
# File 'lib/oci/os_management_hub/models/kernel_event_data.rb', line 74 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.content = attributes[:'content'] if attributes[:'content'] self.count = attributes[:'count'] if attributes[:'count'] self.event_fingerprint = attributes[:'eventFingerprint'] if attributes[:'eventFingerprint'] raise 'You cannot provide both :eventFingerprint and :event_fingerprint' if attributes.key?(:'eventFingerprint') && attributes.key?(:'event_fingerprint') self.event_fingerprint = attributes[:'event_fingerprint'] if attributes[:'event_fingerprint'] self.reason = attributes[:'reason'] if attributes[:'reason'] 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.additional_details = attributes[:'additionalDetails'] if attributes[:'additionalDetails'] raise 'You cannot provide both :additionalDetails and :additional_details' if attributes.key?(:'additionalDetails') && attributes.key?(:'additional_details') self.additional_details = attributes[:'additional_details'] if attributes[:'additional_details'] end |
Instance Attribute Details
#additional_details ⇒ OCI::OsManagementHub::Models::KernelEventAdditionalDetails
32 33 34 |
# File 'lib/oci/os_management_hub/models/kernel_event_data.rb', line 32 def additional_details @additional_details end |
#content ⇒ OCI::OsManagementHub::Models::KernelEventContent
This attribute is required.
13 14 15 |
# File 'lib/oci/os_management_hub/models/kernel_event_data.rb', line 13 def content @content end |
#count ⇒ Integer
[Required] Number of times the event has occurred.
17 18 19 |
# File 'lib/oci/os_management_hub/models/kernel_event_data.rb', line 17 def count @count end |
#event_fingerprint ⇒ String
[Required] Fingerprint of the event.
21 22 23 |
# File 'lib/oci/os_management_hub/models/kernel_event_data.rb', line 21 def event_fingerprint @event_fingerprint end |
#reason ⇒ String
[Required] Reason for the event.
25 26 27 |
# File 'lib/oci/os_management_hub/models/kernel_event_data.rb', line 25 def reason @reason end |
#time_first_occurred ⇒ DateTime
[Required] The date and time that the event first occurred.
29 30 31 |
# File 'lib/oci/os_management_hub/models/kernel_event_data.rb', line 29 def time_first_occurred @time_first_occurred end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/oci/os_management_hub/models/kernel_event_data.rb', line 35 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'content': :'content', 'count': :'count', 'event_fingerprint': :'eventFingerprint', 'reason': :'reason', 'time_first_occurred': :'timeFirstOccurred', 'additional_details': :'additionalDetails' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'lib/oci/os_management_hub/models/kernel_event_data.rb', line 49 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'content': :'OCI::OsManagementHub::Models::KernelEventContent', 'count': :'Integer', 'event_fingerprint': :'String', 'reason': :'String', 'time_first_occurred': :'DateTime', 'additional_details': :'OCI::OsManagementHub::Models::KernelEventAdditionalDetails' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
112 113 114 115 116 117 118 119 120 121 122 |
# File 'lib/oci/os_management_hub/models/kernel_event_data.rb', line 112 def ==(other) return true if equal?(other) self.class == other.class && content == other.content && count == other.count && event_fingerprint == other.event_fingerprint && reason == other.reason && time_first_occurred == other.time_first_occurred && additional_details == other.additional_details end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 |
# File 'lib/oci/os_management_hub/models/kernel_event_data.rb', line 147 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
127 128 129 |
# File 'lib/oci/os_management_hub/models/kernel_event_data.rb', line 127 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
136 137 138 |
# File 'lib/oci/os_management_hub/models/kernel_event_data.rb', line 136 def hash [content, count, event_fingerprint, reason, time_first_occurred, additional_details].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
180 181 182 183 184 185 186 187 188 189 |
# File 'lib/oci/os_management_hub/models/kernel_event_data.rb', line 180 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
174 175 176 |
# File 'lib/oci/os_management_hub/models/kernel_event_data.rb', line 174 def to_s to_hash.to_s end |