MainframeModernization / Client / list_batch_job_restart_points

list_batch_job_restart_points#

MainframeModernization.Client.list_batch_job_restart_points(**kwargs)#

Lists all the job steps for JCL files to restart a batch job. This is only applicable for Micro Focus engine with versions 8.0.6 and above.

See also: AWS API Documentation

Request Syntax

response = client.list_batch_job_restart_points(
    applicationId='string',
    executionId='string'
)
Parameters:
  • applicationId (string) –

    [REQUIRED]

    The unique identifier of the application.

  • executionId (string) –

    [REQUIRED]

    The unique identifier of each batch job execution.

Return type:

dict

Returns:

Response Syntax

{
    'batchJobSteps': [
        {
            'procStepName': 'string',
            'procStepNumber': 123,
            'stepCondCode': 'string',
            'stepName': 'string',
            'stepNumber': 123,
            'stepRestartable': True|False
        },
    ]
}

Response Structure

  • (dict) –

    • batchJobSteps (list) –

      Returns all the batch job steps and related information for a batch job that previously ran.

      • (dict) –

        Provides information related to a job step.

        • procStepName (string) –

          The name of a procedure step.

        • procStepNumber (integer) –

          The number of a procedure step.

        • stepCondCode (string) –

          The condition code of a step.

        • stepName (string) –

          The name of a step.

        • stepNumber (integer) –

          The number of a step.

        • stepRestartable (boolean) –

          Specifies if a step can be restarted or not.

Exceptions