cim_fru.mof

来自「Pegasus is an open-source implementation」· MOF 代码 · 共 55 行

MOF
55
字号
// Copyright (c) 2005 DMTF.  All rights reserved.// <change cr="ArchCR00066.004" type="add">Add UmlPackagePath// qualifier values to CIM Schema.</change>// ==================================================================//  CIM_FRU// ==================================================================   [UMLPackagePath ( "CIM::Core::ProductFRU" ), Version ( "2.6.0" ),     Description (       "The CIM_FRU class is a vendor-defined collection of Products "       "and/or PhysicalElements that is associated with a Product for "       "the purpose of supporting, maintaining or upgrading that "       "Product at the customer's location. FRU is an acronym for "       "'field replaceable unit'.")]class CIM_FRU : CIM_ManagedElement {      [Key, Description (          "FRU ordering information."),        MaxLen ( 64 ),        MappingStrings { "MIF.DMTF|FRU|002.6" }]   string FRUNumber;      [Key, Description (          "FRU identification such as a serial number on software or a "          "die number on a hardware chip."),        MaxLen ( 64 ),        MappingStrings { "MIF.DMTF|FRU|002.7" }]   string IdentifyingNumber;      [Key, Description (          "The name of the FRU's supplier."),        MaxLen ( 256 ),        MappingStrings { "MIF.DMTF|FRU|002.4" }]   string Vendor;      [Override ( "Description" ), Description (          "A textual description of the FRU."),        MappingStrings { "MIF.DMTF|FRU|002.3" }]   string Description;      [Description (          "FRU name."),        MaxLen ( 256 )]   string Name;      [Description (          "The FRU's revision level."),        MaxLen ( 64 ),        MappingStrings { "MIF.DMTF|FRU|002.8" }]   string RevisionLevel;      [Description (          "Indicates whether the FRU is customer replaceable.")]   boolean CustomerReplaceable;};

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?