gs_interactive.AdminServiceJobManagementApi¶
All URIs are relative to {INTERACTIVE_ENDPOINT}
Method |
HTTP request |
Description |
---|---|---|
DELETE /v1/job/{job_id} |
||
GET /v1/job/{job_id} |
||
GET /v1/job |
delete_job_by_id¶
str delete_job_by_id(job_id)
Example¶
import gs_interactive
from gs_interactive.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to {INTERACTIVE_ENDPOINT}
# See configuration.py for a list of all supported configuration parameters.
configuration = gs_interactive.Configuration(
host = "{INTERACTIVE_ENDPOINT}"
)
# Enter a context with an instance of the API client
with gs_interactive.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = gs_interactive.AdminServiceJobManagementApi(api_client)
job_id = 'job_id_example' # str |
try:
api_response = api_instance.delete_job_by_id(job_id)
print("The response of AdminServiceJobManagementApi->delete_job_by_id:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling AdminServiceJobManagementApi->delete_job_by_id: %s\n" % e)
Parameters¶
Name |
Type |
Description |
Notes |
---|---|---|---|
job_id |
str |
Return type¶
str
HTTP request headers¶
Content-Type: Not defined
Accept: application/json
HTTP response details¶
Status code |
Description |
Response headers |
---|---|---|
200 |
Successful operation |
- |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
get_job_by_id¶
JobStatus get_job_by_id(job_id)
Example¶
import gs_interactive
from gs_interactive.models.job_status import JobStatus
from gs_interactive.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to {INTERACTIVE_ENDPOINT}
# See configuration.py for a list of all supported configuration parameters.
configuration = gs_interactive.Configuration(
host = "{INTERACTIVE_ENDPOINT}"
)
# Enter a context with an instance of the API client
with gs_interactive.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = gs_interactive.AdminServiceJobManagementApi(api_client)
job_id = 'job_id_example' # str | The id of the job, returned from POST /v1/graph/{graph_id}/dataloading
try:
api_response = api_instance.get_job_by_id(job_id)
print("The response of AdminServiceJobManagementApi->get_job_by_id:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling AdminServiceJobManagementApi->get_job_by_id: %s\n" % e)
Parameters¶
Name |
Type |
Description |
Notes |
---|---|---|---|
job_id |
str |
The id of the job, returned from POST /v1/graph/{graph_id}/dataloading |
Return type¶
Authorization¶
No authorization required
HTTP request headers¶
Content-Type: Not defined
Accept: application/json
HTTP response details¶
Status code |
Description |
Response headers |
---|---|---|
200 |
successful operation |
- |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
list_jobs¶
List[JobStatus] list_jobs()
Example¶
import gs_interactive
from gs_interactive.models.job_status import JobStatus
from gs_interactive.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to {INTERACTIVE_ENDPOINT}
# See configuration.py for a list of all supported configuration parameters.
configuration = gs_interactive.Configuration(
host = "{INTERACTIVE_ENDPOINT}"
)
# Enter a context with an instance of the API client
with gs_interactive.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = gs_interactive.AdminServiceJobManagementApi(api_client)
try:
api_response = api_instance.list_jobs()
print("The response of AdminServiceJobManagementApi->list_jobs:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling AdminServiceJobManagementApi->list_jobs: %s\n" % e)
Parameters¶
This endpoint does not need any parameter.
Return type¶
Authorization¶
No authorization required
HTTP request headers¶
Content-Type: Not defined
Accept: application/json
HTTP response details¶
Status code |
Description |
Response headers |
---|---|---|
200 |
successful operation |
- |
[Back to top] [Back to API list] [Back to Model list] [Back to README]