DSCResources/cMonitorDiskSpace/cMonitorDiskSpace.schema.mof
[ClassVersion("0.3.0.0"), FriendlyName("cMonitorDiskSpace")]
class cMonitorDiskSpace : OMI_BaseResource { [Write, Description("The filesystem of the disk")] String FileSystem; [Write, Description("The name of the volume")] String VolumeName; [Key, Description("The timestamp")] DateTime Timestamp; [Write, Description("The amount of free space on the disk, in bytes")] Uint64 FreeSpace; [Write, Description("The percentage of free disk space")] Real64 PercentFree; [Key, Description("The device ID")] String DeviceID; [Write, Description("The size of the disk, in bytes")] Uint64 Size; }; |