Class: OCI::Database::Models::DbSystemShapeSummary

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/database/models/db_system_shape_summary.rb

Overview

The shape of the DB System. The shape determines resources to allocate to the DB system - CPU cores and memory for VM shapes; CPU cores, memory and storage for non-VM (or bare metal) shapes. For a description of shapes, see [DB System Launch Options](docs.us-phoenix-1.oraclecloud.com/Content/Database/References/launchoptions.htm). To use any of the API operations, you must be authorized in an IAM policy. If you’re not authorized, talk to an administrator. If you’re an administrator who needs to write policies to give users access, see [Getting Started with Policies](docs.us-phoenix-1.oraclecloud.com/Content/Identity/Concepts/policygetstarted.htm).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ DbSystemShapeSummary

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :available_core_count (Integer)

    The value to assign to the #available_core_count property

  • :core_count_increment (Integer)

    The value to assign to the #core_count_increment property

  • :maximum_node_count (Integer)

    The value to assign to the #maximum_node_count property

  • :minimum_core_count (Integer)

    The value to assign to the #minimum_core_count property

  • :minimum_node_count (Integer)

    The value to assign to the #minimum_node_count property

  • :name (String)

    The value to assign to the #name property

  • :shape (String)

    The value to assign to the #shape property



51
52
53
54
55
56
57
58
59
60
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
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
# File 'lib/oci/database/models/db_system_shape_summary.rb', line 51

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}

  if attributes[:'availableCoreCount']
    self.available_core_count = attributes[:'availableCoreCount']
  end

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

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

  if attributes[:'coreCountIncrement']
    self.core_count_increment = attributes[:'coreCountIncrement']
  end

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

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

  if attributes[:'maximumNodeCount']
    self.maximum_node_count = attributes[:'maximumNodeCount']
  end

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

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

  if attributes[:'minimumCoreCount']
    self.minimum_core_count = attributes[:'minimumCoreCount']
  end

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

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

  if attributes[:'minimumNodeCount']
    self.minimum_node_count = attributes[:'minimumNodeCount']
  end

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

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

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

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

end

Instance Attribute Details

#available_core_countInteger

[Required] The maximum number of CPU cores that can be enabled on the DB System for this shape.

Returns:

  • (Integer)


15
16
17
# File 'lib/oci/database/models/db_system_shape_summary.rb', line 15

def available_core_count
  @available_core_count
end

#core_count_incrementInteger

The discrete number by which the CPU core count for this shape can be increased or decreased.

Returns:

  • (Integer)


19
20
21
# File 'lib/oci/database/models/db_system_shape_summary.rb', line 19

def core_count_increment
  @core_count_increment
end

#maximum_node_countInteger

The maximum number of database nodes available for this shape.

Returns:

  • (Integer)


23
24
25
# File 'lib/oci/database/models/db_system_shape_summary.rb', line 23

def maximum_node_count
  @maximum_node_count
end

#minimum_core_countInteger

The minimum number of CPU cores that can be enabled on the DB System for this shape.

Returns:

  • (Integer)


27
28
29
# File 'lib/oci/database/models/db_system_shape_summary.rb', line 27

def minimum_core_count
  @minimum_core_count
end

#minimum_node_countInteger

The minimum number of database nodes available for this shape.

Returns:

  • (Integer)


31
32
33
# File 'lib/oci/database/models/db_system_shape_summary.rb', line 31

def minimum_node_count
  @minimum_node_count
end

#nameString

[Required] The name of the shape used for the DB System.

Returns:

  • (String)


35
36
37
# File 'lib/oci/database/models/db_system_shape_summary.rb', line 35

def name
  @name
end

#shapeString

Deprecated. Use ‘name` instead of `shape`.

Returns:

  • (String)


39
40
41
# File 'lib/oci/database/models/db_system_shape_summary.rb', line 39

def shape
  @shape
end

Instance Method Details

#==(other_object) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • other_object (Object)

    to be compared



119
120
121
122
123
124
125
126
127
128
129
# File 'lib/oci/database/models/db_system_shape_summary.rb', line 119

def ==(other_object)
  return true if self.equal?(other_object)
  self.class == other_object.class &&
      available_core_count == other_object.available_core_count &&
      core_count_increment == other_object.core_count_increment &&
      maximum_node_count == other_object.maximum_node_count &&
      minimum_core_count == other_object.minimum_core_count &&
      minimum_node_count == other_object.minimum_node_count &&
      name == other_object.name &&
      shape == other_object.shape
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



146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
# File 'lib/oci/database/models/db_system_shape_summary.rb', line 146

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)
        self.public_method("#{key}=").call(attributes[self.class.attribute_map[key]].map{ |v| OCI::Internal::Util.convert_to_type($1, v) } )
      end
    elsif !attributes[self.class.attribute_map[key]].nil?
      self.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_object) ⇒ Boolean

Parameters:

  • other_object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


133
134
135
# File 'lib/oci/database/models/db_system_shape_summary.rb', line 133

def eql?(other_object)
  self == other_object
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



139
140
141
# File 'lib/oci/database/models/db_system_shape_summary.rb', line 139

def hash
  [available_core_count, core_count_increment, maximum_node_count, minimum_core_count, minimum_node_count, name, shape].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



171
172
173
174
175
176
177
178
179
# File 'lib/oci/database/models/db_system_shape_summary.rb', line 171

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



165
166
167
# File 'lib/oci/database/models/db_system_shape_summary.rb', line 165

def to_s
  to_hash.to_s
end