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

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

Overview

An object that defines an 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_TYPE_ENUM =
[
  ADVISORY_TYPE_SECURITY = 'SECURITY'.freeze,
  ADVISORY_TYPE_BUGFIX = 'BUGFIX'.freeze,
  ADVISORY_TYPE_ENHANCEMENT = 'ENHANCEMENT'.freeze,
  ADVISORY_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

  • :advisory_type (String)

    The value to assign to the #advisory_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



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

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

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

  self.advisory_type = attributes[:'advisory_type'] if attributes[:'advisory_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)


95
96
97
# File 'lib/oci/os_management_hub/models/erratum.rb', line 95

def advisory_severity
  @advisory_severity
end

#advisory_typeString

The advisory type of the erratum.

Returns:

  • (String)


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

def advisory_type
  @advisory_type
end

#classification_typeString

Type of the erratum. This property is deprecated and it will be removed in a future API release. Please refer to the advisoryType property instead.

Returns:

  • (String)


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

def classification_type
  @classification_type
end

#descriptionString

Details describing the erratum.

Returns:

  • (String)


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

def description
  @description
end

#fromString

Information specifying from where the erratum was release.

Returns:

  • (String)


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

def from
  @from
end

#nameString

[Required] Advisory name.

Returns:

  • (String)


37
38
39
# File 'lib/oci/os_management_hub/models/erratum.rb', line 37

def name
  @name
end

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

List of affected OS families.

Returns:

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


91
92
93
# File 'lib/oci/os_management_hub/models/erratum.rb', line 91

def os_families
  @os_families
end

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

List of packages affected by this erratum.



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

def packages
  @packages
end

#referencesString

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

Returns:

  • (String)


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

def references
  @references
end

List of CVEs applicable to this erratum.

Returns:

  • (Array<String>)


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

def related_cves
  @related_cves
end

#repositoriesArray<String>

List of repository identifiers.

Returns:

  • (Array<String>)


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

def repositories
  @repositories
end

#solutionString

Information describing how the erratum can be resolved.

Returns:

  • (String)


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

def solution
  @solution
end

#synopsisString

Summary description of the erratum.

Returns:

  • (String)


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

def synopsis
  @synopsis
end

#time_issuedDateTime

The date and time the erratum was issued (in RFC 3339 format).

Returns:

  • (DateTime)


46
47
48
# File 'lib/oci/os_management_hub/models/erratum.rb', line 46

def time_issued
  @time_issued
end

#time_updatedDateTime

The date and time the erratum was updated (in RFC 3339 format).

Returns:

  • (DateTime)


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

def time_updated
  @time_updated
end

Class Method Details

.attribute_mapObject

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



98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# File 'lib/oci/os_management_hub/models/erratum.rb', line 98

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'name': :'name',
    'synopsis': :'synopsis',
    'time_issued': :'timeIssued',
    'description': :'description',
    'time_updated': :'timeUpdated',
    'classification_type': :'classificationType',
    'advisory_type': :'advisoryType',
    '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.



121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# File 'lib/oci/os_management_hub/models/erratum.rb', line 121

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'name': :'String',
    'synopsis': :'String',
    'time_issued': :'DateTime',
    'description': :'String',
    'time_updated': :'DateTime',
    'classification_type': :'String',
    'advisory_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



275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
# File 'lib/oci/os_management_hub/models/erratum.rb', line 275

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 &&
    advisory_type == other.advisory_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



319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
# File 'lib/oci/os_management_hub/models/erratum.rb', line 319

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


299
300
301
# File 'lib/oci/os_management_hub/models/erratum.rb', line 299

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



308
309
310
# File 'lib/oci/os_management_hub/models/erratum.rb', line 308

def hash
  [name, synopsis, time_issued, description, time_updated, classification_type, advisory_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



352
353
354
355
356
357
358
359
360
361
# File 'lib/oci/os_management_hub/models/erratum.rb', line 352

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



346
347
348
# File 'lib/oci/os_management_hub/models/erratum.rb', line 346

def to_s
  to_hash.to_s
end