HP 3PAR CIM API Programming Reference (QL226-97722, March 2014)
// ==================================================================
[Association,
Description (
"HP 3PAR iSCSI protocol controller and storage volume "
"association. ")]
class TPD_iSCSIControllerForUnit : CIM_ProtocolControllerForUnit
{
[Override ("Antecedent"),
Description ("The iSCSI Protocol Controller.") ]
TPD_iSCSIController REF Antecedent;
[Override ("Dependent"), Weak, Description (
"The storage volume controlled by the iSCSI protocol controller.") ]
TPD_StorageVolume REF Dependent;
};
// ==================================================================
// HP 3PAR iSCSISessionSettings
// ==================================================================
[Description (
"The default negotiation settings for an iSCSI Session. These "
"properties are used as the starting position for login "
"negotiations between initiator and target nodes. The "
"properties describing the resulting outcome of the login "
"negotiation are in the iSCSISession class.")]
class TPD_iSCSISessionSettings : CIM_iSCSISessionSettings {
};
// ==================================================================
// HP 3PAR iSCSISessionEndpointSetting
// ==================================================================
[Association, Description (
"ElementSettingData represents the association between "
"ManagedElements and applicable setting data. This association "
"also describes whether this is a default or current setting.")]
class TPD_iSCSISessionEndpointSetting : CIM_ElementSettingData {
[Override ( "ManagedElement" ), Description (
"The managed element.")]
TPD_iSCSIProtocolEndpoint REF ManagedElement;
[Override ( "SettingData" ), Description (
"The SettingData object associated with the element.")]
TPD_iSCSISessionSettings REF SettingData;
};
// ==================================================================
// HP 3PAR iSCSISessionNodeSetting
// ==================================================================
[Association, Description (
"ElementSettingData represents the association between "
"ManagedElements and applicable setting data. This association "
"also describes whether this is a default or current setting.")]
class TPD_iSCSISessionNodeSetting : CIM_ElementSettingData {
[Override ( "ManagedElement" ), Description (
"The managed element.")]
TPD_iSCSINode REF ManagedElement;
[Override ( "SettingData" ), Description (
"The SettingData object associated with the element.")]
TPD_iSCSISessionSettings REF SettingData;
};
// ==================================================================
3PAR_TPDiSCSI.mof 291