cim_mediaaccessstatdata.mof
来自「Pegasus is an open-source implementation」· MOF 代码 · 共 61 行
MOF
61 行
// Copyright (c) 2005 DMTF. All rights reserved.// <change cr="ArchCR00066.004" type="add">Add UmlPackagePath// qualifier values to CIM Schema.</change>// ==================================================================// CIM_MediaAccessStatData// ================================================================== [UMLPackagePath ( "CIM::Device::StorageDevices" ), Version ( "2.7.0" ), Description ( "Statistics related to reading and writing at a specific " "MediaAccessDevice, or for a specific StorageExtent. The same " "class is used to represent this data - whether for the " "MediaAccessDevice (independent of the StorageExtent), OR for " "the Extent (independent of its AccessDevice). The element " "whose statistics are described is associated using the " "relationship, ElementStatisticalData. Note that this class " "models the same properties as MediaAccessStatInfo. This class, " "however, uses the simplified key mechanisms of its superclass, " "StatisticalData.")]class CIM_MediaAccessStatData : CIM_StatisticalData { [Description ( "The number of attempted read operations."), Counter] uint64 ReadOperations; [Description ( "The number of unrecoverable read operations."), Counter] uint64 UnrecoverableReadOperations; [Description ( "The number of attempted write operations."), Counter] uint64 WriteOperations; [Description ( "The number of unrecoverable write operations."), Counter] uint64 UnrecoverableWriteOperations; [Description ( "The number of recovered read operations."), Counter] uint64 RecoveredReadOperations; [Description ( "The number of recovered write operations."), Counter] uint64 RecoveredWriteOperations; [Description ( "The number of recovered seek operations."), Counter] uint64 RecoveredSeekOperations; [Description ( "The number of unrecoverable seek operations."), Counter] uint64 UnrecoverableSeekOperations;};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?