Class: OCI::OsManagement::Models::AvailableUpdateSummary

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/os_management/models/available_update_summary.rb

Overview

An update available for a managed instance

Constant Summary collapse

UPDATE_TYPE_ENUM =
[
  UPDATE_TYPE_SECURITY = 'SECURITY'.freeze,
  UPDATE_TYPE_BUG = 'BUG'.freeze,
  UPDATE_TYPE_ENHANCEMENT = 'ENHANCEMENT'.freeze,
  UPDATE_TYPE_OTHER = 'OTHER'.freeze,
  UPDATE_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ AvailableUpdateSummary

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):



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
# File 'lib/oci/os_management/models/available_update_summary.rb', line 112

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

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

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

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

  self.update_type = attributes[:'updateType'] if attributes[:'updateType']

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

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

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

  self.installed_version = attributes[:'installedVersion'] if attributes[:'installedVersion']

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

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

  self.available_version = attributes[:'availableVersion'] if attributes[:'availableVersion']

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

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

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

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

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

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

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

Instance Attribute Details

#architectureString

The architecture for which this package was built

Returns:

  • (String)


46
47
48
# File 'lib/oci/os_management/models/available_update_summary.rb', line 46

def architecture
  @architecture
end

#available_versionString

[Required] Version of the package available for update

Returns:

  • (String)


42
43
44
# File 'lib/oci/os_management/models/available_update_summary.rb', line 42

def available_version
  @available_version
end

#display_nameString

[Required] Package name

Returns:

  • (String)


22
23
24
# File 'lib/oci/os_management/models/available_update_summary.rb', line 22

def display_name
  @display_name
end

#errataArray<OCI::OsManagement::Models::Id>

List of errata containing this update

Returns:



50
51
52
# File 'lib/oci/os_management/models/available_update_summary.rb', line 50

def errata
  @errata
end

#installed_versionString

[Required] Version of the installed package

Returns:

  • (String)


38
39
40
# File 'lib/oci/os_management/models/available_update_summary.rb', line 38

def installed_version
  @installed_version
end

#nameString

[Required] Unique identifier for the package available for update. NOTE - This is not an OCID

Returns:

  • (String)


26
27
28
# File 'lib/oci/os_management/models/available_update_summary.rb', line 26

def name
  @name
end

List of CVEs applicable to this erratum

Returns:

  • (Array<String>)


54
55
56
# File 'lib/oci/os_management/models/available_update_summary.rb', line 54

def related_cves
  @related_cves
end

#software_sourcesArray<OCI::OsManagement::Models::SoftwareSourceId>

list of software sources that provide the software package



58
59
60
# File 'lib/oci/os_management/models/available_update_summary.rb', line 58

def software_sources
  @software_sources
end

#typeString

[Required] Type of the package

Returns:

  • (String)


34
35
36
# File 'lib/oci/os_management/models/available_update_summary.rb', line 34

def type
  @type
end

#update_typeString

The purpose of this update.

Returns:

  • (String)


30
31
32
# File 'lib/oci/os_management/models/available_update_summary.rb', line 30

def update_type
  @update_type
end

Class Method Details

.attribute_mapObject

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



61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# File 'lib/oci/os_management/models/available_update_summary.rb', line 61

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'display_name': :'displayName',
    'name': :'name',
    'update_type': :'updateType',
    'type': :'type',
    'installed_version': :'installedVersion',
    'available_version': :'availableVersion',
    'architecture': :'architecture',
    'errata': :'errata',
    'related_cves': :'relatedCves',
    'software_sources': :'softwareSources'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# File 'lib/oci/os_management/models/available_update_summary.rb', line 79

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'display_name': :'String',
    'name': :'String',
    'update_type': :'String',
    'type': :'String',
    'installed_version': :'String',
    'available_version': :'String',
    'architecture': :'String',
    'errata': :'Array<OCI::OsManagement::Models::Id>',
    'related_cves': :'Array<String>',
    'software_sources': :'Array<OCI::OsManagement::Models::SoftwareSourceId>'
    # 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



183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
# File 'lib/oci/os_management/models/available_update_summary.rb', line 183

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

  self.class == other.class &&
    display_name == other.display_name &&
    name == other.name &&
    update_type == other.update_type &&
    type == other.type &&
    installed_version == other.installed_version &&
    available_version == other.available_version &&
    architecture == other.architecture &&
    errata == other.errata &&
    related_cves == other.related_cves &&
    software_sources == other.software_sources
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



222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
# File 'lib/oci/os_management/models/available_update_summary.rb', line 222

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


202
203
204
# File 'lib/oci/os_management/models/available_update_summary.rb', line 202

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



211
212
213
# File 'lib/oci/os_management/models/available_update_summary.rb', line 211

def hash
  [display_name, name, update_type, type, installed_version, available_version, architecture, errata, related_cves, software_sources].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



255
256
257
258
259
260
261
262
263
264
# File 'lib/oci/os_management/models/available_update_summary.rb', line 255

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



249
250
251
# File 'lib/oci/os_management/models/available_update_summary.rb', line 249

def to_s
  to_hash.to_s
end