Class: OCI::OsManagementHub::Models::SoftwareSource
- Inherits:
-
Object
- Object
- OCI::OsManagementHub::Models::SoftwareSource
- Defined in:
- lib/oci/os_management_hub/models/software_source.rb
Overview
The object that defines a software source. A software source contains a collection of packages. For more information, see Managing Software Sources. This class has direct subclasses. If you are using this class as input to a service operations then you should favor using a subclass over the base class
Direct Known Subclasses
CustomSoftwareSource, VendorSoftwareSource, VersionedCustomSoftwareSource
Constant Summary collapse
- SOFTWARE_SOURCE_TYPE_ENUM =
[ SOFTWARE_SOURCE_TYPE_VENDOR = 'VENDOR'.freeze, SOFTWARE_SOURCE_TYPE_CUSTOM = 'CUSTOM'.freeze, SOFTWARE_SOURCE_TYPE_VERSIONED = 'VERSIONED'.freeze, SOFTWARE_SOURCE_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- AVAILABILITY_ENUM =
[ AVAILABILITY_AVAILABLE = 'AVAILABLE'.freeze, AVAILABILITY_SELECTED = 'SELECTED'.freeze, AVAILABILITY_RESTRICTED = 'RESTRICTED'.freeze, AVAILABILITY_UNAVAILABLE = 'UNAVAILABLE'.freeze, AVAILABILITY_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- AVAILABILITY_AT_OCI_ENUM =
[ AVAILABILITY_AT_OCI_AVAILABLE = 'AVAILABLE'.freeze, AVAILABILITY_AT_OCI_SELECTED = 'SELECTED'.freeze, AVAILABILITY_AT_OCI_RESTRICTED = 'RESTRICTED'.freeze, AVAILABILITY_AT_OCI_UNAVAILABLE = 'UNAVAILABLE'.freeze, AVAILABILITY_AT_OCI_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- OS_FAMILY_ENUM =
[ OS_FAMILY_ORACLE_LINUX_9 = 'ORACLE_LINUX_9'.freeze, OS_FAMILY_ORACLE_LINUX_8 = 'ORACLE_LINUX_8'.freeze, OS_FAMILY_ORACLE_LINUX_7 = 'ORACLE_LINUX_7'.freeze, OS_FAMILY_ORACLE_LINUX_6 = 'ORACLE_LINUX_6'.freeze, OS_FAMILY_WINDOWS_SERVER_2016 = 'WINDOWS_SERVER_2016'.freeze, OS_FAMILY_WINDOWS_SERVER_2019 = 'WINDOWS_SERVER_2019'.freeze, OS_FAMILY_WINDOWS_SERVER_2022 = 'WINDOWS_SERVER_2022'.freeze, OS_FAMILY_ALL = 'ALL'.freeze, OS_FAMILY_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- ARCH_TYPE_ENUM =
[ ARCH_TYPE_X86_64 = 'X86_64'.freeze, ARCH_TYPE_AARCH64 = 'AARCH64'.freeze, ARCH_TYPE_I686 = 'I686'.freeze, ARCH_TYPE_NOARCH = 'NOARCH'.freeze, ARCH_TYPE_SRC = 'SRC'.freeze, ARCH_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- LIFECYCLE_STATE_ENUM =
[ LIFECYCLE_STATE_CREATING = 'CREATING'.freeze, LIFECYCLE_STATE_UPDATING = 'UPDATING'.freeze, LIFECYCLE_STATE_ACTIVE = 'ACTIVE'.freeze, LIFECYCLE_STATE_INACTIVE = 'INACTIVE'.freeze, LIFECYCLE_STATE_DELETING = 'DELETING'.freeze, LIFECYCLE_STATE_DELETED = 'DELETED'.freeze, LIFECYCLE_STATE_FAILED = 'FAILED'.freeze, LIFECYCLE_STATE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- CHECKSUM_TYPE_ENUM =
[ CHECKSUM_TYPE_SHA1 = 'SHA1'.freeze, CHECKSUM_TYPE_SHA256 = 'SHA256'.freeze, CHECKSUM_TYPE_SHA384 = 'SHA384'.freeze, CHECKSUM_TYPE_SHA512 = 'SHA512'.freeze, CHECKSUM_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#arch_type ⇒ String
[Required] The architecture type supported by the software source.
-
#availability ⇒ String
[Required] Availability of the software source (for non-OCI environments).
-
#availability_at_oci ⇒ String
[Required] Availability of the software source (for OCI environments).
-
#checksum_type ⇒ String
The yum repository checksum type used by this software source.
-
#compartment_id ⇒ String
[Required] The OCID of the compartment that contains the software source.
-
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Defined tags for this resource.
-
#description ⇒ String
User-specified description for the software source.
-
#display_name ⇒ String
[Required] User-friendly name for the software source.
-
#freeform_tags ⇒ Hash<String, String>
Free-form tags for this resource.
-
#gpg_key_fingerprint ⇒ String
Fingerprint of the GPG key for this software source.
-
#gpg_key_id ⇒ String
ID of the GPG key for this software source.
-
#gpg_key_url ⇒ String
URL of the GPG key for this software source.
-
#id ⇒ String
[Required] The OCID of the software source.
-
#lifecycle_state ⇒ String
The current state of the software source.
-
#os_family ⇒ String
[Required] The OS family the software source belongs to.
-
#package_count ⇒ Integer
Number of packages the software source contains.
-
#repo_id ⇒ String
[Required] The repository ID for the software source.
-
#size ⇒ Float
The size of the software source in gigabytes (GB).
-
#software_source_type ⇒ String
[Required] Type of software source.
-
#system_tags ⇒ Hash<String, Hash<String, Object>>
System tags for this resource.
-
#time_created ⇒ DateTime
[Required] The date and time the software source was created (in RFC 3339 format).
-
#url ⇒ String
[Required] URL for the repository.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.get_subtype(object_hash) ⇒ Object
Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
-
.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 = {}) ⇒ SoftwareSource
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.
Constructor Details
#initialize(attributes = {}) ⇒ SoftwareSource
Initializes the object
278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 278 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.id = attributes[:'id'] if attributes[:'id'] self.compartment_id = attributes[:'compartmentId'] if attributes[:'compartmentId'] raise 'You cannot provide both :compartmentId and :compartment_id' if attributes.key?(:'compartmentId') && attributes.key?(:'compartment_id') self.compartment_id = attributes[:'compartment_id'] if attributes[:'compartment_id'] 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.time_created = attributes[:'timeCreated'] if attributes[:'timeCreated'] raise 'You cannot provide both :timeCreated and :time_created' if attributes.key?(:'timeCreated') && attributes.key?(:'time_created') self.time_created = attributes[:'time_created'] if attributes[:'time_created'] self.description = attributes[:'description'] if attributes[:'description'] self.software_source_type = attributes[:'softwareSourceType'] if attributes[:'softwareSourceType'] raise 'You cannot provide both :softwareSourceType and :software_source_type' if attributes.key?(:'softwareSourceType') && attributes.key?(:'software_source_type') self.software_source_type = attributes[:'software_source_type'] if attributes[:'software_source_type'] self.availability = attributes[:'availability'] if attributes[:'availability'] self.availability_at_oci = attributes[:'availabilityAtOci'] if attributes[:'availabilityAtOci'] raise 'You cannot provide both :availabilityAtOci and :availability_at_oci' if attributes.key?(:'availabilityAtOci') && attributes.key?(:'availability_at_oci') self.availability_at_oci = attributes[:'availability_at_oci'] if attributes[:'availability_at_oci'] self.repo_id = attributes[:'repoId'] if attributes[:'repoId'] raise 'You cannot provide both :repoId and :repo_id' if attributes.key?(:'repoId') && attributes.key?(:'repo_id') self.repo_id = attributes[:'repo_id'] if attributes[:'repo_id'] self.os_family = attributes[:'osFamily'] if attributes[:'osFamily'] raise 'You cannot provide both :osFamily and :os_family' if attributes.key?(:'osFamily') && attributes.key?(:'os_family') self.os_family = attributes[:'os_family'] if attributes[:'os_family'] self.arch_type = attributes[:'archType'] if attributes[:'archType'] raise 'You cannot provide both :archType and :arch_type' if attributes.key?(:'archType') && attributes.key?(:'arch_type') self.arch_type = attributes[:'arch_type'] if attributes[:'arch_type'] self.lifecycle_state = attributes[:'lifecycleState'] if attributes[:'lifecycleState'] raise 'You cannot provide both :lifecycleState and :lifecycle_state' if attributes.key?(:'lifecycleState') && attributes.key?(:'lifecycle_state') self.lifecycle_state = attributes[:'lifecycle_state'] if attributes[:'lifecycle_state'] self.package_count = attributes[:'packageCount'] if attributes[:'packageCount'] raise 'You cannot provide both :packageCount and :package_count' if attributes.key?(:'packageCount') && attributes.key?(:'package_count') self.package_count = attributes[:'package_count'] if attributes[:'package_count'] self.url = attributes[:'url'] if attributes[:'url'] self.checksum_type = attributes[:'checksumType'] if attributes[:'checksumType'] raise 'You cannot provide both :checksumType and :checksum_type' if attributes.key?(:'checksumType') && attributes.key?(:'checksum_type') self.checksum_type = attributes[:'checksum_type'] if attributes[:'checksum_type'] self.gpg_key_url = attributes[:'gpgKeyUrl'] if attributes[:'gpgKeyUrl'] raise 'You cannot provide both :gpgKeyUrl and :gpg_key_url' if attributes.key?(:'gpgKeyUrl') && attributes.key?(:'gpg_key_url') self.gpg_key_url = attributes[:'gpg_key_url'] if attributes[:'gpg_key_url'] self.gpg_key_id = attributes[:'gpgKeyId'] if attributes[:'gpgKeyId'] raise 'You cannot provide both :gpgKeyId and :gpg_key_id' if attributes.key?(:'gpgKeyId') && attributes.key?(:'gpg_key_id') self.gpg_key_id = attributes[:'gpg_key_id'] if attributes[:'gpg_key_id'] self.gpg_key_fingerprint = attributes[:'gpgKeyFingerprint'] if attributes[:'gpgKeyFingerprint'] raise 'You cannot provide both :gpgKeyFingerprint and :gpg_key_fingerprint' if attributes.key?(:'gpgKeyFingerprint') && attributes.key?(:'gpg_key_fingerprint') self.gpg_key_fingerprint = attributes[:'gpg_key_fingerprint'] if attributes[:'gpg_key_fingerprint'] self.size = attributes[:'size'] if attributes[:'size'] self. = attributes[:'freeformTags'] if attributes[:'freeformTags'] raise 'You cannot provide both :freeformTags and :freeform_tags' if attributes.key?(:'freeformTags') && attributes.key?(:'freeform_tags') self. = attributes[:'freeform_tags'] if attributes[:'freeform_tags'] self. = attributes[:'definedTags'] if attributes[:'definedTags'] raise 'You cannot provide both :definedTags and :defined_tags' if attributes.key?(:'definedTags') && attributes.key?(:'defined_tags') self. = attributes[:'defined_tags'] if attributes[:'defined_tags'] self. = attributes[:'systemTags'] if attributes[:'systemTags'] raise 'You cannot provide both :systemTags and :system_tags' if attributes.key?(:'systemTags') && attributes.key?(:'system_tags') self. = attributes[:'system_tags'] if attributes[:'system_tags'] end |
Instance Attribute Details
#arch_type ⇒ String
[Required] The architecture type supported by the software source.
119 120 121 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 119 def arch_type @arch_type end |
#availability ⇒ String
[Required] Availability of the software source (for non-OCI environments).
103 104 105 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 103 def availability @availability end |
#availability_at_oci ⇒ String
[Required] Availability of the software source (for OCI environments).
107 108 109 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 107 def availability_at_oci @availability_at_oci end |
#checksum_type ⇒ String
The yum repository checksum type used by this software source.
135 136 137 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 135 def checksum_type @checksum_type end |
#compartment_id ⇒ String
[Required] The OCID of the compartment that contains the software source.
82 83 84 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 82 def compartment_id @compartment_id end |
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {\"Operations\": {\"CostCenter\": \"42\"}}
165 166 167 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 165 def @defined_tags end |
#description ⇒ String
User-specified description for the software source.
95 96 97 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 95 def description @description end |
#display_name ⇒ String
[Required] User-friendly name for the software source.
86 87 88 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 86 def display_name @display_name end |
#freeform_tags ⇒ Hash<String, String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {\"Department\": \"Finance\"}
158 159 160 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 158 def @freeform_tags end |
#gpg_key_fingerprint ⇒ String
Fingerprint of the GPG key for this software source.
147 148 149 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 147 def gpg_key_fingerprint @gpg_key_fingerprint end |
#gpg_key_id ⇒ String
ID of the GPG key for this software source.
143 144 145 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 143 def gpg_key_id @gpg_key_id end |
#gpg_key_url ⇒ String
URL of the GPG key for this software source.
139 140 141 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 139 def gpg_key_url @gpg_key_url end |
#id ⇒ String
[Required] The OCID of the software source.
78 79 80 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 78 def id @id end |
#lifecycle_state ⇒ String
The current state of the software source.
123 124 125 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 123 def lifecycle_state @lifecycle_state end |
#os_family ⇒ String
[Required] The OS family the software source belongs to.
115 116 117 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 115 def os_family @os_family end |
#package_count ⇒ Integer
Number of packages the software source contains.
127 128 129 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 127 def package_count @package_count end |
#repo_id ⇒ String
[Required] The repository ID for the software source.
111 112 113 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 111 def repo_id @repo_id end |
#size ⇒ Float
The size of the software source in gigabytes (GB).
151 152 153 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 151 def size @size end |
#software_source_type ⇒ String
[Required] Type of software source.
99 100 101 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 99 def software_source_type @software_source_type end |
#system_tags ⇒ Hash<String, Hash<String, Object>>
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}
171 172 173 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 171 def @system_tags end |
#time_created ⇒ DateTime
[Required] The date and time the software source was created (in RFC 3339 format).
91 92 93 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 91 def time_created @time_created end |
#url ⇒ String
[Required] URL for the repository. For vendor software sources, this is the URL to the regional yum server. For custom software sources, this is 'custom/<repoId>'.
131 132 133 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 131 def url @url end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
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 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 174 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'id': :'id', 'compartment_id': :'compartmentId', 'display_name': :'displayName', 'time_created': :'timeCreated', 'description': :'description', 'software_source_type': :'softwareSourceType', 'availability': :'availability', 'availability_at_oci': :'availabilityAtOci', 'repo_id': :'repoId', 'os_family': :'osFamily', 'arch_type': :'archType', 'lifecycle_state': :'lifecycleState', 'package_count': :'packageCount', 'url': :'url', 'checksum_type': :'checksumType', 'gpg_key_url': :'gpgKeyUrl', 'gpg_key_id': :'gpgKeyId', 'gpg_key_fingerprint': :'gpgKeyFingerprint', 'size': :'size', 'freeform_tags': :'freeformTags', 'defined_tags': :'definedTags', 'system_tags': :'systemTags' # rubocop:enable Style/SymbolLiteral } end |
.get_subtype(object_hash) ⇒ Object
Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
238 239 240 241 242 243 244 245 246 247 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 238 def self.get_subtype(object_hash) type = object_hash[:'softwareSourceType'] # rubocop:disable Style/SymbolLiteral return 'OCI::OsManagementHub::Models::VendorSoftwareSource' if type == 'VENDOR' return 'OCI::OsManagementHub::Models::CustomSoftwareSource' if type == 'CUSTOM' return 'OCI::OsManagementHub::Models::VersionedCustomSoftwareSource' if type == 'VERSIONED' # TODO: Log a warning when the subtype is not found. 'OCI::OsManagementHub::Models::SoftwareSource' end |
.swagger_types ⇒ Object
Attribute type mapping.
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 204 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'id': :'String', 'compartment_id': :'String', 'display_name': :'String', 'time_created': :'DateTime', 'description': :'String', 'software_source_type': :'String', 'availability': :'String', 'availability_at_oci': :'String', 'repo_id': :'String', 'os_family': :'String', 'arch_type': :'String', 'lifecycle_state': :'String', 'package_count': :'Integer', 'url': :'String', 'checksum_type': :'String', 'gpg_key_url': :'String', 'gpg_key_id': :'String', 'gpg_key_fingerprint': :'String', 'size': :'Float', 'freeform_tags': :'Hash<String, String>', 'defined_tags': :'Hash<String, Hash<String, Object>>', 'system_tags': :'Hash<String, Hash<String, Object>>' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 495 def ==(other) return true if equal?(other) self.class == other.class && id == other.id && compartment_id == other.compartment_id && display_name == other.display_name && time_created == other.time_created && description == other.description && software_source_type == other.software_source_type && availability == other.availability && availability_at_oci == other.availability_at_oci && repo_id == other.repo_id && os_family == other.os_family && arch_type == other.arch_type && lifecycle_state == other.lifecycle_state && package_count == other.package_count && url == other.url && checksum_type == other.checksum_type && gpg_key_url == other.gpg_key_url && gpg_key_id == other.gpg_key_id && gpg_key_fingerprint == other.gpg_key_fingerprint && size == other.size && == other. && == other. && == other. end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 546 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
526 527 528 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 526 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
535 536 537 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 535 def hash [id, compartment_id, display_name, time_created, description, software_source_type, availability, availability_at_oci, repo_id, os_family, arch_type, lifecycle_state, package_count, url, checksum_type, gpg_key_url, gpg_key_id, gpg_key_fingerprint, size, , , ].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
579 580 581 582 583 584 585 586 587 588 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 579 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
573 574 575 |
# File 'lib/oci/os_management_hub/models/software_source.rb', line 573 def to_s to_hash.to_s end |