可用区
更新时间:2024-07-02
查询可用区列表
如下代码可以查询所有的可用区列表:
result, err := client.ListZone()
if err != nil {
fmt.Println("list zone failed: ", err)
} else {
fmt.Println("list zone success: ", result)
}
查询机型的可用区
使用以下代码可以查询指定机型支持的可用区列表:
args := &api.ListTypeZonesArgs{
// 选择实例类型,可以选择N1, N2, N3等
InstanceType: "",
// 产品类型, 可以选择Prepaid,Postpaid
ProductType: "",
// 实例套餐规格,可以选择bcc.g3.c2m12等
Spec: "",
// 实例套餐规格族,可以选择g3,ic4等
SpecId: "",
}
if res, err := BCC_CLIENT.ListTypeZones(args); err != nil {
fmt.Println("Get the specific zone flavor failed: ", err)
} else {
fmt.Println("Get the specific zone flavor success, result: ", res)
}