接口
get_cluster_instance
参数
属性 | 类型 | 是否必须 | 描述 |
---|---|---|---|
cluster_id | string | 是 | 集群标识符。 |
group_name | string | 是 | 实例组名称。 |
instance_id | string | 是 | 实例名称。可以通过获取集群实例列表获取实例名称。 |
返回值
get_cluster_instance方法将返回一个GetResponse
对象。
例子
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 get_cluster_instance():
try:
cluster_id = 'cls-xxx'
group_name = 'group1'
instance_id = 'ins-yyy'
rsp = client.get_cluster_instance(cluster_id, group_name, instance_id)
print rsp
except ClientError, e:
print (e.get_status_code(), e.get_code(), e.get_requestid(), e.get_msg())
if __name__ == '__main__':
get_cluster_instance()
执行结果:
{
"HostName": "iZwz99s9avvluy6sz1zyz9Z",
"Hint": "",
"ErrorMessage": "",
"CreationTime": "2018-05-20 16:18:29",
"ErrorCode": 0,
"State": "Running",
"IpAddress": "10.169.88.18",
"Id": "ins-6kial5tfblm09er5bt2000"
}
文档内容是否对您有帮助?