Class: OCI::JmsJavaDownloads::Models::JavaDownloadCountAggregation

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

Overview

Count of Java downloads aggregated by the specified type.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ JavaDownloadCountAggregation

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :download_count (Integer)

    The value to assign to the #download_count property

  • :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



89
90
91
92
93
94
95
96
97
98
99
100
101
102
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
# File 'lib/oci/jms_java_downloads/models/java_download_count_aggregation.rb', line 89

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

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

  self.download_count = attributes[:'download_count'] if attributes[:'download_count']

  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']
end

Instance Attribute Details

#architectureString

The target Operating System architecture for the artifact. Applicable only to PLATFORM aggregationType.

Returns:

  • (String)


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

def architecture
  @architecture
end

#download_countInteger

[Required] Count of Java downloads.

Returns:

  • (Integer)


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

def download_count
  @download_count
end

#family_display_nameString

The Java family display name.

Returns:

  • (String)


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

def family_display_name
  @family_display_name
end

#family_versionString

The Java family version.

Returns:

  • (String)


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

def family_version
  @family_version
end

#os_familyString

The target Operating System family for the artifact. Applicable only to PLATFORM aggregationType.

Returns:

  • (String)


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

def os_family
  @os_family
end

#package_typeString

The package type(typically the file extension) of the artifact. Applicable only to PLATFORM aggregationType.

Returns:

  • (String)


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

def package_type
  @package_type
end

#package_type_detailString

Additional information about the package type. Applicable only to PLATFORM aggregationType.

Returns:

  • (String)


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

def package_type_detail
  @package_type_detail
end

#release_versionString

The Java release version. Applicable only to JAVA_RELEASE aggregationType.

Returns:

  • (String)


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

def release_version
  @release_version
end

Class Method Details

.attribute_mapObject

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



44
45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/oci/jms_java_downloads/models/java_download_count_aggregation.rb', line 44

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'download_count': :'downloadCount',
    'family_version': :'familyVersion',
    'family_display_name': :'familyDisplayName',
    'release_version': :'releaseVersion',
    'os_family': :'osFamily',
    'architecture': :'architecture',
    'package_type': :'packageType',
    'package_type_detail': :'packageTypeDetail'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



60
61
62
63
64
65
66
67
68
69
70
71
72
73
# File 'lib/oci/jms_java_downloads/models/java_download_count_aggregation.rb', line 60

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'download_count': :'Integer',
    'family_version': :'String',
    'family_display_name': :'String',
    'release_version': :'String',
    'os_family': :'String',
    'architecture': :'String',
    'package_type': :'String',
    'package_type_detail': :'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



147
148
149
150
151
152
153
154
155
156
157
158
159
# File 'lib/oci/jms_java_downloads/models/java_download_count_aggregation.rb', line 147

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

  self.class == other.class &&
    download_count == other.download_count &&
    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
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



184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
# File 'lib/oci/jms_java_downloads/models/java_download_count_aggregation.rb', line 184

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


164
165
166
# File 'lib/oci/jms_java_downloads/models/java_download_count_aggregation.rb', line 164

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



173
174
175
# File 'lib/oci/jms_java_downloads/models/java_download_count_aggregation.rb', line 173

def hash
  [download_count, family_version, family_display_name, release_version, os_family, architecture, package_type, package_type_detail].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



217
218
219
220
221
222
223
224
225
226
# File 'lib/oci/jms_java_downloads/models/java_download_count_aggregation.rb', line 217

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



211
212
213
# File 'lib/oci/jms_java_downloads/models/java_download_count_aggregation.rb', line 211

def to_s
  to_hash.to_s
end