(file) Return to Core27_Physical.mof CVS log (file) (dir) Up to [Pegasus] / pegasus / Schemas / CIMPrelim271

File: [Pegasus] / pegasus / Schemas / CIMPrelim271 / Attic / Core27_Physical.mof (download)
Revision: 1.2, Thu Feb 24 20:47:25 2005 UTC (19 years, 3 months ago) by a.dunfey
Branch: MAIN
CVS Tags: TASK-PEP362_RestfulService-merged_out_from_trunk, TASK-PEP348_SCMO-merged_out_from_trunk, TASK-PEP317_pullop-merged_out_from_trunk, TASK-PEP317_pullop-merged_in_to_trunk, TASK-PEP311_WSMan-root, TASK-PEP311_WSMan-branch, RELEASE_2_5_0-RC1, HPUX_TEST, HEAD
Changes since 1.1: +0 -0 lines
FILE REMOVED
PEP#: 215
TITLE: Remove old schemas

DESCRIPTION:

Removing old, unneeded schema files from the repository:

CIM 2.7
CIM 2.7.1 Preliminary
CIM 2.8 Preliminary
CIM 2.9 Preliminary

// ===================================================================
// Title:       Core Physical 2.7
// Filename:    Core27_Physical.mof
// Version:     2.7.0
// Release:     Preliminary 
// Date:        09/20/02
// ===================================================================
// Copyright 2002 Distributed Management Task Force, Inc. (DMTF).
// All rights reserved.  
// DMTF is a not-for-profit association of industry members dedicated 
// to promoting enterprise and systems management and interoperability. 
// DMTF specifications and documents may be reproduced for uses
// consistent with this purpose by members and non-members, 
// provided that correct attribution is given. 
// As DMTF specifications may be revised from time to time, 
// the particular version and release date should always be noted.
//
// Implementation of certain elements of this standard or proposed 
// standard may be subject to third party patent rights, including 
// provisional patent rights (herein "patent rights"). DMTF makes 
// no representations to users of the standard as to the existence 
// of such rights, and is not responsible to recognize, disclose, or
// identify any or all such third party patent right, owners or 
// claimants, nor for any incomplete or inaccurate identification or 
// disclosure of such rights, owners or claimants. DMTF shall have no 
// liability to any party, in any manner or circumstance, under any 
// legal theory whatsoever, for failure to recognize, disclose, or 
// identify any such third party patent rights, or for such party's
// reliance on the standard or incorporation thereof in its product, 
// protocols or testing procedures. DMTF shall have no liability to 
// any party implementing such standard, whether such implementation 
// is foreseeable or not, nor to any patent owner or claimant, and shall 
// have no liability or responsibility for costs or losses incurred if 
// a standard is withdrawn or modified after publication, and shall be
// indemnified and held harmless by any party implementing the 
// standard from any and all claims of infringement by a patent owner 
// for such implementations.
//
// For information about patents held by third-parties which have 
// notified the DMTF that, in their opinion, such patent may relate to 
// or impact implementations of DMTF standards, visit 
// http://www.dmtf.org/about/policies/disclosures.php.
// ===================================================================
// Description: The Core Model defines basic management concepts. 
//              This file defines the concepts for PhysicalElements
//              and their Locations.
//
//              The object classes below are listed in an order that
//              avoids forward references. Required objects, defined 
//              by other working groups, are omitted.
// ==================================================================
// Change Log for v2.7
// CR774 - Add ContainedLocation
// CR821 - Add PhysicalElement.VendorEquipmentType, PhysicalElement. 
//         UserTracking, and PhysicalElement.CanBeFRUed properties.
//       - Add mapping string to indicate the support of the SNMP
//         Entity MIB
//       - Add the Write qualifier to PhysicalElement.Other
//         IdentifyingInfo
// CR822 - Add SystemPackaging
// CR899 - Expand the MaxLen qualifier on 2 PhysicalElement .Model 
//         and .SerialNumber properties from 64 to 256.
// CR902 - Create a general superclass ElementLocation of the
//         PhysicalElementLocation association.
// ==================================================================

#pragma locale ("en_US")


