31 #ifndef _CL_PROV_API_H_
32 #define _CL_PROV_API_H_
178 CL_IN ClHandleT txnHandle);
208 CL_IN ClHandleT txnHandle);
Typical defines found in any software project.
Header file of all MetaData data structures.
Header file of COR APIs for subscribing/unsubscribing to the events on a Managed Objects.
ClUint32T ClRcT
Clovis return code type.
Definition: clCommon.h:168
#define CL_INOUT
CL_INOUT macro assists in clearly defining arguments of an API, but has no actual meaning.
Definition: clCommon.h:108
#define CL_OUT
CL_OUT macro assists in clearly defining arguments of an API, but has no actual meaning.
Definition: clCommon.h:110
#define CL_IN
CL_IN macro assists in clearly defining arguments of an API, but has no actual meaning.
Definition: clCommon.h:106
enum ClCorType ClCorTypeT
The ClCorType enumeration contains the basic COR data types.
enum ClCorAttrType ClCorAttrTypeT
The values of this enumeration type refer to the COR attribute types.
ClPtrT ClCorObjectHandleT
The structure ClCorObjectHandle is the handle to MO.
Definition: clCorMetaData.h:608
ClCorOpsT
The values of the ClCorOpsT enumeration type contain the Operation IDs.
Definition: clCorMetaData.h:653
ClInt32T ClCorAttrIdT
The type of an identifier for a COR attribute.
Definition: clCorMetaData.h:206
ClUint32T ClCorTxnJobIdT
The type of COR transaction Job Id, used to identify a job uniquely within a transaction.
Definition: clCorMetaData.h:647
void(* ClProvTxnStartCallbackT)(CL_IN ClHandleT txnHandle)
Transaction start callback function which will be provided by the user.
Definition: clProvApi.h:177
ClRcT clProvInitialize()
Initializes the Provision Manager library.
void(* ClProvTxnEndCallbackT)(CL_IN ClHandleT txnHandle)
Transaction end callback function which will be provided by the user.
Definition: clProvApi.h:207
struct ClProvTxnData ClProvTxnDataT
The structure is used to pass the job information while calling the object implementer's callback fun...
ClRcT clProvObjectCreate(CL_IN ClCorMOIdPtrT pMoId, CL_IN ClCorAttributeValueListPtrT attrList, CL_OUT ClCorObjectHandleT *pHandle)
Create Prov MSO object.
ClRcT clProvVersionCheck(CL_INOUT ClVersionT *pVersion)
Verify the provision library version.
ClRcT clProvFinalize()
Cleans up the Provision Manager library.
ClRcT clProvObjectDelete(CL_IN ClCorObjectHandleT handle)
Delete Prov MSO object.
Version Information for various services.
Definition: clCommon.h:250
The structure ClCorMOId contains MoId of the object, which is the address of the COR object.
Definition: clCorMetaData.h:918
The structure ClCorAttrPath contains the path-list of the attribute.
Definition: clCorMetaData.h:997
Type to provide the list of attribute values for initialized attributes.
Definition: clCorMetaData.h:1350
Type to store the list of MoIds.
Definition: clCorNotifyApi.h:106
The structure is used to pass the job information while calling the object implementer's callback fun...
Definition: clProvApi.h:75
ClCorTypeT attrDataType
This is the actual data type of the attribute.
Definition: clProvApi.h:113
ClUint32T index
This is a non-zero value for a array attribute if an index is supplied while submitting the job.
Definition: clProvApi.h:144
void * pMoId
It is pointer to the MOID of the managed resource on which the operation is done.
Definition: clProvApi.h:93
ClCorAttrPathPtrT attrPath
This is pointer to the attribute path structure.
Definition: clProvApi.h:99
void * pProvData
It is a pointer to the address containing value of the attribute.
Definition: clProvApi.h:130
ClUint32T size
Size of the data.
Definition: clProvApi.h:137
ClCorOpsT provCmd
The argument provides the operation type of the job.
Definition: clProvApi.h:83
ClCorAttrTypeT attrType
It is the type of the attribute that is for an array attribute it is CL_COR_ARRAY_ATTR otherwise it i...
Definition: clProvApi.h:106
ClCorAttrIdT attrId
The identifier for the attribute.
Definition: clProvApi.h:120
This structure is used to get the start and end callbacks for a transaction from the user.
Definition: clProvApi.h:218