CMDBExportItem structure
The CMDBExportItem
data structure holds the items to export for the specified item type.
Note
This is a legacy structure of the BMC Atrium CMDB API, and has been replaced by newer functions, CMDBExportData
and CMDBExportDef
.
typedef CMDBExportItem
{
unsigned int itemType;
union
{
CMDBItemTypeClass classItem;
CMDBItemTypeAttribute attributeItem;
}
}CMDBExportItem;
The CMDBExportItem
structure consists of the following elements:
itemType |
The type of item to export.
|
classItem |
The class items to import, if the itemType is |
attributeItem |
The attribute items to import, if the itemType is |
Comments