// ================================================================= 
// PhysicalElement
// ==================================================================
[Abstract, Version ("2.7.0"), Description (
    "Subclasses of CIM_PhysicalElement define any component of a " 
    "System that has a distinct physical identity. Instances of "
    "this class can be defined in terms of labels that can be "
    "physically attached to the object. All Processes, Files, "
    "and LogicalDevices are considered not to be Physical"
    "Elements. For example, it is not possible to attach a "
    "label to a modem. It is only possible to attach a label to "
    "the card that implements the modem. The same card could "
    "also implement a LAN  adapter. These are tangible Managed"
    "SystemElements (usually actual hardware items) that have a "
    "physical manifestation of some sort. A ManagedSystem"
    "Element is not necessarily a discrete component. For "
    "example, it is possible for a single Card (which is a type "
    "of PhysicalElement) to host more than one LogicalDevice. "
    "The card would be represented by a single PhysicalElement "
    "associated with multiple Devices.") ] 
class CIM_PhysicalElement : CIM_ManagedSystemElement {

    [Key, MaxLen (256), Description (
        "An arbitrary string that uniquely identifies the Physical"
        "Element and serves as the Element's key.  The Tag property "
        "can contain information such as asset tag or serial number "
        "data. The key for PhysicalElement is placed very high in the "
        "object hierarchy in order to independently identify the "
        "hardware/entity, regardless of physical placement in or on "
        "Cabinets, Adapters, etc.  For example, a hotswappable or "
        "removeable component may be taken from its containing "
        "(scoping) Package and be temporarily unused.  The object "
        "still continues to exist - and may even be inserted into a "
        "different scoping container.  Therefore, the key for Physical"
        "Element is an arbitrary string and is defined independently "
        "of any placement or location-oriented hierarchy.") ]
    string Tag;
    
    [Key, MaxLen (256), Description (
        "CreationClassName indicates the name of the class or the "
        "subclass used in the creation of an instance. When used "
        "with the other key properties of this class, this property "
        "allows all instances of this class and its subclasses to "
        "be uniquely identified.") ]
    string CreationClassName;
    
    [Override ("ElementName"),
        MappingStrings {"MIB.IETF|Entity-MIB.entPhysicalName"} ]
    string ElementName;
    
    [MaxLen (256), Description (
        "The name of the organization responsible for producing the "
        "PhysicalElement. This may be the entity from whom the Element "
        "is purchased, but this is not necessarily true. The latter "
        "information is contained in the Vendor property of "
        "CIM_Product."),
        MappingStrings {"MIB.IETF|Entity-MIB.entPhysicalMfgName"} ] 
    string Manufacturer;
    
    [MaxLen (256), Description (
        "The name by which the PhysicalElement is generally known."),
        MappingStrings {"MIB.IETF|Entity-MIB.entPhysicalDescr"} ] 
    string Model;
    
    [MaxLen (64), Description (
        "The stock keeping unit number for this PhysicalElement.") ] 
    string SKU;
    
    [MaxLen (256), Description (
        "A manufacturer-allocated number used to identify the Physical"
        "Element."),
        MappingStrings {"MIB.IETF|Entity-MIB.entPhysicalSerialNum"} ] 
    string SerialNumber;
    
    [MaxLen (64), Description (
        "A string indicating the version of the PhysicalElement."),
        MappingStrings {"MIB.IETF|Entity-MIB.entPhysicalHardwareRev"} ] 
    string Version;
    
    [MaxLen (256), Description (
        "The part number assigned by the organization responsible for "
        "producing or manufacturing the PhysicalElement."),
        MappingStrings {"MIB.IETF|Entity-MIB.entPhysicalModelName"} ]
    string PartNumber;
    
    [Write, Description (
        "OtherIdentifyingInfo captures additional data, beyond that of " 
        "Tag information, that could be used to identify a Physical" 
        "Element. One example is bar code data associated with an " 
        "Element that also has an asset tag. Note that if only bar " 
        "code data is available and is unique/able to be used as an " 
        "Element key, this property would be NULL and the bar code " 
        "data used as the class key, in the Tag property."),
        MappingStrings {"MIB.IETF|Entity-MIB.entPhysicalAlias"} ] 
    string OtherIdentifyingInfo;
    
    [Description (
        "Boolean indicating that the PhysicalElement is powered on "
        "(TRUE), or is currently off (FALSE).") ]
    boolean PoweredOn;
    
    [Description (
        "Date that this PhysicalElement was manufactured.") ]
    datetime ManufactureDate;
      
    [Experimental, Description (
        "A vendor-specific hardware type for the PhysicalElement. "
        "It describes the specific equipment type for the element, "
        "as defined by the vendor/manufacturer."), 
        MappingStrings {"MIB.IETF|Entity-MIB.entPhysicalVendorType"} ]
    string VendorEquipmentType;

