更新时间:2018-11-19 21:03
startJob
参数 | 类型 | 是否必选 | 说明 |
---|---|---|---|
jobId | String | 是 | 作业ID |
启动成功后返回一个 StartJobResponse
实例;启动失败后,抛出异常: ClientException
。
Java 源码
import com.aliyuncs.batchcompute.main.v20151111.*;
import com.aliyuncs.batchcompute.model.v20151111.*;
import com.aliyuncs.exceptions.ClientException;
public class StartJob {
static String ACCESS_KEY_ID = "xxx"; //这里填写您的 AccessKeyId
static String ACCESS_KEY_SECRET = "xxx"; //这里填写您的 AccessKeySecret
static String REGION_ID = "cn-xxx"; //这里填写 region
static String jobId = "job-000000005BE3E897000007FA00114EE9";
public static void main(String[] args) {
BatchCompute client = new BatchComputeClient(REGION_ID, ACCESS_KEY_ID, ACCESS_KEY_SECRET);
try{
StartJobResponse response = client.startJob(jobId);
//成功接受
System.out.println("RequestId: " + response.getRequestId());
System.out.println("StatusCode: " + response.getStatusCode());
}catch(ClientException e){
e.printStackTrace();
//失败
}
}
}
执行结果:
{
RequestId: null
StatusCode: 201
}
在文档使用中是否遇到以下问题
更多建议
匿名提交