查询AIDC列表
查询当前企业的智算中心列表。
GET
https://api.alayanew.com/api/aidc/v1/list
Authorizations
Authorizations:StringHeaderRequired
用户可通过已获取Serverless API Key做验证,例如:plain Credential=[YOUR_AK],Signature=[YOUR_SK]。
Response
状态码:application/json
200
code:Int
code是一种常见的返回值形式,表示查询操作的执行结果。
0
-1
0是成功标识,表示操作成功完成。
data:Array
枚举智算中心的详细信息。
data.id:String
智算中心ID,例如:2。
data.code:String
智算中心Code,例如:dev01-2。
data.name:String
智算中心名称
data.nameEn:String
智算中心英文名称,例如:Ma anshan AI Data Center。
data.country:String
智算中心所属国家,例如:中国。
data.address:String
智算中心地址。
data.endpoInt:String
智算中心访问地址,例如:https://osm.dev01-2.zetyun.cn:20443。
msg:String
code返回值为-1时,返回异常信息。
cURL
Python
JavaScript
Go
Java
curl -X GET 'https://api.alayanew.com/api/aidc/v1/list'
-H 'Authorization: plain Credential=YOUR_AK,Signature=YOUR_SK'
200
400
401
404
429
503
504
{
"code": 0,
"data": [
{
"id": 1,
"code": "cn-beijing-a",
"name": "北京一区智算中心",
"nameEn": "Bei Jing AI Data Center",
"country": "中国",
"address": "北京市",
"osmEndpoInt": "https://osm.hd-01.alayanew.com:20443",
"onlineDate": "2024-03-02 10:00:00",
"createdTime": null
},
{
"id": 2,
"code": "dev01-2",
"name": "北京一区",
"nameEn": "Bei Jing AI Data Center",
"country": "中国",
"address": "北京市",
"endpoInt": "https://osm.hd-01.alayanew.com:20443"
}
]
}