cim_allocatedfromstoragepool.mof

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

MOF
36
字号
// Copyright (c) 2005 DMTF.  All rights reserved.// <change cr="ArchCR00066.004" type="add">Add UmlPackagePath// qualifier values to CIM Schema.</change>// ==================================================================//  CIM_AllocatedFromStoragePool// ==================================================================   [Association, UMLPackagePath ( "CIM::Device::StorageServices" ),    Version ( "2.8.0" ), Description (       "AllocatedFromStoragePool is an association describing how "       "LogicalElements are allocated from underlying StoragePools. "       "These elements typically would be subclasses of StorageExtents "       "or StoragePools.")]class CIM_AllocatedFromStoragePool : CIM_Dependency {      [Override ( "Antecedent" ), Description (          "The StoragePool.")]   CIM_StoragePool REF Antecedent;      [Override ( "Dependent" ), Description (          "The subsidiary element.")]   CIM_LogicalElement REF Dependent;      [Required, Description (          "Space consumed from this Pool, in bytes. This value MUST be "          "maintained so that, relative to the Antecedent StoragePool, "          "it is possible to compute TotalManagedSpace as "          "StoragePool.RemainingManagedSpace plus the sum of "          "SpaceConsumed from all of the AllocatedFromStoragePool "          "references from the antecedent StoragePool."),        Units ( "Bytes" ),        ModelCorrespondence { "CIM_StoragePool.TotalManagedSpace",          "CIM_StoragePool.RemainingManagedSpace" }]   uint64 SpaceConsumed;};

⌨️ 快捷键说明

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