cim_logicalportsettings.mof

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

MOF
42
字号
// Copyright (c) 2005 DMTF.  All rights reserved.// <change cr="DMTFCR01192.001" type ="new">Add LogicalPortSettings</// <change cr="CIMCoreCR00804.001" type ="change">Remove Experimental// from class.</// <change cr="ArchCR00066.004" type="add">Add UmlPackagePath// qualifier values to CIM Schema.</change>// ===================================================================// LogicalPortSettings// ===================================================================   [UMLPackagePath ( "CIM::Device::Ports" ), Version ( "2.11.0" ),     Description (       "A LogicalPort may be configured via the LogicalPortSettings "       "class. The configuration changes are expected to be stored to "       "non-volatile memory.")]class CIM_LogicalPortSettings : CIM_SettingData {      [Write, Description (          "The requested bandwidth of the Port in Bits per Second. The "          "actual bandwidth is reported in LogicalPort.Speed."),        Units ( "Bits per Second" ),        MappingStrings { "FC-SWAPI.INCITS-T11|UcPortConfigSetLinkSpeed"           },        ModelCorrespondence { "CIM_LogicalPort.Speed" }]   uint64 RequestedSpeed;      [Write, Description (          "A boolean indicating whether the LogicalPort should "          "automatically negotiate an optimal bandwidth (TRUE), or "          "attempt to communicate only at the RequestedSpeed (FALSE). "          "The actual bandwidth is reported in LogicalPort.Speed. "          "Changing this value to (FALSE) may cause the "          "OperationalStatus to change to [stopped] if the "          "RequestedSpeed is not compatible with the attached device \n"          "Check LogicalPortCapabilities.AutoSenseSpeedConfigurable to "          "see if this value may be changed."),        MappingStrings { "FC-SWAPI.INCITS-T11|UcPortConfigSetLinkSpeed"           },        ModelCorrespondence { "CIM_LogicalPort.Speed",          "CIM_LogicalPortCapabilities.AutoSenseSpeedConfigurable" }]   boolean AutoSenseSpeed;};

⌨️ 快捷键说明

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