Class: OCI::OsManagementHub::Models::SoftwareSourceVendorSummary

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

Overview

Software vendor name, list of osFamily and archType.

Constant Summary collapse

NAME_ENUM =
[
  NAME_ORACLE = 'ORACLE'.freeze,
  NAME_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
OS_FAMILIES_ENUM =
[
  OS_FAMILIES_ORACLE_LINUX_9 = 'ORACLE_LINUX_9'.freeze,
  OS_FAMILIES_ORACLE_LINUX_8 = 'ORACLE_LINUX_8'.freeze,
  OS_FAMILIES_ORACLE_LINUX_7 = 'ORACLE_LINUX_7'.freeze,
  OS_FAMILIES_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
ARCH_TYPES_ENUM =
[
  ARCH_TYPES_X86_64 = 'X86_64'.freeze,
  ARCH_TYPES_AARCH64 = 'AARCH64'.freeze,
  ARCH_TYPES_I686 = 'I686'.freeze,
  ARCH_TYPES_NOARCH = 'NOARCH'.freeze,
  ARCH_TYPES_SRC = 'SRC'.freeze,
  ARCH_TYPES_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ SoftwareSourceVendorSummary

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

  • :os_families (Array<String>)

    The value to assign to the #os_families property

  • :arch_types (Array<String>)

    The value to assign to the #arch_types property



76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# File 'lib/oci/os_management_hub/models/software_source_vendor_summary.rb', line 76

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

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

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

Instance Attribute Details

#arch_typesArray<String>

[Required] List of corresponding archTypes.

Returns:

  • (Array<String>)


43
44
45
# File 'lib/oci/os_management_hub/models/software_source_vendor_summary.rb', line 43

def arch_types
  @arch_types
end

#nameString

[Required] Name of the vendor providing the software source.

Returns:

  • (String)


35
36
37
# File 'lib/oci/os_management_hub/models/software_source_vendor_summary.rb', line 35

def name
  @name
end

#os_familiesArray<String>

[Required] List of corresponding osFamilies.

Returns:

  • (Array<String>)


39
40
41
# File 'lib/oci/os_management_hub/models/software_source_vendor_summary.rb', line 39

def os_families
  @os_families
end

Class Method Details

.attribute_mapObject

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



46
47
48
49
50
51
52
53
54
# File 'lib/oci/os_management_hub/models/software_source_vendor_summary.rb', line 46

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'name': :'name',
    'os_families': :'osFamilies',
    'arch_types': :'archTypes'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



57
58
59
60
61
62
63
64
65
# File 'lib/oci/os_management_hub/models/software_source_vendor_summary.rb', line 57

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'name': :'String',
    'os_families': :'Array<String>',
    'arch_types': :'Array<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



157
158
159
160
161
162
163
164
# File 'lib/oci/os_management_hub/models/software_source_vendor_summary.rb', line 157

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

  self.class == other.class &&
    name == other.name &&
    os_families == other.os_families &&
    arch_types == other.arch_types
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



189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
# File 'lib/oci/os_management_hub/models/software_source_vendor_summary.rb', line 189

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


169
170
171
# File 'lib/oci/os_management_hub/models/software_source_vendor_summary.rb', line 169

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



178
179
180
# File 'lib/oci/os_management_hub/models/software_source_vendor_summary.rb', line 178

def hash
  [name, os_families, arch_types].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



222
223
224
225
226
227
228
229
230
231
# File 'lib/oci/os_management_hub/models/software_source_vendor_summary.rb', line 222

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



216
217
218
# File 'lib/oci/os_management_hub/models/software_source_vendor_summary.rb', line 216

def to_s
  to_hash.to_s
end