文档

删除集群实例

更新时间:

接口

delete_cluster_instance

参数

参数 类型 是否biubiu 描述
cluster_id string 集群标识符
group_name string 实例组名称
instance_id string 实例名称

返回值

delete_cluster_instance方法将返回一个 ActionResponse 对象。

例子

Python源码:

  1. import time
  2. import batchcompute
  3. from batchcompute import CN_SHENZHEN as REGION
  4. from batchcompute import Client, ClientError
  5. ACCESS_KEY_ID = 'Your Access Key Id'
  6. ACCESS_KEY_SECRET = 'Your Access Key Secret'
  7. client = Client(REGION, ACCESS_KEY_ID, ACCESS_KEY_SECRET)
  8. def delete_cluster_instance():
  9. try:
  10. cluster_id = 'cls-xxx'
  11. group_name = 'group1'
  12. instance_id = 'ins-xxx'
  13. rsp = client.delete_cluster_instance(cluster_id, group_name, instance_id)
  14. print rsp
  15. except ClientError, e:
  16. print (e.get_status_code(), e.get_code(), e.get_requestid(), e.get_msg())
  17. if __name__ == '__main__':
  18. delete_cluster_instance()

执行结果:

  1. {
  2. "Date": "Fri, 09 Nov 2018 03:23:39 GMT",
  3. "RequestId": "CA85C95F-9915-4F35-A166-FC89D854016E",
  4. "StatusCode": 201
  5. }
  • 本页导读 (0)
文档反馈