Class: OCI::OsManagementHub::Models::Erratum

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/os_management_hub/models/erratum.rb

Overview

Details about the erratum.

Constant Summary collapse

CLASSIFICATION_TYPE_ENUM =
[
  CLASSIFICATION_TYPE_SECURITY = 'SECURITY'.freeze,
  CLASSIFICATION_TYPE_BUGFIX = 'BUGFIX'.freeze,
  CLASSIFICATION_TYPE_ENHANCEMENT = 'ENHANCEMENT'.freeze,
  CLASSIFICATION_TYPE_OTHER = 'OTHER'.freeze,
  CLASSIFICATION_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
ADVISORY_SEVERITY_ENUM =
[
  ADVISORY_SEVERITY_LOW = 'LOW'.freeze,
  ADVISORY_SEVERITY_MODERATE = 'MODERATE'.freeze,
  ADVISORY_SEVERITY_IMPORTANT = 'IMPORTANT'.freeze,
  ADVISORY_SEVERITY_CRITICAL = 'CRITICAL'.freeze,
  ADVISORY_SEVERITY_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ Erratum

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :name (String)

    The value to assign to the #name property

  • :synopsis (String)

    The value to assign to the #synopsis property

  • :time_issued (DateTime)

    The value to assign to the #time_issued property

  • :description (String)

    The value to assign to the #description property

  • :time_updated (DateTime)

    The value to assign to the #time_updated property

  • :classification_type (String)

    The value to assign to the #classification_type property

  • :from (String)

    The value to assign to the #from property

  • :solution (String)

    The value to assign to the #solution property

  • :references (String)

    The value to assign to the #references property

  • :related_cves (Array<String>)

    The value to assign to the #related_cves property

  • :repositories (Array<String>)

    The value to assign to the #repositories property

  • :packages (Array<OCI::OsManagementHub::Models::SoftwarePackageSummary>)

    The value to assign to the #packages property

  • :os_families (Array<OCI::OsManagementHub::Models::OsFamily>)

    The value to assign to the #os_families property

  • :advisory_severity (String)

    The value to assign to the #advisory_severity property



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
# File 'lib/oci/os_management_hub/models/erratum.rb', line 152

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.name = attributes[:'name'] if attributes[:'name']

  self.synopsis = attributes[:'synopsis'] if attributes[:'synopsis']

  self.time_issued = attributes[:'timeIssued'] if attributes[:'timeIssued']

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

  self.time_issued = attributes[:'time_issued'] if attributes[:'time_issued']

  self.description = attributes[:'description'] if attributes[:'description']

  self.time_updated = attributes[:'timeUpdated'] if attributes[:'timeUpdated']

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

  self.time_updated = attributes[:'time_updated'] if attributes[:'time_updated']

  self.classification_type = attributes[:'classificationType'] if attributes[:'classificationType']

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

  self.classification_type = attributes[:'classification_type'] if attributes[:'classification_type']

  self.from = attributes[:'from'] if attributes[:'from']

  self.solution = attributes[:'solution'] if attributes[:'solution']

  self.references = attributes[:'references'] if attributes[:'references']

  self.related_cves = attributes[:'relatedCves'] if attributes[:'relatedCves']

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

  self.related_cves = attributes[:'related_cves'] if attributes[:'related_cves']

  self.repositories = attributes[:'repositories'] if attributes[:'repositories']

  self.packages = attributes[:'packages'] if attributes[:'packages']

  self.os_families = attributes[:'osFamilies'] if attributes[:'osFamilies']

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

  self.os_families = attributes[:'os_families'] if attributes[:'os_families']

  self.advisory_severity = attributes[:'advisorySeverity'] if attributes[:'advisorySeverity']

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

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

Instance Attribute Details

#advisory_severityString

The severity for a security advisory, otherwise, null.

Returns:

  • (String)


86
87
88
# File 'lib/oci/os_management_hub/models/erratum.rb', line 86

def advisory_severity
  @advisory_severity
end

#classification_typeString

Type of the erratum.

Returns:

  • (String)


54
55
56
# File 'lib/oci/os_management_hub/models/erratum.rb', line 54

def classification_type
  @classification_type
end

#descriptionString

Details describing the erratum.

Returns:

  • (String)


44
45
46
# File 'lib/oci/os_management_hub/models/erratum.rb', line 44

def description
  @description
end

#fromString

Information specifying from where the erratum was release.

Returns:

  • (String)


58
59
60
# File 'lib/oci/os_management_hub/models/erratum.rb', line 58

def from
  @from
end

#nameString

[Required] Advisory name.

Returns:

  • (String)


30
31
32
# File 'lib/oci/os_management_hub/models/erratum.rb', line 30

def name
  @name
end

#os_familiesArray<OCI::OsManagementHub::Models::OsFamily>

List of affected OS families.

Returns:

  • (Array<OCI::OsManagementHub::Models::OsFamily>)


82
83
84
# File 'lib/oci/os_management_hub/models/erratum.rb', line 82

def os_families
  @os_families
end

#packagesArray<OCI::OsManagementHub::Models::SoftwarePackageSummary>

List of Packages affected by this erratum.



78
79
80
# File 'lib/oci/os_management_hub/models/erratum.rb', line 78

def packages
  @packages
end

#referencesString

Information describing how to find more information about. the erratum.

Returns:

  • (String)


66
67
68
# File 'lib/oci/os_management_hub/models/erratum.rb', line 66

def references
  @references
end

List of CVEs applicable to this erratum.

Returns:

  • (Array<String>)


70
71
72
# File 'lib/oci/os_management_hub/models/erratum.rb', line 70

def related_cves
  @related_cves
end

#repositoriesArray<String>

List of repository identifiers.

Returns:

  • (Array<String>)


74
75
76
# File 'lib/oci/os_management_hub/models/erratum.rb', line 74

def repositories
  @repositories
end

#solutionString

Information describing how the erratum can be resolved.

Returns:

  • (String)


62
63
64
# File 'lib/oci/os_management_hub/models/erratum.rb', line 62

def solution
  @solution
end

#synopsisString

Summary description of the erratum.

Returns:

  • (String)


34
35
36
# File 'lib/oci/os_management_hub/models/erratum.rb', line 34

def synopsis
  @synopsis
end

#time_issuedDateTime

Date the erratum was issued, as described in RFC 3339, section 14.29.

Returns:

  • (DateTime)


40
41
42
# File 'lib/oci/os_management_hub/models/erratum.rb', line 40

def time_issued
  @time_issued
end

#time_updatedDateTime

Most recent date the erratum was updated, as described in RFC 3339, section 14.29.

Returns:

  • (DateTime)


50
51
52
# File 'lib/oci/os_management_hub/models/erratum.rb', line 50

def time_updated
  @time_updated
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# File 'lib/oci/os_management_hub/models/erratum.rb', line 89

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'name': :'name',
    'synopsis': :'synopsis',
    'time_issued': :'timeIssued',
    'description': :'description',
    'time_updated': :'timeUpdated',
    'classification_type': :'classificationType',
    'from': :'from',
    'solution': :'solution',
    'references': :'references',
    'related_cves': :'relatedCves',
    'repositories': :'repositories',
    'packages': :'packages',
    'os_families': :'osFamilies',
    'advisory_severity': :'advisorySeverity'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# File 'lib/oci/os_management_hub/models/erratum.rb', line 111

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'name': :'String',
    'synopsis': :'String',
    'time_issued': :'DateTime',
    'description': :'String',
    'time_updated': :'DateTime',
    'classification_type': :'String',
    'from': :'String',
    'solution': :'String',
    'references': :'String',
    'related_cves': :'Array<String>',
    'repositories': :'Array<String>',
    'packages': :'Array<OCI::OsManagementHub::Models::SoftwarePackageSummary>',
    'os_families': :'Array<OCI::OsManagementHub::Models::OsFamily>',
    'advisory_severity': :'String'
    # rubocop:enable Style/SymbolLiteral
  }
end

Instance Method Details

#==(other) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • other (Object)

    the other object to be compared



244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
# File 'lib/oci/os_management_hub/models/erratum.rb', line 244

def ==(other)
  return true if equal?(other)

  self.class == other.class &&
    name == other.name &&
    synopsis == other.synopsis &&
    time_issued == other.time_issued &&
    description == other.description &&
    time_updated == other.time_updated &&
    classification_type == other.classification_type &&
    from == other.from &&
    solution == other.solution &&
    references == other.references &&
    related_cves == other.related_cves &&
    repositories == other.repositories &&
    packages == other.packages &&
    os_families == other.os_families &&
    advisory_severity == other.advisory_severity
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



287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
# File 'lib/oci/os_management_hub/models/erratum.rb', line 287

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

Parameters:

  • other (Object)

    the other object to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


267
268
269
# File 'lib/oci/os_management_hub/models/erratum.rb', line 267

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



276
277
278
# File 'lib/oci/os_management_hub/models/erratum.rb', line 276

def hash
  [name, synopsis, time_issued, description, time_updated, classification_type, from, solution, references, related_cves, repositories, packages, os_families, advisory_severity].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



320
321
322
323
324
325
326
327
328
329
# File 'lib/oci/os_management_hub/models/erratum.rb', line 320

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



314
315
316
# File 'lib/oci/os_management_hub/models/erratum.rb', line 314

def to_s
  to_hash.to_s
end