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
-
#cluster_placement_group_id ⇒ String
The OCID of the cluster placement group for this instance reservation capacity configuration.
-
#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
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 122 123 124 125 126 127 128 129 |
# File 'lib/oci/core/models/instance_reservation_config_details.rb', line 88 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'] self.cluster_placement_group_id = attributes[:'clusterPlacementGroupId'] if attributes[:'clusterPlacementGroupId'] raise 'You cannot provide both :clusterPlacementGroupId and :cluster_placement_group_id' if attributes.key?(:'clusterPlacementGroupId') && attributes.key?(:'cluster_placement_group_id') self.cluster_placement_group_id = attributes[:'cluster_placement_group_id'] if attributes[:'cluster_placement_group_id'] 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 |
#cluster_placement_group_id ⇒ String
The OCID of the cluster placement group for this instance reservation capacity configuration.
46 47 48 |
# File 'lib/oci/core/models/instance_reservation_config_details.rb', line 46 def cluster_placement_group_id @cluster_placement_group_id 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.
49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'lib/oci/core/models/instance_reservation_config_details.rb', line 49 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'instance_shape': :'instanceShape', 'instance_shape_config': :'instanceShapeConfig', 'fault_domain': :'faultDomain', 'cluster_config': :'clusterConfig', 'reserved_count': :'reservedCount', 'cluster_placement_group_id': :'clusterPlacementGroupId' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
63 64 65 66 67 68 69 70 71 72 73 74 |
# File 'lib/oci/core/models/instance_reservation_config_details.rb', line 63 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', 'cluster_placement_group_id': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
138 139 140 141 142 143 144 145 146 147 148 |
# File 'lib/oci/core/models/instance_reservation_config_details.rb', line 138 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 && cluster_placement_group_id == other.cluster_placement_group_id end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 |
# File 'lib/oci/core/models/instance_reservation_config_details.rb', line 173 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
153 154 155 |
# File 'lib/oci/core/models/instance_reservation_config_details.rb', line 153 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
162 163 164 |
# File 'lib/oci/core/models/instance_reservation_config_details.rb', line 162 def hash [instance_shape, instance_shape_config, fault_domain, cluster_config, reserved_count, cluster_placement_group_id].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
206 207 208 209 210 211 212 213 214 215 |
# File 'lib/oci/core/models/instance_reservation_config_details.rb', line 206 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
200 201 202 |
# File 'lib/oci/core/models/instance_reservation_config_details.rb', line 200 def to_s to_hash.to_s end |