schedulerJobInstanceInfo Data Type

POJO for an instance of SchedulerJob.

Namespace
uri:lens:job:0.1
Schema
ns1.xsd
Properties
name data type type namespace min/max occurs description
id schedulerJobInstanceHandle element ns1 0/1 unique id for this instance of scheduler job.
instanceRunList schedulerJobInstanceRun element ns1 0/unbounded A list of instance-run for this instance.
jobId schedulerJobHandle element ns1 0/1 id for the scheduler job to which this instance belongs.
scheduleTime long element ns1 1/1 scheduled time of this instance.

Example

<schedulerJobInstanceInfo xmlns="uri:lens:job:0.1">
  <id>
    <handleId>...</handleId>
  </id>
  <jobId>
    <handleId>...</handleId>
  </jobId>
  <scheduleTime>...</scheduleTime>
  <instanceRunList>
    <handle>
      <handleId>...</handleId>
    </handle>
    <runId>...</runId>
    <sessionHandle>
      <publicId xmlns="">...</publicId>
      <secretId xmlns="">...</secretId>
    </sessionHandle>
    <startTime>...</startTime>
    <endTime>...</endTime>
    <resultPath>...</resultPath>
    <queryHandle>
      <handleId xmlns="">...</handleId>
    </queryHandle>
    <instanceState>...</instanceState>
  </instanceRunList>
</schedulerJobInstanceInfo>