cim_endpointofnetworkpipe.mof

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

MOF
35
字号
// Copyright (c) 2005 DMTF.  All rights reserved.// <change cr="ArchCR00066.004" type="add">Add UmlPackagePath// qualifier values to CIM Schema.</change>// ==================================================================//  CIM_EndpointOfNetworkPipe// ==================================================================   [Association, UMLPackagePath ( "CIM::Network::Pipes" ),       Version ( "2.7.0" ), Description (       "EndpointOfNetworkPipe describes the endpoints between which a "       "pipe transfers information. Whether an endpoint is a source or "       "sink is indicated by a property of the association, "       "SourceOrSink."),     MappingStrings { "Recommendation.ITU|M3100.Pipe.a-TPInstance",       "Recommendation.ITU|M3100.Pipe.z-TPInstance" }]class CIM_EndpointOfNetworkPipe : CIM_Dependency {      [Override ( "Antecedent" ), Min ( 2 ), Max ( 2 ), Description (          "One of the endpoints of the pipe.")]   CIM_ProtocolEndpoint REF Antecedent;      [Override ( "Dependent" ), Description (          "The pipe which is dependent on the endpoints as the source "          "or sink of the transferred information.")]   CIM_NetworkPipe REF Dependent;      [Description (          "Indicates whether the endpoint is a source (value = 2), or "          "sink (value = 3) for the pipe. If this information is not "          "applicable, the property is set to 4. If the information is "          "not known, the property is set to 0."),        ValueMap { "0", "2", "3", "4" },        Values { "Unknown", "Source", "Sink", "Not Applicable" }]   uint16 SourceOrSink;};

⌨️ 快捷键说明

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