Class: OCI::JmsJavaDownloads::Models::JavaDownloadRecordSummary

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/jms_java_downloads/models/java_download_record_summary.rb

Overview

A summary of Java artifact download in a tenancy.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ JavaDownloadRecordSummary

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :family_version (String)

    The value to assign to the #family_version property

  • :family_display_name (String)

    The value to assign to the #family_display_name property

  • :release_version (String)

    The value to assign to the #release_version property

  • :os_family (String)

    The value to assign to the #os_family property

  • :architecture (String)

    The value to assign to the #architecture property

  • :package_type (String)

    The value to assign to the #package_type property

  • :package_type_detail (String)

    The value to assign to the #package_type_detail property

  • :download_source_id (String)

    The value to assign to the #download_source_id property

  • :time_downloaded (DateTime)

    The value to assign to the #time_downloaded property

  • :download_type (String)

    The value to assign to the #download_type property



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
162
163
164
# File 'lib/oci/jms_java_downloads/models/java_download_record_summary.rb', line 103

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.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

#architectureString

The target Operating System architecture for the artifact.

Returns:

  • (String)


29
30
31
# File 'lib/oci/jms_java_downloads/models/java_download_record_summary.rb', line 29

def architecture
  @architecture
end

#download_source_idString

[Required] Identifier of the source that downloaded the artifact.

Returns:

  • (String)


41
42
43
# File 'lib/oci/jms_java_downloads/models/java_download_record_summary.rb', line 41

def download_source_id
  @download_source_id
end

#download_typeString

[Required] Type of download.

Returns:

  • (String)


49
50
51
# File 'lib/oci/jms_java_downloads/models/java_download_record_summary.rb', line 49

def download_type
  @download_type
end

#family_display_nameString

The Java family display name.

Returns:

  • (String)


17
18
19
# File 'lib/oci/jms_java_downloads/models/java_download_record_summary.rb', line 17

def family_display_name
  @family_display_name
end

#family_versionString

The Java family version identifier.

Returns:

  • (String)


13
14
15
# File 'lib/oci/jms_java_downloads/models/java_download_record_summary.rb', line 13

def family_version
  @family_version
end

#os_familyString

The target Operating System family for the artifact.

Returns:

  • (String)


25
26
27
# File 'lib/oci/jms_java_downloads/models/java_download_record_summary.rb', line 25

def os_family
  @os_family
end

#package_typeString

The package type(typically the file extension) of the artifact.

Returns:

  • (String)


33
34
35
# File 'lib/oci/jms_java_downloads/models/java_download_record_summary.rb', line 33

def package_type
  @package_type
end

#package_type_detailString

Additional information about the package type.

Returns:

  • (String)


37
38
39
# File 'lib/oci/jms_java_downloads/models/java_download_record_summary.rb', line 37

def package_type_detail
  @package_type_detail
end

#release_versionString

The Java release version identifier.

Returns:

  • (String)


21
22
23
# File 'lib/oci/jms_java_downloads/models/java_download_record_summary.rb', line 21

def release_version
  @release_version
end

#time_downloadedDateTime

[Required] Timestamp of download.

Returns:

  • (DateTime)


45
46
47
# File 'lib/oci/jms_java_downloads/models/java_download_record_summary.rb', line 45

def time_downloaded
  @time_downloaded
end

Class Method Details

.attribute_mapObject

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_summary.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_typesObject

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_summary.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.

Parameters:

  • other (Object)

    the other object to be compared



173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
# File 'lib/oci/jms_java_downloads/models/java_download_record_summary.rb', line 173

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

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
# File 'lib/oci/jms_java_downloads/models/java_download_record_summary.rb', line 212

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


192
193
194
# File 'lib/oci/jms_java_downloads/models/java_download_record_summary.rb', line 192

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



201
202
203
# File 'lib/oci/jms_java_downloads/models/java_download_record_summary.rb', line 201

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_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



245
246
247
248
249
250
251
252
253
254
# File 'lib/oci/jms_java_downloads/models/java_download_record_summary.rb', line 245

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



239
240
241
# File 'lib/oci/jms_java_downloads/models/java_download_record_summary.rb', line 239

def to_s
  to_hash.to_s
end