删除镜像
更新时间:
复制为 MD 格式
接口
deleteImage
参数
| 参数 | 类型 | 是否必需 | 说明 |
|---|---|---|---|
| imageId | String | 是 | 镜像ID |
返回值
调用成功后返回一个 DeleteImageResponse 实例。调用失败后,抛出异常:ClientException 。
例子
Java 源码:
import com.aliyuncs.batchcompute.main.v20151111.*;import com.aliyuncs.batchcompute.model.v20151111.*;import com.aliyuncs.exceptions.ClientException;public class DeleteImage {static String ACCESS_KEY_ID = "xxx"; //这里填写您的 AccessKeyIdstatic String ACCESS_KEY_SECRET = "xxx"; //这里填写您的 AccessKeySecretstatic String REGION_ID = "cn-xxx"; //这里填写 regionpublic static void main(String[] args) {BatchCompute client = new BatchComputeClient(REGION_ID, ACCESS_KEY_ID, ACCESS_KEY_SECRET);try{DeleteImageResponse response = client.deleteImage("img-6kie8e832lnov8gg50k00b");//System.out.println("RequestId: " + response.getRequestId());System.out.println("StatusCode: " + response.getStatusCode());}catch(ClientException e) {e.printStackTrace();//调用失败}}}
执行结果:
{RequestId: nullStatusCode: 204}
该文章对您有帮助吗?