HP 3PAR CIM API Programming Reference (OS 3.1.2 MU2) (QL226-97015, June 2013)

[Association, Description (
"This association makes explicit the dependency of a "
"TCPProtocolEndpoint on an underlying IPProtocolEndpoint, on the same "
"system.")]
class TPD_BindsToIPEndpoint : CIM_BindsTo {
[Override ( "Antecedent" ), Description (
"The underlying IPProtocolEndpoint, which is depended upon.")]
TPD_IPProtocolEndpoint REF Antecedent;
[Override ( "Dependent" ), Description (
"The TCPProtocolEndpoint dependent on the IPProtocolEndpoint.")]
TPD_TCPProtocolEndpoint REF Dependent;
};
// ==================================================================
// HP 3PAR SystemTCPEndpoint: association between NodeSystem and
// TCPProtocolEndpoint
// ==================================================================
[Association,
Description
("HP 3PAR NodeSystem and IPProtocolEndpoint association."
"This is a subclass of CIM_HostedAccessPoint. There are many "
"subclasses of CIM_HostedAcessPoint in the system. This class is "
" named TPD_SystemIPEndpoint to distinguish with other subclasses. ")]
class TPD_SystemTCPEndpoint : CIM_HostedAccessPoint
{
// Indicate that this is one-to-many association
[Override ( "Antecedent" ), Min ( 1 ), Max ( 1 ), Description (
"The HP 3PAR node controller that hosted the protocol endpoint.")]
TPD_NodeSystem REF Antecedent;
[Override ( "Dependent" ), Weak, Description (
"The TCPProtocolEndpoint representing ethernet port "
"on the system.")]
TPD_TCPProtocolEndpoint REF Dependent;
};
// ==================================================================
// HP 3PAR FCPortEthernetPortDependency : association between EthernetPort
// FCPort of an FCoE port
// ==================================================================
[Association,
Description(
"This association makes explicit the dependency of an "
"FCPort on an underlying EthernetPort of an FCoE port, on the same "
"system.")]
class TPD_FCPortEthernetPortDependency : CIM_HostedDependency
{
[Override ( "Antecedent" ), Description (
"The underlying EthernetPort, which is depended upon.")]
TPD_EthernetPort REF Antecedent;
[Override ( "Dependent" ), Description (
"The FCPort dependent on the EthernetPort.")]
TPD_FCPort REF Dependent;
};
3PAR_TPDiSCSI.mof
//%////////////////////////////////////////////////////////////////////////
//
//
// Copyright 2011 HP 3PAR, Inc. All Rights Reserved.
3PAR_TPDiSCSI.mof 275