Module Values.GetBatchJobExecutionResponseSource

Gets the details of a specific batch job execution for a specific application.

Sourcetype nonrec t = {
  1. applicationId : Identifier.t option;
    (*

    The identifier of the application.

    *)
  2. batchJobIdentifier : BatchJobIdentifier.t option;
    (*

    The unique identifier of this batch job.

    *)
  3. endTime : Timestamp.t option;
    (*

    The timestamp when the batch job execution ended.

    *)
  4. executionId : Identifier.t option;
    (*

    The unique identifier for this batch job execution.

    *)
  5. jobId : String100.t option;
    (*

    The unique identifier for this batch job.

    *)
  6. jobName : String100.t option;
    (*

    The name of this batch job.

    *)
  7. jobStepRestartMarker : JobStepRestartMarker.t option;
    (*

    The step/procedure step information for the restart batch job operation.

    *)
  8. jobType : BatchJobType.t option;
    (*

    The type of job.

    *)
  9. jobUser : String100.t option;
    (*

    The user for the job.

    *)
  10. returnCode : String_.t option;
    (*

    The batch job return code from either the Blu Age or Micro Focus runtime engines. For more information, see Batch return codes in the IBM WebSphere Application Server documentation.

    *)
  11. startTime : Timestamp.t option;
    (*

    The timestamp when the batch job execution started.

    *)
  12. status : BatchJobExecutionStatus.t option;
    (*

    The status of the batch job execution.

    *)
  13. statusReason : String_.t option;
    (*

    The reason for the reported status.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?applicationId:??? -> ?batchJobIdentifier:??? -> ?endTime:??? -> ?executionId:??? -> ?jobId:??? -> ?jobName:??? -> ?jobStepRestartMarker:??? -> ?jobType:??? -> ?jobUser:??? -> ?returnCode:??? -> ?startTime:??? -> ?status:??? -> ?statusReason:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Identifier.t | `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `String of String_.t | `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `String of String_.t ]) list ]) list ]) list | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t