(file) Return to CIM_NetworkAdapter.mof CVS log (file) (dir) Up to [Pegasus] / pegasus / Schemas / CIM231 / DMTF / Device

File: [Pegasus] / pegasus / Schemas / CIM231 / DMTF / Device / CIM_NetworkAdapter.mof (download)
Revision: 1.1, Tue Jan 24 13:50:08 2012 UTC (12 years, 5 months ago) by marek
Branch: MAIN
CVS Tags: preBug9676, postBug9676, TASK-TASK_PEP362_RestfulService_branch-root, TASK-TASK_PEP362_RestfulService_branch-merged_out_from_trunk, TASK-TASK_PEP362_RestfulService_branch-merged_in_to_trunk, TASK-TASK_PEP362_RestfulService_branch-merged_in_from_branch, TASK-TASK_PEP362_RestfulService_branch-branch, TASK-PEP362_RestfulService-root, TASK-PEP362_RestfulService-merged_out_to_branch, TASK-PEP362_RestfulService-merged_out_from_trunk, TASK-PEP362_RestfulService-merged_in_to_trunk, TASK-PEP362_RestfulService-merged_in_from_branch, TASK-PEP362_RestfulService-branch, TASK-PEP317_pullop-merged_out_from_trunk, TASK-PEP317_pullop-merged_in_to_trunk, RELEASE_2_14_1, RELEASE_2_14_0-RC2, RELEASE_2_14_0-RC1, RELEASE_2_14_0, RELEASE_2_14-root, RELEASE_2_14-branch, RELEASE_2_13_0-RC2, RELEASE_2_13_0-RC1, RELEASE_2_13_0-FC, RELEASE_2_13_0, RELEASE_2_13-root, RELEASE_2_13-branch, RELEASE_2_12_1-RC1, RELEASE_2_12_1, RELEASE_2_12_0-RC1, RELEASE_2_12_0-FC, RELEASE_2_12_0, RELEASE_2_12-root, RELEASE_2_12-branch, HEAD, CIMRS_WORK_20130824
Branch point for: TASK-PEP317_pullop-branch
BUG#:9155
TITLE: Upgrade Pegasus to Include the CIM 2.31 Schema in CVS

DESCRIPTION:

// Copyright (c) 2005 DMTF.  All rights reserved.
// <change cr="CIMCoreCR00751.003" type ="change">Update of
// descriptions based on Tech Edit review.</
// <change cr="ArchCR00066.004" type="add">Add UmlPackagePath
// qualifier values to CIM Schema.</change>
// <change cr="ArchCR00089.003" type="add">Add PUnit qualifier values
// to Units qualifier values.</change>
// ==================================================================
//  CIM_NetworkAdapter
// ==================================================================
   [Deprecated { "CIM_NetworkPort" }, 
    Abstract, Version ( "2.10.0" ), 
    UMLPackagePath ( "CIM::Device::NetworkAdapter" ), 
    Description ( 
       "Note: The use of the CIM_NetworkAdpater class has been "
       "deprecated in lieu of CIM_NetworkPort. CIM_NetworkPort better "
       "reflects that the hardware of a single port is described and "
       "managed. \n"
       "Deprecated description: NetworkAdapter is an Abstract class "
       "that defines general networking hardware concepts (for "
       "example, PermanentAddress or Speed of operation)." )]
class CIM_NetworkAdapter : CIM_LogicalDevice {

      [Deprecated { "CIM_NetworkPort.PermanentAddress" }, 
       Description ( 
          "Note: The use of this method has been deprecated. \n"
          "Deprecated description: PermanentAddress defines the "
          "network address that is hardcoded into an adapter. This "
          "\'hardcoded\' address might be changed through a "
          "firmware upgrade or software configuration. If so, this "
          "field should be updated when the change is made. "
          "PermanentAddress should be left blank if no \'hardcoded\' "
          "address exists for the NetworkAdapter." ), 
       MaxLen ( 64 ), 
       MappingStrings { "MIF.DMTF|Network Adapter 802 Port|001.2" }]
   string PermanentAddress;

      [Deprecated { "CIM_NetworkPort.NetworkAddresses" }, 
       Description ( 
          "Note: The use of this method has been deprecated. \n"
          "Deprecated description: An array of strings that "
          "indicates the network addresses for an adapter." ), 
       ArrayType ( "Indexed" ), 
       MaxLen ( 64 ), 
       MappingStrings { "MIF.DMTF|Network Adapter 802 Port|001.3" }]
   string NetworkAddresses[];

      [Deprecated { "CIM_NetworkPort.Speed" }, 
       Description ( 
          "Note: The use of this method has been deprecated. \n"
          "Deprecated description: An estimate of the current "
          "bandwidth in Bits per Second. For Adapters that vary in "
          "bandwidth or for those where no accurate estimation can "
          "be made, this property should contain the nominal "
          "bandwidth." ), 
       Units ( "Bits per Second" ), 
       MappingStrings { "MIB.IETF|RFC1213-MIB.ifSpeed", 
          "MIF.DMTF|Network Adapter 802 Port|001.5" }, 
       PUnit ( "bit / second" )]
   uint64 Speed;

      [Deprecated { "CIM_NetworkPort.MaxSpeed" }, 
       Description ( 
          "Note: The use of this method has been deprecated. \n"
          "Deprecated description: The maximum speed, in Bits per "
          "Second, for the Network Adapter." ), 
       Units ( "Bits per Second" ), 
       PUnit ( "bit / second" )]
   uint64 MaxSpeed;

      [Deprecated { "CIM_NetworkPort.FullDuplex" }, 
       Description ( 
          "Note: The use of this method has been deprecated. \n"
          "Deprecated description: A Boolean that indicates that "
          "the Adapter is operating in full duplex mode." )]
   boolean FullDuplex;

      [Deprecated { "CIM_NetworkPort.AutoSense" }, 
       Description ( 
          "Note: The use of this method has been deprecated. \n"
          "Deprecated description: A Boolean that indicates whether "
          "the NetworkAdapter is capable of automatically "
          "determining the speed or other communications "
          "characteristics of the attached network media." )]
   boolean AutoSense;

      [Deprecated { "CIM_NetworkPortStatistics.BytesTransmitted" }, 
       Description ( 
          "Note: The use of this method has been deprecated. The "
          "replacement is "
          "CIM_NetworkPortStatistics.BytesTransmitted." ), 
       Counter, MappingStrings { "MIB.IETF|RFC1213-MIB.ifOutOctets", 
          "MIF.DMTF|Network Adapter 802 Port|001.7" }]
   uint64 OctetsTransmitted;

      [Deprecated { "CIM_NetworkPortStatistics.BytesReceived" }, 
       Description ( 
          "Note: The use of OctetsReceived is deprecated. The "
          "replacement is CIM_NetworkPortStatistics.BytesReceived." ), 
       Counter, MappingStrings { "MIB.IETF|RFC1213-MIB.ifInOctets", 
          "MIF.DMTF|Network Adapter 802 Port|001.9" }]
   uint64 OctetsReceived;


};

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2