Class: OCI::Core::Models::InstanceReservationConfigDetails
- Inherits:
-
Object
- Object
- OCI::Core::Models::InstanceReservationConfigDetails
- Defined in:
- lib/oci/core/models/instance_reservation_config_details.rb
Overview
A template that contains the settings to use when defining the instance capacity configuration.
Instance Attribute Summary collapse
- #cluster_config ⇒ OCI::Core::Models::ClusterConfigDetails
-
#fault_domain ⇒ String
The fault domain to use for instances created using this capacity configuration.
-
#instance_shape ⇒ String
[Required] The shape requested when launching instances using reserved capacity.
- #instance_shape_config ⇒ OCI::Core::Models::InstanceReservationShapeConfigDetails
-
#reserved_count ⇒ Integer
[Required] The total number of instances that can be launched from the capacity configuration.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(other) ⇒ Object
Checks equality by comparing each attribute.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(other) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ InstanceReservationConfigDetails
constructor
Initializes the object.
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
Constructor Details
#initialize(attributes = {}) ⇒ InstanceReservationConfigDetails
Initializes the object
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 |
# File 'lib/oci/core/models/instance_reservation_config_details.rb', line 81 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.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.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.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'] end |
Instance Attribute Details
#cluster_config ⇒ OCI::Core::Models::ClusterConfigDetails
38 39 40 |
# File 'lib/oci/core/models/instance_reservation_config_details.rb', line 38 def cluster_config @cluster_config end |
#fault_domain ⇒ String
The fault domain to use for instances created using this capacity configuration. For more information, see Fault Domains. If you do not specify the fault domain, the capacity is available for an instance that does not specify a fault domain. To change the fault domain for a reservation, delete the reservation and create a new one in the preferred fault domain.
To retrieve a list of fault domains, use the ListFaultDomains
operation in the Identity and Access Management Service API.
Example: FAULT-DOMAIN-1
35 36 37 |
# File 'lib/oci/core/models/instance_reservation_config_details.rb', line 35 def fault_domain @fault_domain end |
#instance_shape ⇒ String
[Required] The shape requested when launching instances using reserved capacity. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance. You can list all available shapes by calling ListComputeCapacityReservationInstanceShapes.
18 19 20 |
# File 'lib/oci/core/models/instance_reservation_config_details.rb', line 18 def instance_shape @instance_shape end |
#instance_shape_config ⇒ OCI::Core::Models::InstanceReservationShapeConfigDetails
21 22 23 |
# File 'lib/oci/core/models/instance_reservation_config_details.rb', line 21 def instance_shape_config @instance_shape_config end |
#reserved_count ⇒ Integer
[Required] The total number of instances that can be launched from the capacity configuration.
42 43 44 |
# File 'lib/oci/core/models/instance_reservation_config_details.rb', line 42 def reserved_count @reserved_count end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
45 46 47 48 49 50 51 52 53 54 55 |
# File 'lib/oci/core/models/instance_reservation_config_details.rb', line 45 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'instance_shape': :'instanceShape', 'instance_shape_config': :'instanceShapeConfig', 'fault_domain': :'faultDomain', 'cluster_config': :'clusterConfig', 'reserved_count': :'reservedCount' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/oci/core/models/instance_reservation_config_details.rb', line 58 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'instance_shape': :'String', 'instance_shape_config': :'OCI::Core::Models::InstanceReservationShapeConfigDetails', 'fault_domain': :'String', 'cluster_config': :'OCI::Core::Models::ClusterConfigDetails', 'reserved_count': :'Integer' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
125 126 127 128 129 130 131 132 133 134 |
# File 'lib/oci/core/models/instance_reservation_config_details.rb', line 125 def ==(other) return true if equal?(other) self.class == other.class && instance_shape == other.instance_shape && instance_shape_config == other.instance_shape_config && fault_domain == other.fault_domain && cluster_config == other.cluster_config && reserved_count == other.reserved_count end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 |
# File 'lib/oci/core/models/instance_reservation_config_details.rb', line 159 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
139 140 141 |
# File 'lib/oci/core/models/instance_reservation_config_details.rb', line 139 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
148 149 150 |
# File 'lib/oci/core/models/instance_reservation_config_details.rb', line 148 def hash [instance_shape, instance_shape_config, fault_domain, cluster_config, reserved_count].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
192 193 194 195 196 197 198 199 200 201 |
# File 'lib/oci/core/models/instance_reservation_config_details.rb', line 192 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_s ⇒ String
Returns the string representation of the object
186 187 188 |
# File 'lib/oci/core/models/instance_reservation_config_details.rb', line 186 def to_s to_hash.to_s end |