Class: OCI::Opsi::Models::AwrDatabaseCpuUsageCollection

Inherits:
AwrQueryResult
  • Object
show all
Defined in:
lib/oci/opsi/models/awr_database_cpu_usage_collection.rb

Overview

The AWR CPU usage data.

Constant Summary

Constants inherited from AwrQueryResult

OCI::Opsi::Models::AwrQueryResult::AWR_RESULT_TYPE_ENUM

Instance Attribute Summary collapse

Attributes inherited from AwrQueryResult

#awr_result_type, #db_query_time_in_secs, #name, #version

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from AwrQueryResult

get_subtype

Constructor Details

#initialize(attributes = {}) ⇒ AwrDatabaseCpuUsageCollection

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):



74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# File 'lib/oci/opsi/models/awr_database_cpu_usage_collection.rb', line 74

def initialize(attributes = {})
  return unless attributes.is_a?(Hash)

  attributes['awrResultType'] = 'AWRDB_ASH_CPU_USAGE_SET'

  super(attributes)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }

  self.num_cpu_cores = attributes[:'numCpuCores'] if attributes[:'numCpuCores']

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

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

  self.database_cpu_count = attributes[:'databaseCpuCount'] if attributes[:'databaseCpuCount']

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

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

  self.host_cpu_count = attributes[:'hostCpuCount'] if attributes[:'hostCpuCount']

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

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

  self.items = attributes[:'items'] if attributes[:'items']
end

Instance Attribute Details

#database_cpu_countInteger

The number of CPUs available for the database to use.

Returns:

  • (Integer)


19
20
21
# File 'lib/oci/opsi/models/awr_database_cpu_usage_collection.rb', line 19

def database_cpu_count
  @database_cpu_count
end

#host_cpu_countFloat

The number of available CPUs or processors.

Returns:

  • (Float)


23
24
25
# File 'lib/oci/opsi/models/awr_database_cpu_usage_collection.rb', line 23

def host_cpu_count
  @host_cpu_count
end

#itemsArray<OCI::Opsi::Models::AwrDatabaseCpuUsageSummary>

A list of AWR CPU usage summary data.



27
28
29
# File 'lib/oci/opsi/models/awr_database_cpu_usage_collection.rb', line 27

def items
  @items
end

#num_cpu_coresInteger

The number of available CPU cores, which include subcores of multicore and single-core CPUs.

Returns:

  • (Integer)


15
16
17
# File 'lib/oci/opsi/models/awr_database_cpu_usage_collection.rb', line 15

def num_cpu_cores
  @num_cpu_cores
end

Class Method Details

.attribute_mapObject

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



30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/oci/opsi/models/awr_database_cpu_usage_collection.rb', line 30

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'name': :'name',
    'version': :'version',
    'db_query_time_in_secs': :'dbQueryTimeInSecs',
    'awr_result_type': :'awrResultType',
    'num_cpu_cores': :'numCpuCores',
    'database_cpu_count': :'databaseCpuCount',
    'host_cpu_count': :'hostCpuCount',
    'items': :'items'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



46
47
48
49
50
51
52
53
54
55
56
57
58
59
# File 'lib/oci/opsi/models/awr_database_cpu_usage_collection.rb', line 46

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'name': :'String',
    'version': :'String',
    'db_query_time_in_secs': :'Float',
    'awr_result_type': :'String',
    'num_cpu_cores': :'Integer',
    'database_cpu_count': :'Integer',
    'host_cpu_count': :'Float',
    'items': :'Array<OCI::Opsi::Models::AwrDatabaseCpuUsageSummary>'
    # 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



112
113
114
115
116
117
118
119
120
121
122
123
124
# File 'lib/oci/opsi/models/awr_database_cpu_usage_collection.rb', line 112

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

  self.class == other.class &&
    name == other.name &&
    version == other.version &&
    db_query_time_in_secs == other.db_query_time_in_secs &&
    awr_result_type == other.awr_result_type &&
    num_cpu_cores == other.num_cpu_cores &&
    database_cpu_count == other.database_cpu_count &&
    host_cpu_count == other.host_cpu_count &&
    items == other.items
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



149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# File 'lib/oci/opsi/models/awr_database_cpu_usage_collection.rb', line 149

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


129
130
131
# File 'lib/oci/opsi/models/awr_database_cpu_usage_collection.rb', line 129

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



138
139
140
# File 'lib/oci/opsi/models/awr_database_cpu_usage_collection.rb', line 138

def hash
  [name, version, db_query_time_in_secs, awr_result_type, num_cpu_cores, database_cpu_count, host_cpu_count, items].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



182
183
184
185
186
187
188
189
190
191
# File 'lib/oci/opsi/models/awr_database_cpu_usage_collection.rb', line 182

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



176
177
178
# File 'lib/oci/opsi/models/awr_database_cpu_usage_collection.rb', line 176

def to_s
  to_hash.to_s
end