You need to enable JavaScript to run this app.
导航
查询标准型加速器列表 ListAccelerators
最近更新时间:2024.10.16 16:26:26首次发布时间:2024.08.07 14:36:38

本接口用于查询标准型加速器列表。

请求说明

  • 请求方式:POST
  • 请求地址:https://open.volcengineapi.com?Action=ListAccelerators&Version=2022-03-01

请求参数

Query

参数名称
数据类型
是否必选
参数说明
Action
String
接口名称。当前 API 的名称为 ListAccelerators
Version
String
接口版本。当前 API 的版本为 2022-03-01

Body

参数名称
数据类型
是否必选
参数说明
示例
AcceleratorId
String
标准型加速器 ID 。
accinstance-xxxx
State
String

标准型加速器的状态。支持的值如下:

  • active:运行中。

  • inactive:待配置。

  • deploying:配置中。

  • overdue:欠费中。

  • expired:已过期。

active
ChargeType
String

标准型加速器的计费类型,支持的值如下:

  • PREPAY:预付费。
  • POSTPAY:后付费。
POSTPAY
BillingSpec
String

标准型加速器规格。不同类型加速器的具体规格,参见计费描述(预付费加速器和后付费加速器的规格描述相同)。具体取值如下:

  • small:小型加速器。

  • middle:中型加速器。

  • large:大型加速器。

small
PageSize
Integer
分页查询时每页的行数。默认值:10。最大值:1000。
10
PageNum
Integer
列表的页码,默认值为1。
1

返回参数

参数名称
数据类型
参数说明
示例
Accelerators
Object[]
标准型加速器列表信息。
-
PageNum
Integer
列表的页码。
1
PageSize
Integer
分页查询时每页的行数。
10
TotalCount
Integer
列表条目数。
10

请求示例

POST https://open.volcengineapi.com?Action=ListAccelerators&Version=2022-03-01

返回示例

{
    "ResponseMetadata": {
        "RequestId": "20230604110420****100232280022D31",
        "Action": "ListAccelerators",
        "Version": "2022-03-01",
        "Service": "ga",
        "Region": "cn-north-1"
    },
    "Result": {
        "Accelerators": [
            {
                "AcceleratorId": "accinstance-xxxxxxxx",
                "CreateTime": 1717127658,
                "CrossDomainBandwidthIds": [
                    "crb-xxx"
                ],
                "BillingType": "PayByTrafficMonthly",
                "BillingSpec": "small",
                "ExpiredTime": 1719719658,
                "FullPortSwitch": false,
                "BillingSpecEffectiveTime": 1717127658,
                "ChargeType": "POSTPAY",
                "BandwidthPackageIds": [
                    "gbwp-xx"
                ],
                "Name": "test",
                "RenewType": 0,
                "RegionCount": 1,
                "State": "active",
                "CNAME": "xxxx",
                "ListenerCount": 10,
                "AccountID": "2100xxx"
            }
        ],
        "PageNum": 1,
        "PageSize": 10,
        "TotalCount": 1
    }
}