    [Experimental, Write, Description (
        "User-assigned and writeable asset tracking identifier for "
        "the PhysicalElement."), 
        MappingStrings {"MIB.IETF|Entity-MIB.entPhysicalAssetID"} ]
    string UserTracking;

    [Experimental, Description (
        "Boolean indicating whether this PhysicalElement can be "
        "FRUed (TRUE) or not (FALSE)."), 
        MappingStrings {"MIB.IETF|Entity-MIB.entPhysicalIsFRU"} ]
    boolean CanBeFRUed;
};


// ===================================================================
// Location
// ===================================================================
[Version ("2.6.0"), Description (
    "The Location class specifies the position and address of "
    "a PhysicalElement.") ]
class CIM_Location : CIM_ManagedElement {
      
    [Key, MaxLen (256), 
        Description (
            "Name is a free-form string defining a label for the "
            "Location. It is a part of the key for the object.") ]
    string Name;
    
    [Key, MaxLen (256), Description (
        "Position is a free-form string indicating the placement "
        "of a PhysicalElement.  It can specify slot information on "
        "a HostingBoard, mounting site in a Cabinet, or latitude and "
        "longitude information, for example, from a GPS. It is "
        "part of the key of the Location object.") ]
    string PhysicalPosition;
    
    [MaxLen (1024), Description (
        "Address is a free-form string indicating a street, building "
        "or other type of address for the PhysicalElement's "
        "Location.") ]
    string Address;
};


// ==================================================================
// ElementLocation
// ==================================================================
[Association, Experimental, Version ("2.7.0"), Description (
    "ElementLocation associates a ManagedElement with "
    "a Location for positioning, inventory, maintenance and similar "
    "purposes. PhysicalElements can certainly have Locations - "
    "this is explicitly defined in a subclass, PhysicalElement"
    "Location.  However, other ManagedElements may also be associated "
    "with Locations. For example, Organizations may be 'in' one or "
    "more Locations, or Services may be restricted to a Location.") ]
class CIM_ElementLocation {
    
    [Key, Description (
        "The ManagedElement whose Location is specified.") ]
    CIM_ManagedElement REF Element;
    
    [Key, Description ("The element's Location.") ]
    CIM_Location REF PhysicalLocation;
};


// ==================================================================
// PhysicalElementLocation
// ==================================================================
[Association, Version ("2.7.0"), Description (
    "PhysicalElementLocation associates a PhysicalElement with "
    "a Location object for inventory or replacement purposes.") ]
class CIM_PhysicalElementLocation : CIM_ElementLocation {
    
    [Override ("Element"), Description (
        "The PhysicalElement whose Location is specified.") ]
    CIM_PhysicalElement REF Element;
    
    [Override ("PhysicalLocation"), Max (1),
        Description ("The PhysicalElement's Location.") ]
    CIM_Location REF PhysicalLocation;
};


// ==================================================================
// ContainedLocation
// ==================================================================
[Association, Aggregation, Experimental, Composition, 
    Version ("2.7.0"), Description (
        "ContainedLocation defines one location in the context "
        "of another. For example, a campus may 'contain' a building, "
        "which in turn 'contains' a floor.") ]
class CIM_ContainedLocation : CIM_Component {

    [Aggregate, Override ("GroupComponent"), Max (1), 
        Description ("The containing location.") ]
    CIM_Location REF GroupComponent;
    
    [Override ("PartComponent"), 
        Description ("The contained location.") ]
    CIM_Location REF PartComponent;
};


// ==================================================================
// SystemPackaging  
// ==================================================================
[Association, Experimental, Version("2.7.0"), Description (
    "Similar to the way that LogicalDevices are 'Realized' by "
    "PhysicalElements, Systems may be associated with specific "
    "packaging/PhysicalElements. This association explicitly "
    "defines the relationship between a System and its packaging.") ]
class CIM_SystemPackaging : CIM_Dependency {
    
    [Override ("Antecedent"), Description (
        "The PhysicalElement(s) that provide the packaging of a "
        "System.") ]
    CIM_PhysicalElement REF Antecedent;
    
    [Override ("Dependent"),
        Description ("The System whose packaging is described.") ]
    CIM_System REF Dependent;
}; 
 

// ===================================================================
// end of file
// ===================================================================

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2