接口
接口名称:delete_cluster
# 参数
参数 | 类型 | 是否必须 | 描述 |
---|---|---|---|
cluster | string | 是 | 集群标识符 |
返回值
成功返回 ActionResponse 对象,对象内容
失败抛出异常和错误,参考 SDK的使用说明 中的异常类型。
例子
下面例子您需要制定集群标识码。
Python 源码:
import time
import batchcompute
from batchcompute import CN_SHENZHEN as REGION
from batchcompute import Client, ClientError
ACCESS_KEY_ID = 'Your Access Key Id'
ACCESS_KEY_SECRET = 'Your Access Key Secret'
client = Client(REGION, ACCESS_KEY_ID, ACCESS_KEY_SECRET)
def delete_cluster():
try:
# Cluster ID.
cluster_id = "cls-xxxx"
rsp = client.delete_cluster(cluster_id)
print rsp
except ClientError, e:
print (e.get_status_code(), e.get_code(), e.get_requestid(), e.get_msg())
if __name__ == '__main__':
delete_cluster()
执行结果:
{
"Date": "Thu, 08 Nov 2018 11:24:57 GMT",
"RequestId": "8D509013-7568-4175-AB3D-1FC05E3BD472",
"StatusCode": 200
}
文档内容是否对您有帮助?