Class: IntersightClient::ComputeBoard
- Inherits:
-
EquipmentBase
- Object
- MoBaseMo
- InventoryBase
- EquipmentBase
- IntersightClient::ComputeBoard
- Defined in:
- lib/intersight_client/models/compute_board.rb
Overview
Mother board of a server.
Defined Under Namespace
Classes: EnumAttributeValidator
Instance Attribute Summary collapse
-
#board_id ⇒ Object
Unique identifier of the mother board present in the server.
-
#class_id ⇒ Object
The fully-qualified name of the instantiated, concrete type.
-
#compute_blade ⇒ Object
Returns the value of attribute compute_blade.
-
#compute_rack_unit ⇒ Object
Returns the value of attribute compute_rack_unit.
-
#cpu_type_controller ⇒ Object
The type of central processing unit on the mother board.
-
#equipment_tpms ⇒ Object
An array of relationships to equipmentTpm resources.
-
#graphics_cards ⇒ Object
An array of relationships to graphicsCard resources.
-
#inventory_device_info ⇒ Object
Returns the value of attribute inventory_device_info.
-
#memory_arrays ⇒ Object
An array of relationships to memoryArray resources.
-
#object_type ⇒ Object
The fully-qualified name of the instantiated, concrete type.
-
#oper_power_state ⇒ Object
Current power state of the mother board of the server.
-
#oper_reason ⇒ Object
Returns the value of attribute oper_reason.
-
#pci_coprocessor_cards ⇒ Object
An array of relationships to pciCoprocessorCard resources.
-
#pci_switch ⇒ Object
An array of relationships to pciSwitch resources.
-
#persistent_memory_configuration ⇒ Object
Returns the value of attribute persistent_memory_configuration.
-
#processors ⇒ Object
An array of relationships to processorUnit resources.
-
#registered_device ⇒ Object
Returns the value of attribute registered_device.
-
#security_units ⇒ Object
An array of relationships to securityUnit resources.
-
#storage_controllers ⇒ Object
An array of relationships to storageController resources.
-
#storage_flex_flash_controllers ⇒ Object
An array of relationships to storageFlexFlashController resources.
-
#storage_flex_util_controllers ⇒ Object
An array of relationships to storageFlexUtilController resources.
Attributes inherited from EquipmentBase
#model, #presence, #previous_fru, #revision, #serial, #vendor
Attributes inherited from InventoryBase
Attributes inherited from MoBaseMo
#account_moid, #ancestors, #create_time, #display_names, #domain_group_moid, #mod_time, #moid, #owners, #parent, #permission_resources, #shared_scope, #tags, #version_context
Class Method Summary collapse
-
.acceptable_attribute_map ⇒ Object
Returns the key-value map of all the JSON attributes this model knows about, including the ones defined in its parent(s).
-
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about, including the ones defined in its parent(s).
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.build_from_hash(attributes) ⇒ Object
Builds the object from hash.
-
.openapi_all_of ⇒ Object
List of class defined in allOf (OpenAPI v3).
-
.openapi_discriminator_name ⇒ Object
discriminator’s property name in OpenAPI v3.
-
.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 = {}) ⇒ ComputeBoard
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 = {}) ⇒ ComputeBoard
Initializes the object
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 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 317 318 319 |
# File 'lib/intersight_client/models/compute_board.rb', line 194 def initialize(attributes = {}) if (!attributes.is_a?(Hash)) fail ArgumentError, "The input argument (attributes) must be a hash in `IntersightClient::ComputeBoard` 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.acceptable_attribute_map.key?(k.to_sym)) fail ArgumentError, "`#{k}` is not a valid attribute in `#{self.class.name}`. Please check the name to make sure it's valid. List of attributes: " + self.class.acceptable_attribute_map.keys.inspect end h[k.to_sym] = v } # call parent's initialize super(attributes) if attributes.key?(:'class_id') self.class_id = attributes[:'class_id'] else self.class_id = 'compute.Board' end if attributes.key?(:'object_type') self.object_type = attributes[:'object_type'] else self.object_type = 'compute.Board' end if attributes.key?(:'board_id') self.board_id = attributes[:'board_id'] end if attributes.key?(:'cpu_type_controller') self.cpu_type_controller = attributes[:'cpu_type_controller'] end if attributes.key?(:'oper_power_state') self.oper_power_state = attributes[:'oper_power_state'] end if attributes.key?(:'oper_reason') if (value = attributes[:'oper_reason']).is_a?(Array) self.oper_reason = value end end if attributes.key?(:'compute_blade') self.compute_blade = attributes[:'compute_blade'] end if attributes.key?(:'compute_rack_unit') self.compute_rack_unit = attributes[:'compute_rack_unit'] end if attributes.key?(:'equipment_tpms') if (value = attributes[:'equipment_tpms']).is_a?(Array) self.equipment_tpms = value end end if attributes.key?(:'graphics_cards') if (value = attributes[:'graphics_cards']).is_a?(Array) self.graphics_cards = value end end if attributes.key?(:'inventory_device_info') self.inventory_device_info = attributes[:'inventory_device_info'] end if attributes.key?(:'memory_arrays') if (value = attributes[:'memory_arrays']).is_a?(Array) self.memory_arrays = value end end if attributes.key?(:'pci_coprocessor_cards') if (value = attributes[:'pci_coprocessor_cards']).is_a?(Array) self.pci_coprocessor_cards = value end end if attributes.key?(:'pci_switch') if (value = attributes[:'pci_switch']).is_a?(Array) self.pci_switch = value end end if attributes.key?(:'persistent_memory_configuration') self.persistent_memory_configuration = attributes[:'persistent_memory_configuration'] end if attributes.key?(:'processors') if (value = attributes[:'processors']).is_a?(Array) self.processors = value end end if attributes.key?(:'registered_device') self.registered_device = attributes[:'registered_device'] end if attributes.key?(:'security_units') if (value = attributes[:'security_units']).is_a?(Array) self.security_units = value end end if attributes.key?(:'storage_controllers') if (value = attributes[:'storage_controllers']).is_a?(Array) self.storage_controllers = value end end if attributes.key?(:'storage_flex_flash_controllers') if (value = attributes[:'storage_flex_flash_controllers']).is_a?(Array) self.storage_flex_flash_controllers = value end end if attributes.key?(:'storage_flex_util_controllers') if (value = attributes[:'storage_flex_util_controllers']).is_a?(Array) self.storage_flex_util_controllers = value end end end |
Instance Attribute Details
#board_id ⇒ Object
Unique identifier of the mother board present in the server.
26 27 28 |
# File 'lib/intersight_client/models/compute_board.rb', line 26 def board_id @board_id end |
#class_id ⇒ Object
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
20 21 22 |
# File 'lib/intersight_client/models/compute_board.rb', line 20 def class_id @class_id end |
#compute_blade ⇒ Object
Returns the value of attribute compute_blade.
36 37 38 |
# File 'lib/intersight_client/models/compute_board.rb', line 36 def compute_blade @compute_blade end |
#compute_rack_unit ⇒ Object
Returns the value of attribute compute_rack_unit.
38 39 40 |
# File 'lib/intersight_client/models/compute_board.rb', line 38 def compute_rack_unit @compute_rack_unit end |
#cpu_type_controller ⇒ Object
The type of central processing unit on the mother board.
29 30 31 |
# File 'lib/intersight_client/models/compute_board.rb', line 29 def cpu_type_controller @cpu_type_controller end |
#equipment_tpms ⇒ Object
An array of relationships to equipmentTpm resources.
41 42 43 |
# File 'lib/intersight_client/models/compute_board.rb', line 41 def equipment_tpms @equipment_tpms end |
#graphics_cards ⇒ Object
An array of relationships to graphicsCard resources.
44 45 46 |
# File 'lib/intersight_client/models/compute_board.rb', line 44 def graphics_cards @graphics_cards end |
#inventory_device_info ⇒ Object
Returns the value of attribute inventory_device_info.
46 47 48 |
# File 'lib/intersight_client/models/compute_board.rb', line 46 def inventory_device_info @inventory_device_info end |
#memory_arrays ⇒ Object
An array of relationships to memoryArray resources.
49 50 51 |
# File 'lib/intersight_client/models/compute_board.rb', line 49 def memory_arrays @memory_arrays end |
#object_type ⇒ Object
The fully-qualified name of the instantiated, concrete type. The value should be the same as the ‘ClassId’ property.
23 24 25 |
# File 'lib/intersight_client/models/compute_board.rb', line 23 def object_type @object_type end |
#oper_power_state ⇒ Object
Current power state of the mother board of the server.
32 33 34 |
# File 'lib/intersight_client/models/compute_board.rb', line 32 def oper_power_state @oper_power_state end |
#oper_reason ⇒ Object
Returns the value of attribute oper_reason.
34 35 36 |
# File 'lib/intersight_client/models/compute_board.rb', line 34 def oper_reason @oper_reason end |
#pci_coprocessor_cards ⇒ Object
An array of relationships to pciCoprocessorCard resources.
52 53 54 |
# File 'lib/intersight_client/models/compute_board.rb', line 52 def pci_coprocessor_cards @pci_coprocessor_cards end |
#pci_switch ⇒ Object
An array of relationships to pciSwitch resources.
55 56 57 |
# File 'lib/intersight_client/models/compute_board.rb', line 55 def pci_switch @pci_switch end |
#persistent_memory_configuration ⇒ Object
Returns the value of attribute persistent_memory_configuration.
57 58 59 |
# File 'lib/intersight_client/models/compute_board.rb', line 57 def persistent_memory_configuration @persistent_memory_configuration end |
#processors ⇒ Object
An array of relationships to processorUnit resources.
60 61 62 |
# File 'lib/intersight_client/models/compute_board.rb', line 60 def processors @processors end |
#registered_device ⇒ Object
Returns the value of attribute registered_device.
62 63 64 |
# File 'lib/intersight_client/models/compute_board.rb', line 62 def registered_device @registered_device end |
#security_units ⇒ Object
An array of relationships to securityUnit resources.
65 66 67 |
# File 'lib/intersight_client/models/compute_board.rb', line 65 def security_units @security_units end |
#storage_controllers ⇒ Object
An array of relationships to storageController resources.
68 69 70 |
# File 'lib/intersight_client/models/compute_board.rb', line 68 def storage_controllers @storage_controllers end |
#storage_flex_flash_controllers ⇒ Object
An array of relationships to storageFlexFlashController resources.
71 72 73 |
# File 'lib/intersight_client/models/compute_board.rb', line 71 def storage_flex_flash_controllers @storage_flex_flash_controllers end |
#storage_flex_util_controllers ⇒ Object
An array of relationships to storageFlexUtilController resources.
74 75 76 |
# File 'lib/intersight_client/models/compute_board.rb', line 74 def storage_flex_util_controllers @storage_flex_util_controllers end |
Class Method Details
.acceptable_attribute_map ⇒ Object
Returns the key-value map of all the JSON attributes this model knows about, including the ones defined in its parent(s)
131 132 133 |
# File 'lib/intersight_client/models/compute_board.rb', line 131 def self.acceptable_attribute_map attribute_map.merge(superclass.acceptable_attribute_map) end |
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about, including the ones defined in its parent(s)
126 127 128 |
# File 'lib/intersight_client/models/compute_board.rb', line 126 def self.acceptable_attributes attribute_map.values.concat(superclass.acceptable_attributes) end |
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
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 |
# File 'lib/intersight_client/models/compute_board.rb', line 99 def self.attribute_map { :'class_id' => :'ClassId', :'object_type' => :'ObjectType', :'board_id' => :'BoardId', :'cpu_type_controller' => :'CpuTypeController', :'oper_power_state' => :'OperPowerState', :'oper_reason' => :'OperReason', :'compute_blade' => :'ComputeBlade', :'compute_rack_unit' => :'ComputeRackUnit', :'equipment_tpms' => :'EquipmentTpms', :'graphics_cards' => :'GraphicsCards', :'inventory_device_info' => :'InventoryDeviceInfo', :'memory_arrays' => :'MemoryArrays', :'pci_coprocessor_cards' => :'PciCoprocessorCards', :'pci_switch' => :'PciSwitch', :'persistent_memory_configuration' => :'PersistentMemoryConfiguration', :'processors' => :'Processors', :'registered_device' => :'RegisteredDevice', :'security_units' => :'SecurityUnits', :'storage_controllers' => :'StorageControllers', :'storage_flex_flash_controllers' => :'StorageFlexFlashControllers', :'storage_flex_util_controllers' => :'StorageFlexUtilControllers' } end |
.build_from_hash(attributes) ⇒ Object
Builds the object from hash
411 412 413 |
# File 'lib/intersight_client/models/compute_board.rb', line 411 def self.build_from_hash(attributes) new.build_from_hash(attributes) end |
.openapi_all_of ⇒ Object
List of class defined in allOf (OpenAPI v3)
180 181 182 183 184 185 |
# File 'lib/intersight_client/models/compute_board.rb', line 180 def self.openapi_all_of [ :'ComputeBoardAllOf', :'EquipmentBase' ] end |
.openapi_discriminator_name ⇒ Object
discriminator’s property name in OpenAPI v3
188 189 190 |
# File 'lib/intersight_client/models/compute_board.rb', line 188 def self.openapi_discriminator_name :'ClassId' end |
.openapi_nullable ⇒ Object
List of attributes with nullable: true
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 |
# File 'lib/intersight_client/models/compute_board.rb', line 163 def self.openapi_nullable Set.new([ :'oper_reason', :'equipment_tpms', :'graphics_cards', :'memory_arrays', :'pci_coprocessor_cards', :'pci_switch', :'processors', :'security_units', :'storage_controllers', :'storage_flex_flash_controllers', :'storage_flex_util_controllers' ]) end |
.openapi_types ⇒ Object
Attribute type mapping.
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 |
# File 'lib/intersight_client/models/compute_board.rb', line 136 def self.openapi_types { :'class_id' => :'String', :'object_type' => :'String', :'board_id' => :'Integer', :'cpu_type_controller' => :'String', :'oper_power_state' => :'String', :'oper_reason' => :'Array<String>', :'compute_blade' => :'ComputeBladeRelationship', :'compute_rack_unit' => :'ComputeRackUnitRelationship', :'equipment_tpms' => :'Array<EquipmentTpmRelationship>', :'graphics_cards' => :'Array<GraphicsCardRelationship>', :'inventory_device_info' => :'InventoryDeviceInfoRelationship', :'memory_arrays' => :'Array<MemoryArrayRelationship>', :'pci_coprocessor_cards' => :'Array<PciCoprocessorCardRelationship>', :'pci_switch' => :'Array<PciSwitchRelationship>', :'persistent_memory_configuration' => :'MemoryPersistentMemoryConfigurationRelationship', :'processors' => :'Array<ProcessorUnitRelationship>', :'registered_device' => :'AssetDeviceRegistrationRelationship', :'security_units' => :'Array<SecurityUnitRelationship>', :'storage_controllers' => :'Array<StorageControllerRelationship>', :'storage_flex_flash_controllers' => :'Array<StorageFlexFlashControllerRelationship>', :'storage_flex_util_controllers' => :'Array<StorageFlexUtilControllerRelationship>' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 |
# File 'lib/intersight_client/models/compute_board.rb', line 370 def ==(o) return true if self.equal?(o) self.class == o.class && class_id == o.class_id && object_type == o.object_type && board_id == o.board_id && cpu_type_controller == o.cpu_type_controller && oper_power_state == o.oper_power_state && oper_reason == o.oper_reason && compute_blade == o.compute_blade && compute_rack_unit == o.compute_rack_unit && equipment_tpms == o.equipment_tpms && graphics_cards == o.graphics_cards && inventory_device_info == o.inventory_device_info && memory_arrays == o.memory_arrays && pci_coprocessor_cards == o.pci_coprocessor_cards && pci_switch == o.pci_switch && persistent_memory_configuration == o.persistent_memory_configuration && processors == o.processors && registered_device == o.registered_device && security_units == o.security_units && storage_controllers == o.storage_controllers && storage_flex_flash_controllers == o.storage_flex_flash_controllers && storage_flex_util_controllers == o.storage_flex_util_controllers && super(o) end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 |
# File 'lib/intersight_client/models/compute_board.rb', line 442 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 = IntersightClient.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
513 514 515 516 517 518 519 520 521 522 523 524 525 |
# File 'lib/intersight_client/models/compute_board.rb', line 513 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
418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 |
# File 'lib/intersight_client/models/compute_board.rb', line 418 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) super(attributes) ComputeBoard.openapi_types.each_pair do |key, type| if attributes[ComputeBoard.attribute_map[key]].nil? && ComputeBoard.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[ComputeBoard.attribute_map[key]].is_a?(Array) self.send("#{key}=", attributes[ComputeBoard.attribute_map[key]].map { |v| _deserialize($1, v) }) end elsif !attributes[ComputeBoard.attribute_map[key]].nil? self.send("#{key}=", _deserialize(type, attributes[ComputeBoard.attribute_map[key]])) end end self end |
#eql?(o) ⇒ Boolean
398 399 400 |
# File 'lib/intersight_client/models/compute_board.rb', line 398 def eql?(o) self == o end |
#hash ⇒ Integer
Calculates hash code according to all attributes.
404 405 406 |
# File 'lib/intersight_client/models/compute_board.rb', line 404 def hash [class_id, object_type, board_id, cpu_type_controller, oper_power_state, oper_reason, compute_blade, compute_rack_unit, equipment_tpms, graphics_cards, inventory_device_info, memory_arrays, pci_coprocessor_cards, pci_switch, persistent_memory_configuration, processors, registered_device, security_units, storage_controllers, storage_flex_flash_controllers, storage_flex_util_controllers].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
323 324 325 326 327 328 329 330 331 332 333 334 |
# File 'lib/intersight_client/models/compute_board.rb', line 323 def list_invalid_properties invalid_properties = super if @class_id.nil? invalid_properties.push('invalid value for "class_id", class_id cannot be nil.') end if @object_type.nil? invalid_properties.push('invalid value for "object_type", object_type cannot be nil.') end invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
489 490 491 |
# File 'lib/intersight_client/models/compute_board.rb', line 489 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
495 496 497 498 499 500 501 502 503 504 505 506 507 |
# File 'lib/intersight_client/models/compute_board.rb', line 495 def to_hash hash = super ComputeBoard.attribute_map.each_pair do |attr, param| value = self.send(attr) if value.nil? is_nullable = ComputeBoard.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
483 484 485 |
# File 'lib/intersight_client/models/compute_board.rb', line 483 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
338 339 340 341 342 343 344 345 346 |
# File 'lib/intersight_client/models/compute_board.rb', line 338 def valid? return false if @class_id.nil? class_id_validator = EnumAttributeValidator.new('String', ["compute.Board"]) return false unless class_id_validator.valid?(@class_id) return false if @object_type.nil? object_type_validator = EnumAttributeValidator.new('String', ["compute.Board"]) return false unless object_type_validator.valid?(@object_type) true && super end |