cim_diskspacecheck.mof

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

MOF
28
字号
// Copyright (c) 2005 DMTF.  All rights reserved.// <change cr="ArchCR00066.004" type="add">Add UmlPackagePath// qualifier values to CIM Schema.</change>// ==================================================================//  CIM_DiskSpaceCheck// ==================================================================   [UMLPackagePath ( "CIM::Application::CheckAction" ),       Version ( "2.6.0" ), Description (       "DiskSpaceCheck describes the amount of disk space that needs "       "to be available on the computer system. The amount is "       "specified in the AvailableDiskSpace property. The details of "       "this Check are compared with the value of the CIM_FileSystem. "       "AvailableSpace property - where the CIM_FileSystem object is "       "related (using HostedFileSystem) to the CIM_Computer System "       "instance that describes the environment. When the value of the "       "AvailableSpace property is greater than or equal to the value "       "specified in AvailableDiskSpace, the Check is satisfied.")]class CIM_DiskSpaceCheck : CIM_Check {      [Description (          "The AvailableDiskSpace property specifies the minimum "          "amount of disk space that needs to be available on the "          "target system."),        Units ( "KiloBytes" ),        ModelCorrespondence { "CIM_FileSystem.AvailableSpace" }]   uint64 AvailableDiskSpace;};

⌨️ 快捷键说明

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