Class: OCI::DatabaseManagement::Models::MySqlFleetMetrics

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/database_management/models/my_sql_fleet_metrics.rb

Overview

The details of the MySQL Database fleet health metrics.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ MySqlFleetMetrics

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):



61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# File 'lib/oci/database_management/models/my_sql_fleet_metrics.rb', line 61

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

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

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

  self.end_time = attributes[:'endTime'] if attributes[:'endTime']

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

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

  self.fleet_databases = attributes[:'fleetDatabases'] if attributes[:'fleetDatabases']

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

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

  self.fleet_summary = attributes[:'fleetSummary'] if attributes[:'fleetSummary']

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

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

Instance Attribute Details

#end_timeString

[Required] The end of the time range during which metric data is retrieved.

Returns:

  • (String)


17
18
19
# File 'lib/oci/database_management/models/my_sql_fleet_metrics.rb', line 17

def end_time
  @end_time
end

#fleet_databasesArray<OCI::DatabaseManagement::Models::MySqlDatabaseUsageMetrics>

[Required] The list of MySQL Databases in the fleet and their usage metrics.



21
22
23
# File 'lib/oci/database_management/models/my_sql_fleet_metrics.rb', line 21

def fleet_databases
  @fleet_databases
end

#fleet_summaryArray<OCI::DatabaseManagement::Models::MySqlFleetSummary>

[Required] A summary of the inventory count and the metrics that describe the aggregated usage of CPU, storage, and so on of all the MySQL Databases in the fleet.



25
26
27
# File 'lib/oci/database_management/models/my_sql_fleet_metrics.rb', line 25

def fleet_summary
  @fleet_summary
end

#start_timeString

[Required] The beginning of the time range during which metric data is retrieved.

Returns:

  • (String)


13
14
15
# File 'lib/oci/database_management/models/my_sql_fleet_metrics.rb', line 13

def start_time
  @start_time
end

Class Method Details

.attribute_mapObject

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



28
29
30
31
32
33
34
35
36
37
# File 'lib/oci/database_management/models/my_sql_fleet_metrics.rb', line 28

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'start_time': :'startTime',
    'end_time': :'endTime',
    'fleet_databases': :'fleetDatabases',
    'fleet_summary': :'fleetSummary'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



40
41
42
43
44
45
46
47
48
49
# File 'lib/oci/database_management/models/my_sql_fleet_metrics.rb', line 40

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'start_time': :'String',
    'end_time': :'String',
    'fleet_databases': :'Array<OCI::DatabaseManagement::Models::MySqlDatabaseUsageMetrics>',
    'fleet_summary': :'Array<OCI::DatabaseManagement::Models::MySqlFleetSummary>'
    # 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



99
100
101
102
103
104
105
106
107
# File 'lib/oci/database_management/models/my_sql_fleet_metrics.rb', line 99

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

  self.class == other.class &&
    start_time == other.start_time &&
    end_time == other.end_time &&
    fleet_databases == other.fleet_databases &&
    fleet_summary == other.fleet_summary
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



132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
# File 'lib/oci/database_management/models/my_sql_fleet_metrics.rb', line 132

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


112
113
114
# File 'lib/oci/database_management/models/my_sql_fleet_metrics.rb', line 112

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



121
122
123
# File 'lib/oci/database_management/models/my_sql_fleet_metrics.rb', line 121

def hash
  [start_time, end_time, fleet_databases, fleet_summary].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



165
166
167
168
169
170
171
172
173
174
# File 'lib/oci/database_management/models/my_sql_fleet_metrics.rb', line 165

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



159
160
161
# File 'lib/oci/database_management/models/my_sql_fleet_metrics.rb', line 159

def to_s
  to_hash.to_s
end