Skip to content

Latest commit

 

History

History
40 lines (34 loc) · 2.53 KB

File metadata and controls

40 lines (34 loc) · 2.53 KB

IntersightClient::RecommendationPhysicalItem

Properties

Name Type Description Notes
class_id String 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. [default to 'recommendation.PhysicalItem']
object_type String The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. [default to 'recommendation.PhysicalItem']
capacity Integer Capacity of the physical entity added. [optional][readonly]
count Integer Count of number of items/devices to be added.For example, number of disks to add on a node PhysicalItem in case of HyperFlex Cluster recommendation. [optional][readonly]
is_new Boolean If the PhysicalItem is new, this is set to true, else false. [optional][readonly]
max_count Integer Maximum number of items/devices which can be added on this PhysicalItem.For example, maximum number of disks allowed on a node PhysicalItem in case of HyperFlex Cluster recommendation. [optional][readonly]
model String Model of the recommended physical device which is externally identifiable. [optional][readonly]
source_moid String Moid of the managed object which represents the existing physical entity. [optional][readonly]
unit String Unit of the new capacity. * `TB` - The Enum value TB represents that the measurement unit is in terabytes. * `MB` - The Enum value MB represents that the measurement unit is in megabytes. [optional][readonly][default to 'TB']
uuid String Uuid of the recommended physical device. [optional][readonly]
capacity_runway RecommendationCapacityRunwayRelationship [optional]
physical_item Array<RecommendationPhysicalItemRelationship> An array of relationships to recommendationPhysicalItem resources. [optional][readonly]

Example

require 'intersight_client'

instance = IntersightClient::RecommendationPhysicalItem.new(
  class_id: null,
  object_type: null,
  capacity: null,
  count: null,
  is_new: null,
  max_count: null,
  model: null,
  source_moid: null,
  unit: null,
  uuid: null,
  capacity_runway: null,
  physical_item: null
)