Reviewed-by: gtema <artem.goncharov@gmail.com> Co-authored-by: Yang, Tong <yangtong2@huawei.com> Co-committed-by: Yang, Tong <yangtong2@huawei.com>
20 KiB
Updating a Job Object
Function
This API is used to update a job object. This API is compatible with Sahara.
URI
- Format
- Parameter description
Table 1 URI parameter description Parameter
Mandatory
Description
project_id
Yes
Project ID. For details on how to obtain the project ID, see Obtaining a Project ID.
job_id
Yes
Job object ID
Request
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
name |
No |
String |
Job object name Contains 1 to 64 characters and consists of letters, digits, hyphens (-), and underscores (_) only. |
mains |
No |
Array |
Executable program set of a job object The current version does not support update of the executable program set. |
libs |
No |
Array |
Dependency package set of a job object The current version does not support update of the dependency package set. |
is_protected |
No |
Bool |
Whether a job object is protected
The current version does not support this function. |
interface |
No |
Array |
User-defined interface set The current version does not support this function. |
is_public |
No |
Bool |
Whether a job object is public
The current version does not support this function. |
type |
No |
String |
Job object type
|
description |
No |
String |
Job object description Contains a maximum of 65535 characters. |
Response
Parameter |
Type |
Description |
---|---|---|
description |
String |
Job object description |
tenant_id |
String |
Project ID. For details on how to obtain the project ID, see Obtaining a Project ID. |
created_at |
String |
Job object creation time |
updated_at |
String |
Job object update time |
mains |
Array |
Executable program set of a job object |
libs |
Array |
Dependency package set of a job object |
is_protected |
Bool |
Whether a job object is protected
The current version does not support this function. |
interface |
Array |
User-defined interface set |
is_public |
Bool |
Whether a job object is public
The current version does not support this function. |
type |
String |
Job object type |
id |
String |
Job object ID |
name |
String |
Job object name |
Example
- Example request
{ "name": "my-mapreduce-job-update", "mains": [ ], "libs": [ "2628d0e4-6109-4a09-a338-c4ee1b0963ed" ], "is_protected": false, "interface": [ ], "is_public": false, "type": "MapReduce", "description": "This is the Map Reduce job template" }
- Example response
{ "job": { "name": "my-mapreduce-job-update", "type": "MapReduce", "description": "This is the Map Reduce job template", "mains": [], "libs": [ { "name": "my-job-binary-666", "url": "/simple/mapreduce/program", "description": "this is the job binary template", "id": "2628d0e4-6109-4a09-a338-c4ee1b0963ed", "tenant_id": "5a3314075bfa49b9ae360f4ecd333695", "is_public": false, "is_protected": false, "extra": null } ], "created_at": "2017-06-22T12:05:58", "updated_at": "2017-06-22T12:05:58", "id": "b8ea4daa-0042-45e0-a522-e8b714e74760", "tenant_id": "5a3314075bfa49b9ae360f4ecd333695", "is_public": false, "is_protected": false, "interface": [] } }
Status Code
Table 4 describes the status code of this API.
For the description about error status codes, see Status Codes.