跳到主要内容

查询AIDC列表

查询当前企业的智算中心列表。
GET
https://api.alayanew.com/api/aidc/v1/list
Authorizations
AuthorizationsStringHeaderRequired

用户可通过已获取Serverless API Key做验证,例如:plain Credential=[YOUR_AK],Signature=[YOUR_SK]。

Response
状态码:application/json
codeInt

code是一种常见的返回值形式,表示查询操作的执行结果。

0是成功标识,表示操作成功完成。
dataArray

枚举智算中心的详细信息。

data.idString

智算中心ID,例如:2。

data.codeString

智算中心Code,例如:dev01-2。

data.nameString

智算中心名称

data.nameEnString

智算中心英文名称,例如:Ma anshan AI Data Center。

data.countryString

智算中心所属国家,例如:中国。

data.addressString

智算中心地址。

data.endpoIntString

智算中心访问地址,例如:https://osm.dev01-2.zetyun.cn:20443。

msgString

code返回值为-1时,返回异常信息。

curl -X GET 'https://api.alayanew.com/api/aidc/v1/list' 
     -H 'Authorization: plain Credential=YOUR_AK,Signature=YOUR_SK'
{
    "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"
        }
    ]
}