Class: OCI::JmsJavaDownloads::Models::JavaDownloadRecord
- Inherits:
-
Object
- Object
- OCI::JmsJavaDownloads::Models::JavaDownloadRecord
- Defined in:
- lib/oci/jms_java_downloads/models/java_download_record.rb
Overview
A record of Java artifact download in a tenancy.
Instance Attribute Summary collapse
-
#architecture ⇒ String
The target Operating System architecture for the artifact.
-
#download_source_id ⇒ String
[Required] Identifier of the source that downloaded the artifact.
-
#download_type ⇒ String
[Required] Type of download.
-
#family_display_name ⇒ String
The Java family display name.
-
#family_version ⇒ String
The Java family version identifier.
-
#os_family ⇒ String
The target Operating System family for the artifact.
-
#package_type ⇒ String
The package type(typically the file extension) of the artifact.
-
#package_type_detail ⇒ String
Additional information about the package type.
-
#release_version ⇒ String
The Java release version identifier.
-
#time_downloaded ⇒ DateTime
[Required] Timestamp of download.
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 = {}) ⇒ JavaDownloadRecord
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 = {}) ⇒ JavaDownloadRecord
Initializes the object
103 104 105 106 107 108 109 110 111 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/jms_java_downloads/models/java_download_record.rb', line 103 def initialize(attributes = {}) return unless attributes.is_a?(Hash) self.family_version = attributes[:'familyVersion'] if attributes[:'familyVersion'] raise 'You cannot provide both :familyVersion and :family_version' if attributes.key?(:'familyVersion') && attributes.key?(:'family_version') self.family_version = attributes[:'family_version'] if attributes[:'family_version'] self.family_display_name = attributes[:'familyDisplayName'] if attributes[:'familyDisplayName'] raise 'You cannot provide both :familyDisplayName and :family_display_name' if attributes.key?(:'familyDisplayName') && attributes.key?(:'family_display_name') self.family_display_name = attributes[:'family_display_name'] if attributes[:'family_display_name'] self.release_version = attributes[:'releaseVersion'] if attributes[:'releaseVersion'] raise 'You cannot provide both :releaseVersion and :release_version' if attributes.key?(:'releaseVersion') && attributes.key?(:'release_version') self.release_version = attributes[:'release_version'] if attributes[:'release_version'] 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.architecture = attributes[:'architecture'] if attributes[:'architecture'] self.package_type = attributes[:'packageType'] if attributes[:'packageType'] raise 'You cannot provide both :packageType and :package_type' if attributes.key?(:'packageType') && attributes.key?(:'package_type') self.package_type = attributes[:'package_type'] if attributes[:'package_type'] self.package_type_detail = attributes[:'packageTypeDetail'] if attributes[:'packageTypeDetail'] raise 'You cannot provide both :packageTypeDetail and :package_type_detail' if attributes.key?(:'packageTypeDetail') && attributes.key?(:'package_type_detail') self.package_type_detail = attributes[:'package_type_detail'] if attributes[:'package_type_detail'] self.download_source_id = attributes[:'downloadSourceId'] if attributes[:'downloadSourceId'] raise 'You cannot provide both :downloadSourceId and :download_source_id' if attributes.key?(:'downloadSourceId') && attributes.key?(:'download_source_id') self.download_source_id = attributes[:'download_source_id'] if attributes[:'download_source_id'] self.time_downloaded = attributes[:'timeDownloaded'] if attributes[:'timeDownloaded'] raise 'You cannot provide both :timeDownloaded and :time_downloaded' if attributes.key?(:'timeDownloaded') && attributes.key?(:'time_downloaded') self.time_downloaded = attributes[:'time_downloaded'] if attributes[:'time_downloaded'] self.download_type = attributes[:'downloadType'] if attributes[:'downloadType'] raise 'You cannot provide both :downloadType and :download_type' if attributes.key?(:'downloadType') && attributes.key?(:'download_type') self.download_type = attributes[:'download_type'] if attributes[:'download_type'] end |
Instance Attribute Details
#architecture ⇒ String
The target Operating System architecture for the artifact.
29 30 31 |
# File 'lib/oci/jms_java_downloads/models/java_download_record.rb', line 29 def architecture @architecture end |
#download_source_id ⇒ String
[Required] Identifier of the source that downloaded the artifact.
41 42 43 |
# File 'lib/oci/jms_java_downloads/models/java_download_record.rb', line 41 def download_source_id @download_source_id end |
#download_type ⇒ String
[Required] Type of download.
49 50 51 |
# File 'lib/oci/jms_java_downloads/models/java_download_record.rb', line 49 def download_type @download_type end |
#family_display_name ⇒ String
The Java family display name.
17 18 19 |
# File 'lib/oci/jms_java_downloads/models/java_download_record.rb', line 17 def family_display_name @family_display_name end |
#family_version ⇒ String
The Java family version identifier.
13 14 15 |
# File 'lib/oci/jms_java_downloads/models/java_download_record.rb', line 13 def family_version @family_version end |
#os_family ⇒ String
The target Operating System family for the artifact.
25 26 27 |
# File 'lib/oci/jms_java_downloads/models/java_download_record.rb', line 25 def os_family @os_family end |
#package_type ⇒ String
The package type(typically the file extension) of the artifact.
33 34 35 |
# File 'lib/oci/jms_java_downloads/models/java_download_record.rb', line 33 def package_type @package_type end |
#package_type_detail ⇒ String
Additional information about the package type.
37 38 39 |
# File 'lib/oci/jms_java_downloads/models/java_download_record.rb', line 37 def package_type_detail @package_type_detail end |
#release_version ⇒ String
The Java release version identifier.
21 22 23 |
# File 'lib/oci/jms_java_downloads/models/java_download_record.rb', line 21 def release_version @release_version end |
#time_downloaded ⇒ DateTime
[Required] Timestamp of download.
45 46 47 |
# File 'lib/oci/jms_java_downloads/models/java_download_record.rb', line 45 def time_downloaded @time_downloaded end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'lib/oci/jms_java_downloads/models/java_download_record.rb', line 52 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'family_version': :'familyVersion', 'family_display_name': :'familyDisplayName', 'release_version': :'releaseVersion', 'os_family': :'osFamily', 'architecture': :'architecture', 'package_type': :'packageType', 'package_type_detail': :'packageTypeDetail', 'download_source_id': :'downloadSourceId', 'time_downloaded': :'timeDownloaded', 'download_type': :'downloadType' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
# File 'lib/oci/jms_java_downloads/models/java_download_record.rb', line 70 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'family_version': :'String', 'family_display_name': :'String', 'release_version': :'String', 'os_family': :'String', 'architecture': :'String', 'package_type': :'String', 'package_type_detail': :'String', 'download_source_id': :'String', 'time_downloaded': :'DateTime', 'download_type': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 |
# File 'lib/oci/jms_java_downloads/models/java_download_record.rb', line 170 def ==(other) return true if equal?(other) self.class == other.class && family_version == other.family_version && family_display_name == other.family_display_name && release_version == other.release_version && os_family == other.os_family && architecture == other.architecture && package_type == other.package_type && package_type_detail == other.package_type_detail && download_source_id == other.download_source_id && time_downloaded == other.time_downloaded && download_type == other.download_type end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
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/jms_java_downloads/models/java_download_record.rb', line 209 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
189 190 191 |
# File 'lib/oci/jms_java_downloads/models/java_download_record.rb', line 189 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
198 199 200 |
# File 'lib/oci/jms_java_downloads/models/java_download_record.rb', line 198 def hash [family_version, family_display_name, release_version, os_family, architecture, package_type, package_type_detail, download_source_id, time_downloaded, download_type].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
242 243 244 245 246 247 248 249 250 251 |
# File 'lib/oci/jms_java_downloads/models/java_download_record.rb', line 242 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
236 237 238 |
# File 'lib/oci/jms_java_downloads/models/java_download_record.rb', line 236 def to_s to_hash.to_s end |