listInstances
参数
参数 | 类型 | 是否必选 | 说明 |
---|---|---|---|
jobId | String | 是 | 作业ID |
taskName | String | 是 | 任务名称 |
marker | String | 否 | 本页起始资源标识符。默认为空字符串。 |
maxItemCount | int | 否 | 返回条数,最大取值200,默认200 |
返回值
成功后返回一个 ListInstancesResponse
实例,可以通过这个实例的 getInstanceList()
方法,获取 List<Instance> 对象。 如果失败,抛出异常: ClientException
。Instance
的属性信息参考API文档。
例子
Java 源码
import com.aliyuncs.batchcompute.main.v20151111.*;
import com.aliyuncs.batchcompute.model.v20151111.*;
import com.aliyuncs.batchcompute.pojo.v20151111.Instance;
import com.aliyuncs.exceptions.ClientException;
import java.util.List;
import java.util.ArrayList;
public class ListInstancesDemo {
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";
static String taskName = "javaSdkTask";
static String marker = ""; //上次listJobs返回的nextMarker,第一次查询不用填。
static int maxItemCount = 100; //最大100,默认50
public static void main(String[] args) {
BatchCompute client = new BatchComputeClient(REGION_ID, ACCESS_KEY_ID, ACCESS_KEY_SECRET);
try{
List<Instance> list = new ArrayList<>();
do{
ListInstancesResponse response = client.listInstances(jobId, taskName, marker, maxItemCount);
//成功
list.addAll(response.getItems());
//下一页的marker,查询下一页的时候,需要带上这个参数
marker = response.getNextMarker();
}while(marker!=null && !marker.equals(""));
for (Instance ins: list){
System.out.println("InstanceId: " + ins.getInstanceId());
System.out.println("InstanceState: " + ins.getState());
System.out.println("InstanceIP: " + ins.getNodeIp());
}
}catch(ClientException e){
e.printStackTrace();
//失败
}
}
}
执行结果:
{
InstanceId: 0
InstanceState: Stopped
InstanceIP: 10.1.98.3
}
文档内容是否对您有帮助?