Class: IbmCloudPower::SharedProcessorPool
- Inherits:
-
Object
- Object
- IbmCloudPower::SharedProcessorPool
- Defined in:
- lib/ibm_cloud_power/models/shared_processor_pool.rb
Instance Attribute Summary collapse
-
#allocated_cores ⇒ Object
The amount of allocated processor cores for the Shared Processor Pool.
-
#available_cores ⇒ Object
The amount of available processor cores for the Shared Processor Pool.
-
#crn ⇒ Object
Returns the value of attribute crn.
-
#dedicated_host_id ⇒ Object
ID of the dedicated host where the Shared Processor Pool resides, if applicable.
-
#host_group ⇒ Object
The host group the host belongs to.
-
#host_id ⇒ Object
The ID of the host where the Shared Processor Pool resides.
-
#id ⇒ Object
The id of the Shared Processor Pool.
-
#name ⇒ Object
The name of the Shared Processor Pool.
-
#reserved_cores ⇒ Object
The amount of reserved processor cores for the Shared Processor Pool.
-
#shared_processor_pool_placement_groups ⇒ Object
list of Shared Processor Pool Placement Groups.
-
#status ⇒ Object
The status of the Shared Processor Pool.
-
#status_detail ⇒ Object
The status details of the Shared Processor Pool.
-
#user_tags ⇒ Object
Returns the value of attribute user_tags.
Class Method Summary collapse
-
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about.
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.build_from_hash(attributes) ⇒ Object
Builds the object from hash.
-
.openapi_nullable ⇒ Object
List of attributes with nullable: true.
-
.openapi_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(o) ⇒ Object
Checks equality by comparing each attribute.
-
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type.
-
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(o) ⇒ Boolean
-
#hash ⇒ Integer
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ SharedProcessorPool
constructor
Initializes the object.
-
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons.
-
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility).
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
-
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid.
Constructor Details
#initialize(attributes = {}) ⇒ SharedProcessorPool
Initializes the object
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 108 def initialize(attributes = {}) if (!attributes.is_a?(Hash)) fail ArgumentError, "The input argument (attributes) must be a hash in `IbmCloudPower::SharedProcessorPool` initialize method" end # check to see if the attribute exists and convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| if (!self.class.attribute_map.key?(k.to_sym)) fail ArgumentError, "`#{k}` is not a valid attribute in `IbmCloudPower::SharedProcessorPool`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect end h[k.to_sym] = v } if attributes.key?(:'allocated_cores') self.allocated_cores = attributes[:'allocated_cores'] end if attributes.key?(:'available_cores') self.available_cores = attributes[:'available_cores'] end if attributes.key?(:'crn') self.crn = attributes[:'crn'] end if attributes.key?(:'dedicated_host_id') self.dedicated_host_id = attributes[:'dedicated_host_id'] end if attributes.key?(:'host_group') self.host_group = attributes[:'host_group'] end if attributes.key?(:'host_id') self.host_id = attributes[:'host_id'] end if attributes.key?(:'id') self.id = attributes[:'id'] end if attributes.key?(:'name') self.name = attributes[:'name'] end if attributes.key?(:'reserved_cores') self.reserved_cores = attributes[:'reserved_cores'] end if attributes.key?(:'shared_processor_pool_placement_groups') if (value = attributes[:'shared_processor_pool_placement_groups']).is_a?(Array) self.shared_processor_pool_placement_groups = value end end if attributes.key?(:'status') self.status = attributes[:'status'] end if attributes.key?(:'status_detail') self.status_detail = attributes[:'status_detail'] end if attributes.key?(:'user_tags') self. = attributes[:'user_tags'] end end |
Instance Attribute Details
#allocated_cores ⇒ Object
The amount of allocated processor cores for the Shared Processor Pool
19 20 21 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 19 def allocated_cores @allocated_cores end |
#available_cores ⇒ Object
The amount of available processor cores for the Shared Processor Pool
22 23 24 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 22 def available_cores @available_cores end |
#crn ⇒ Object
Returns the value of attribute crn.
24 25 26 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 24 def crn @crn end |
#dedicated_host_id ⇒ Object
ID of the dedicated host where the Shared Processor Pool resides, if applicable
27 28 29 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 27 def dedicated_host_id @dedicated_host_id end |
#host_group ⇒ Object
The host group the host belongs to
30 31 32 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 30 def host_group @host_group end |
#host_id ⇒ Object
The ID of the host where the Shared Processor Pool resides
33 34 35 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 33 def host_id @host_id end |
#id ⇒ Object
The id of the Shared Processor Pool
36 37 38 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 36 def id @id end |
#name ⇒ Object
The name of the Shared Processor Pool
39 40 41 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 39 def name @name end |
#reserved_cores ⇒ Object
The amount of reserved processor cores for the Shared Processor Pool
42 43 44 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 42 def reserved_cores @reserved_cores end |
#shared_processor_pool_placement_groups ⇒ Object
list of Shared Processor Pool Placement Groups
45 46 47 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 45 def shared_processor_pool_placement_groups @shared_processor_pool_placement_groups end |
#status ⇒ Object
The status of the Shared Processor Pool
48 49 50 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 48 def status @status end |
#status_detail ⇒ Object
The status details of the Shared Processor Pool
51 52 53 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 51 def status_detail @status_detail end |
#user_tags ⇒ Object
Returns the value of attribute user_tags.
53 54 55 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 53 def end |
Class Method Details
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about
75 76 77 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 75 def self.acceptable_attributes attribute_map.values end |
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 56 def self.attribute_map { :'allocated_cores' => :'allocatedCores', :'available_cores' => :'availableCores', :'crn' => :'crn', :'dedicated_host_id' => :'dedicatedHostID', :'host_group' => :'hostGroup', :'host_id' => :'hostID', :'id' => :'id', :'name' => :'name', :'reserved_cores' => :'reservedCores', :'shared_processor_pool_placement_groups' => :'sharedProcessorPoolPlacementGroups', :'status' => :'status', :'status_detail' => :'statusDetail', :'user_tags' => :'userTags' } end |
.build_from_hash(attributes) ⇒ Object
Builds the object from hash
249 250 251 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 249 def self.build_from_hash(attributes) new.build_from_hash(attributes) end |
.openapi_nullable ⇒ Object
List of attributes with nullable: true
99 100 101 102 103 104 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 99 def self.openapi_nullable Set.new([ :'crn', :'user_tags' ]) end |
.openapi_types ⇒ Object
Attribute type mapping.
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 80 def self.openapi_types { :'allocated_cores' => :'Float', :'available_cores' => :'Float', :'crn' => :'String', :'dedicated_host_id' => :'String', :'host_group' => :'String', :'host_id' => :'Integer', :'id' => :'String', :'name' => :'String', :'reserved_cores' => :'Integer', :'shared_processor_pool_placement_groups' => :'Array<SharedProcessorPoolPlacementGroup>', :'status' => :'String', :'status_detail' => :'String', :'user_tags' => :'Array' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 216 def ==(o) return true if self.equal?(o) self.class == o.class && allocated_cores == o.allocated_cores && available_cores == o.available_cores && crn == o.crn && dedicated_host_id == o.dedicated_host_id && host_group == o.host_group && host_id == o.host_id && id == o.id && name == o.name && reserved_cores == o.reserved_cores && shared_processor_pool_placement_groups == o.shared_processor_pool_placement_groups && status == o.status && status_detail == o.status_detail && == o. end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 279 def _deserialize(type, value) case type.to_sym when :Time Time.parse(value) when :Date Date.parse(value) when :String value.to_s when :Integer value.to_i when :Float value.to_f when :Boolean if value.to_s =~ /\A(true|t|yes|y|1)\z/i true else false end when :Object # generic object (usually a Hash), return directly value when /\AArray<(?<inner_type>.+)>\z/ inner_type = Regexp.last_match[:inner_type] value.map { |v| _deserialize(inner_type, v) } when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/ k_type = Regexp.last_match[:k_type] v_type = Regexp.last_match[:v_type] {}.tap do |hash| value.each do |k, v| hash[_deserialize(k_type, k)] = _deserialize(v_type, v) end end else # model # models (e.g. Pet) or oneOf klass = IbmCloudPower.const_get(type) klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value) end end |
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value
350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 350 def _to_hash(value) if value.is_a?(Array) value.compact.map { |v| _to_hash(v) } elsif value.is_a?(Hash) {}.tap do |hash| value.each { |k, v| hash[k] = _to_hash(v) } end elsif value.respond_to? :to_hash value.to_hash else value end end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 256 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.openapi_types.each_pair do |key, type| if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key) self.send("#{key}=", nil) elsif type =~ /\AArray<(.*)>/i # check to ensure the input is an array given that the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) }) end elsif !attributes[self.class.attribute_map[key]].nil? self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]])) end end self end |
#eql?(o) ⇒ Boolean
236 237 238 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 236 def eql?(o) self == o end |
#hash ⇒ Integer
Calculates hash code according to all attributes.
242 243 244 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 242 def hash [allocated_cores, available_cores, crn, dedicated_host_id, host_group, host_id, id, name, reserved_cores, shared_processor_pool_placement_groups, status, status_detail, ].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 178 def list_invalid_properties invalid_properties = Array.new if @allocated_cores.nil? invalid_properties.push('invalid value for "allocated_cores", allocated_cores cannot be nil.') end if @available_cores.nil? invalid_properties.push('invalid value for "available_cores", available_cores cannot be nil.') end if @id.nil? invalid_properties.push('invalid value for "id", id cannot be nil.') end if @name.nil? invalid_properties.push('invalid value for "name", name cannot be nil.') end if @reserved_cores.nil? invalid_properties.push('invalid value for "reserved_cores", reserved_cores cannot be nil.') end invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
326 327 328 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 326 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
332 333 334 335 336 337 338 339 340 341 342 343 344 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 332 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = self.send(attr) if value.nil? is_nullable = self.class.openapi_nullable.include?(attr) next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) end hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
320 321 322 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 320 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
205 206 207 208 209 210 211 212 |
# File 'lib/ibm_cloud_power/models/shared_processor_pool.rb', line 205 def valid? return false if @allocated_cores.nil? return false if @available_cores.nil? return false if @id.nil? return false if @name.nil? return false if @reserved_cores.nil? true end |