:py:mod:`global_execution_client` ================================= .. py:module:: global_execution_client .. autoapi-nested-parse:: An example client. This will be imported by dependent APIs. Module Contents --------------- Classes ~~~~~~~ .. autoapisummary:: global_execution_client.GlobalExecutionClient .. py:class:: GlobalExecutionClient(api_url, session=None) This API's client class. .. py:attribute:: logger .. py:method:: get_job_status(execution_id) Get the status of a job. :param execution_id: The ID of the job to retrieve. :type execution_id: str :return: A get execution response. :rtype: requests.models.Response .. py:method:: health() Get the service health. :return: A requests response. :rtype: requests.models.Response .. py:method:: ping() Ping the service. :return: A requests response. :rtype: requests.models.Response .. py:method:: submit_job(job_request) Submit a job to the compute service. :param job_request: The job request data. :type job_request: dict :return: A submit job response. :rtype: requests.models.Response