3PAR CIM API Programming Reference for InForm OS 2.3.1 (320-200164 Rev B, February 2010)

5.94
Copy Services Subprofile
CIM API Programming Reference InForm OS Version 2.3.1
DELETING JOB
CLI EQUIVALENCE
removetask
DELETEINSTANCE
An instance of TPD_ConcreteJob can be deleted using the intrinsic method
TPD_ConcreteJob.DeleteInstance(). If not deleted, a job exists indefinitely.
TPD_METHODRESULT
This class is used to report the extrinsic method that triggered the job and the parameters
passed to it, so that a third party client can tell what the job is and what it is doing. The class
consists of the following mandatory properties:
InstanceID – this is a key and is identical to that of ConcreteJob this is associated with.
PrecallIndication – string representing an embedded instance of the
CIM_InstMethodCall class, which contains the method called that triggered this job,
(e.g., if this is a create vv copy job, then this contains a
CIM_InstMethodCall instance
representing
AttachOrModifyReplica. CIM_InstMethodCall contains the following
values:
MethodName – string of the methodName, e.g., AttachOrModifyReplica.
MethodParameters - parameters of the method, formatted as an EmbeddedObject
(with a predefined class name of “
__MethodParameters"). This only contains the
input parameters; output parameter (Job) is not included.
PreCall - Boolean indicating whether the Indication is sent before the method begins
executing (TRUE) or when the method completes (FALSE). In this case this value is TRUE.
PostCallindication – string representing an embedded instance of the
CIM_InstMethodCall class, which contains the method called that triggered. However,
this differs from the case in
PreCallIndication in that output parameters is also
included in the
MethodParameters parameter. Output parameter in this case is Job.
MethodName – string of the methodName, e.g., AttachOrModifyReplica.
MethodParameters - parameters of the method, formatted as an EmbeddedObject
(with a predefined class name of “
__MethodParameters"). This contains both input
and output parameters. Job parameter is a reference to the
TPD_ConcreteJob that
was created.