Class: OCI::Core::Models::InstanceReservationConfig

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/core/models/instance_reservation_config.rb

Overview

Data that defines the capacity configuration.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ InstanceReservationConfig

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):



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
116
117
118
119
120
121
# File 'lib/oci/core/models/instance_reservation_config.rb', line 80

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

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

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

  self.cluster_config = attributes[:'clusterConfig'] if attributes[:'clusterConfig']

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

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

  self.instance_shape = attributes[:'instanceShape'] if attributes[:'instanceShape']

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

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

  self.instance_shape_config = attributes[:'instanceShapeConfig'] if attributes[:'instanceShapeConfig']

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

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

  self.reserved_count = attributes[:'reservedCount'] if attributes[:'reservedCount']

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

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

  self.used_count = attributes[:'usedCount'] if attributes[:'usedCount']

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

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

Instance Attribute Details

#cluster_configOCI::Core::Models::ClusterConfigDetails



20
21
22
# File 'lib/oci/core/models/instance_reservation_config.rb', line 20

def cluster_config
  @cluster_config
end

#fault_domainString

The fault domain of this capacity configuration. If a value is not supplied, this capacity configuration is applicable to all fault domains in the specified availability domain. For more information, see Capacity Reservations.

Returns:

  • (String)


17
18
19
# File 'lib/oci/core/models/instance_reservation_config.rb', line 17

def fault_domain
  @fault_domain
end

#instance_shapeString

[Required] The shape to use when launching instances using compute capacity reservations. The shape determines the number of CPUs, the amount of memory, and other resources allocated to the instance. You can list all available shapes by calling ListComputeCapacityReservationInstanceShapes.

Returns:

  • (String)


27
28
29
# File 'lib/oci/core/models/instance_reservation_config.rb', line 27

def instance_shape
  @instance_shape
end

#instance_shape_configOCI::Core::Models::InstanceReservationShapeConfigDetails



30
31
32
# File 'lib/oci/core/models/instance_reservation_config.rb', line 30

def instance_shape_config
  @instance_shape_config
end

#reserved_countInteger

[Required] The total number of instances that can be launched from the capacity configuration.

Returns:

  • (Integer)


34
35
36
# File 'lib/oci/core/models/instance_reservation_config.rb', line 34

def reserved_count
  @reserved_count
end

#used_countInteger

[Required] The amount of capacity in use out of the total capacity reserved in this capacity configuration.

Returns:

  • (Integer)


38
39
40
# File 'lib/oci/core/models/instance_reservation_config.rb', line 38

def used_count
  @used_count
end

Class Method Details

.attribute_mapObject

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



41
42
43
44
45
46
47
48
49
50
51
52
# File 'lib/oci/core/models/instance_reservation_config.rb', line 41

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'fault_domain': :'faultDomain',
    'cluster_config': :'clusterConfig',
    'instance_shape': :'instanceShape',
    'instance_shape_config': :'instanceShapeConfig',
    'reserved_count': :'reservedCount',
    'used_count': :'usedCount'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



55
56
57
58
59
60
61
62
63
64
65
66
# File 'lib/oci/core/models/instance_reservation_config.rb', line 55

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'fault_domain': :'String',
    'cluster_config': :'OCI::Core::Models::ClusterConfigDetails',
    'instance_shape': :'String',
    'instance_shape_config': :'OCI::Core::Models::InstanceReservationShapeConfigDetails',
    'reserved_count': :'Integer',
    'used_count': :'Integer'
    # 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



130
131
132
133
134
135
136
137
138
139
140
# File 'lib/oci/core/models/instance_reservation_config.rb', line 130

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

  self.class == other.class &&
    fault_domain == other.fault_domain &&
    cluster_config == other.cluster_config &&
    instance_shape == other.instance_shape &&
    instance_shape_config == other.instance_shape_config &&
    reserved_count == other.reserved_count &&
    used_count == other.used_count
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



165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
# File 'lib/oci/core/models/instance_reservation_config.rb', line 165

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


145
146
147
# File 'lib/oci/core/models/instance_reservation_config.rb', line 145

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



154
155
156
# File 'lib/oci/core/models/instance_reservation_config.rb', line 154

def hash
  [fault_domain, cluster_config, instance_shape, instance_shape_config, reserved_count, used_count].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



198
199
200
201
202
203
204
205
206
207
# File 'lib/oci/core/models/instance_reservation_config.rb', line 198

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



192
193
194
# File 'lib/oci/core/models/instance_reservation_config.rb', line 192

def to_s
  to_hash.to_s
end