cim_unixdevicefile.mof

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

MOF
48
字号
// Copyright (c) 2005 DMTF.  All rights reserved.// <change cr="ArchCR00066.004" type="add">Add UmlPackagePath// qualifier values to CIM Schema.</change>// ==================================================================//  CIM_UnixDeviceFile// ==================================================================   [UMLPackagePath ( "CIM::System::Unix" ), Version ( "2.8.0" ),     Description (       "DeviceFile is a special type of LogicalFile that represents a "       "Device. This class is a specialization of DeviceFile for a "       "Unix environment.")]class CIM_UnixDeviceFile : CIM_DeviceFile {      [Description (          "The type of device file."),        ValueMap { "0", "1", "2", "3" },        Values { "Unknown", "Other", "Block", "Character" },        ModelCorrespondence { "CIM_UnixDeviceFile.OtherTypeDescription"           }]   uint16 DeviceFileType;      [Description (          "Additional information when the DeviceFileType property is "          "set to \"Other\"."),        ModelCorrespondence { "CIM_UnixDeviceFile.DeviceFileType" }]   string OtherTypeDescription;      [Required, Description (          "The device Identifier: this is the st_rdev field in the "          "stat structure.")]   string DeviceId;      [Description (          "Additional information provided by the driver. This "          "property may be null if no information is available, or a "          "general description of the device when available, e.g. "          "\"Non-rewind tape streamer\".")]   string DeviceDescription;      [Required, Description (          "The Device's Major Id.")]   string DeviceMajor;      [Required, Description (          "The Device's Minor Id.")]   string DeviceMinor;};

⌨️ 快捷键说明

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