MainframeModernization / Client / get_batch_job_execution

get_batch_job_execution#

MainframeModernization.Client.get_batch_job_execution(**kwargs)#

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

See also: AWS API Documentation

Request Syntax

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

    [REQUIRED]

    The identifier of the application.

  • executionId (string) –

    [REQUIRED]

    The unique identifier of the batch job execution.

Return type:

dict

Returns:

Response Syntax

{
    'applicationId': 'string',
    'batchJobIdentifier': {
        'fileBatchJobIdentifier': {
            'fileName': 'string',
            'folderPath': 'string'
        },
        'restartBatchJobIdentifier': {
            'executionId': 'string',
            'jobStepRestartMarker': {
                'fromProcStep': 'string',
                'fromStep': 'string',
                'toProcStep': 'string',
                'toStep': 'string'
            }
        },
        's3BatchJobIdentifier': {
            'bucket': 'string',
            'identifier': {
                'fileName': 'string',
                'scriptName': 'string'
            },
            'keyPrefix': 'string'
        },
        'scriptBatchJobIdentifier': {
            'scriptName': 'string'
        }
    },
    'endTime': datetime(2015, 1, 1),
    'executionId': 'string',
    'jobId': 'string',
    'jobName': 'string',
    'jobStepRestartMarker': {
        'fromProcStep': 'string',
        'fromStep': 'string',
        'toProcStep': 'string',
        'toStep': 'string'
    },
    'jobType': 'VSE'|'JES2'|'JES3',
    'jobUser': 'string',
    'returnCode': 'string',
    'startTime': datetime(2015, 1, 1),
    'status': 'Submitting'|'Holding'|'Dispatching'|'Running'|'Cancelling'|'Cancelled'|'Succeeded'|'Failed'|'Purged'|'Succeeded With Warning',
    'statusReason': 'string'
}

Response Structure

  • (dict) –

    • applicationId (string) –

      The identifier of the application.

    • batchJobIdentifier (dict) –

      The unique identifier of this batch job.

      Note

      This is a Tagged Union structure. Only one of the following top level keys will be set: fileBatchJobIdentifier, restartBatchJobIdentifier, s3BatchJobIdentifier, scriptBatchJobIdentifier. If a client receives an unknown member it will set SDK_UNKNOWN_MEMBER as the top level key, which maps to the name or tag of the unknown member. The structure of SDK_UNKNOWN_MEMBER is as follows:

      'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}
      
      • fileBatchJobIdentifier (dict) –

        Specifies a file associated with a specific batch job.

        • fileName (string) –

          The file name for the batch job identifier.

        • folderPath (string) –

          The relative path to the file name for the batch job identifier.

      • restartBatchJobIdentifier (dict) –

        Specifies the required information for restart, including execution ID and jobsteprestartmarker.

        • executionId (string) –

          The executionId from the StartBatchJob response when the job ran for the first time.

        • jobStepRestartMarker (dict) –

          The restart step information for the most recent restart operation.

          • fromProcStep (string) –

            The procedure step name that a job was restarted from.

          • fromStep (string) –

            The step name that a batch job restart was from.

          • toProcStep (string) –

            The procedure step name that a batch job was restarted to.

          • toStep (string) –

            The step name that a job was restarted to.

      • s3BatchJobIdentifier (dict) –

        Specifies an Amazon S3 location that identifies the batch jobs that you want to run. Use this identifier to run ad hoc batch jobs.

        • bucket (string) –

          The Amazon S3 bucket that contains the batch job definitions.

        • identifier (dict) –

          Identifies the batch job definition. This identifier can also point to any batch job definition that already exists in the application or to one of the batch job definitions within the directory that is specified in keyPrefix.

          Note

          This is a Tagged Union structure. Only one of the following top level keys will be set: fileName, scriptName. If a client receives an unknown member it will set SDK_UNKNOWN_MEMBER as the top level key, which maps to the name or tag of the unknown member. The structure of SDK_UNKNOWN_MEMBER is as follows:

          'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}
          
          • fileName (string) –

            The name of the file that contains the batch job definition.

          • scriptName (string) –

            The name of the script that contains the batch job definition.

        • keyPrefix (string) –

          The key prefix that specifies the path to the folder in the S3 bucket that has the batch job definitions.

      • scriptBatchJobIdentifier (dict) –

        A batch job identifier in which the batch job to run is identified by the script name.

        • scriptName (string) –

          The name of the script containing the batch job definition.

    • endTime (datetime) –

      The timestamp when the batch job execution ended.

    • executionId (string) –

      The unique identifier for this batch job execution.

    • jobId (string) –

      The unique identifier for this batch job.

    • jobName (string) –

      The name of this batch job.

    • jobStepRestartMarker (dict) –

      The restart steps information for the most recent restart operation.

      • fromProcStep (string) –

        The procedure step name that a job was restarted from.

      • fromStep (string) –

        The step name that a batch job restart was from.

      • toProcStep (string) –

        The procedure step name that a batch job was restarted to.

      • toStep (string) –

        The step name that a job was restarted to.

    • jobType (string) –

      The type of job.

    • jobUser (string) –

      The user for the job.

    • returnCode (string) –

      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.

    • startTime (datetime) –

      The timestamp when the batch job execution started.

    • status (string) –

      The status of the batch job execution.

    • statusReason (string) –

      The reason for the reported status.

Exceptions

  • MainframeModernization.Client.exceptions.ResourceNotFoundException

  • MainframeModernization.Client.exceptions.ThrottlingException

  • MainframeModernization.Client.exceptions.AccessDeniedException

  • MainframeModernization.Client.exceptions.ValidationException

  • MainframeModernization.Client.exceptions.InternalServerException