Implemented Terminate, Cancel and List jobs

This commit is contained in:
Terry Cain 2017-10-11 23:46:27 +01:00
commit e3024ae1ba
No known key found for this signature in database
GPG key ID: 14D90844E4E9B9F3
4 changed files with 249 additions and 3 deletions

View file

@ -18,5 +18,8 @@ url_paths = {
'{0}/v1/deregisterjobdefinition': BatchResponse.dispatch,
'{0}/v1/describejobdefinitions': BatchResponse.dispatch,
'{0}/v1/submitjob': BatchResponse.dispatch,
'{0}/v1/describejobs': BatchResponse.dispatch
'{0}/v1/describejobs': BatchResponse.dispatch,
'{0}/v1/listjobs': BatchResponse.dispatch,
'{0}/v1/terminatejob': BatchResponse.dispatch,
'{0}/v1/canceljob': BatchResponse.dispatch,
}