Class: OCI::OsManagementHub::Models::CustomSoftwareSourceSummary
- Inherits:
-
SoftwareSourceSummary
- Object
- SoftwareSourceSummary
- OCI::OsManagementHub::Models::CustomSoftwareSourceSummary
- Defined in:
- lib/oci/os_management_hub/models/custom_software_source_summary.rb
Overview
Indicates whether the service should create the software source from a list of packages provided by the user.
Constant Summary
Constants inherited from SoftwareSourceSummary
SoftwareSourceSummary::ARCH_TYPE_ENUM, SoftwareSourceSummary::AVAILABILITY_AT_OCI_ENUM, SoftwareSourceSummary::AVAILABILITY_ENUM, SoftwareSourceSummary::OS_FAMILY_ENUM, SoftwareSourceSummary::SOFTWARE_SOURCE_TYPE_ENUM
Instance Attribute Summary collapse
-
#vendor_software_sources ⇒ Array<OCI::OsManagementHub::Models::Id>
[Required] List of vendor software sources that are used for the basis of the custom software source..
Attributes inherited from SoftwareSourceSummary
#arch_type, #availability, #availability_at_oci, #compartment_id, #defined_tags, #description, #display_name, #freeform_tags, #id, #lifecycle_state, #os_family, #package_count, #repo_id, #size, #software_source_type, #system_tags, #time_created, #time_updated, #url
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 = {}) ⇒ CustomSoftwareSourceSummary
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.
Methods inherited from SoftwareSourceSummary
Constructor Details
#initialize(attributes = {}) ⇒ CustomSoftwareSourceSummary
Initializes the object
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
# File 'lib/oci/os_management_hub/models/custom_software_source_summary.rb', line 97 def initialize(attributes = {}) return unless attributes.is_a?(Hash) attributes['softwareSourceType'] = 'CUSTOM' super(attributes) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } self.vendor_software_sources = attributes[:'vendorSoftwareSources'] if attributes[:'vendorSoftwareSources'] raise 'You cannot provide both :vendorSoftwareSources and :vendor_software_sources' if attributes.key?(:'vendorSoftwareSources') && attributes.key?(:'vendor_software_sources') self.vendor_software_sources = attributes[:'vendor_software_sources'] if attributes[:'vendor_software_sources'] end |
Instance Attribute Details
#vendor_software_sources ⇒ Array<OCI::OsManagementHub::Models::Id>
[Required] List of vendor software sources that are used for the basis of the custom software source..
14 15 16 |
# File 'lib/oci/os_management_hub/models/custom_software_source_summary.rb', line 14 def vendor_software_sources @vendor_software_sources end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
# File 'lib/oci/os_management_hub/models/custom_software_source_summary.rb', line 17 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'id': :'id', 'compartment_id': :'compartmentId', 'display_name': :'displayName', 'repo_id': :'repoId', 'url': :'url', 'time_created': :'timeCreated', 'time_updated': :'timeUpdated', 'description': :'description', 'software_source_type': :'softwareSourceType', 'availability': :'availability', 'availability_at_oci': :'availabilityAtOci', 'os_family': :'osFamily', 'arch_type': :'archType', 'package_count': :'packageCount', 'lifecycle_state': :'lifecycleState', 'size': :'size', 'freeform_tags': :'freeformTags', 'defined_tags': :'definedTags', 'system_tags': :'systemTags', 'vendor_software_sources': :'vendorSoftwareSources' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
# File 'lib/oci/os_management_hub/models/custom_software_source_summary.rb', line 45 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'id': :'String', 'compartment_id': :'String', 'display_name': :'String', 'repo_id': :'String', 'url': :'String', 'time_created': :'DateTime', 'time_updated': :'DateTime', 'description': :'String', 'software_source_type': :'String', 'availability': :'String', 'availability_at_oci': :'String', 'os_family': :'String', 'arch_type': :'String', 'package_count': :'Integer', 'lifecycle_state': :'String', 'size': :'Float', 'freeform_tags': :'Hash<String, String>', 'defined_tags': :'Hash<String, Hash<String, Object>>', 'system_tags': :'Hash<String, Hash<String, Object>>', 'vendor_software_sources': :'Array<OCI::OsManagementHub::Models::Id>' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
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 |
# File 'lib/oci/os_management_hub/models/custom_software_source_summary.rb', line 121 def ==(other) return true if equal?(other) self.class == other.class && id == other.id && compartment_id == other.compartment_id && display_name == other.display_name && repo_id == other.repo_id && url == other.url && time_created == other.time_created && time_updated == other.time_updated && description == other.description && software_source_type == other.software_source_type && availability == other.availability && availability_at_oci == other.availability_at_oci && os_family == other.os_family && arch_type == other.arch_type && package_count == other.package_count && lifecycle_state == other.lifecycle_state && size == other.size && == other. && == other. && == other. && vendor_software_sources == other.vendor_software_sources end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 |
# File 'lib/oci/os_management_hub/models/custom_software_source_summary.rb', line 170 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
150 151 152 |
# File 'lib/oci/os_management_hub/models/custom_software_source_summary.rb', line 150 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
159 160 161 |
# File 'lib/oci/os_management_hub/models/custom_software_source_summary.rb', line 159 def hash [id, compartment_id, display_name, repo_id, url, time_created, time_updated, description, software_source_type, availability, availability_at_oci, os_family, arch_type, package_count, lifecycle_state, size, , , , vendor_software_sources].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
203 204 205 206 207 208 209 210 211 212 |
# File 'lib/oci/os_management_hub/models/custom_software_source_summary.rb', line 203 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
197 198 199 |
# File 'lib/oci/os_management_hub/models/custom_software_source_summary.rb', line 197 def to_s to_hash.to_s end |