You need to enable JavaScript to run this app.
导航
查询基础型加速器列表ListBasicAccelerators
最近更新时间:2024.09.25 16:35:32首次发布时间:2024.09.25 16:35:32

本接口用于查询基础型加速器列表。

请求说明

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

请求参数

Query

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

Body

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

查询处于何种状态的基础型加速器。

  • active:运行中。
  • inactive:待配置。
  • deploying:配置中。
  • overdue:欠费中。
  • expired:已过期。
active
Name
String
基础型加速器的名称。
test-name
ChargeType
String

基础型加速器的付费模式。支持取值:

  • PREPAY:预付费,表示购买预付费的基础型加速器。

  • POSTPAY:后付费,表示购买后付费的基础型加速器。

PREPAY
IPSetRegion
String

加速区域

  • CN_South:华南
  • API:亚太1

说明

白名单用户可选区域:

  • CN_North:华北
  • CN_East:华东
  • CN_NorthEast:东北
  • CN_Central:华中
  • CN_NorthWest:西北
  • CN_SouthWest:西南
CN_South
EndPointGroupRegion
String

终端节点组的区域。支持:

  • CN_North:华北
  • CN_East:华东
  • CN_South:华南
  • CN_NorthEast:东北
  • CN_Central:华中
  • CN_NorthWest:西北
  • CN_SouthWest:西南
  • AP1:亚太1
CN_South
PageNum
Integer
列表的页码,默认值为1。
1
PageSize
Integer
分页查询时每页的行数。默认值:10。最大值:1000。
10

返回参数

参数名称
数据类型
参数说明
示例
Accelerators
Object[]
基础型加速器的列表。
-
ProjectName
String
项目名称。
default
ResourceTags
Object
自定义标签。
-
PageSize
Integer
分页查询时每页的行数。
10
PageNum
Integer
列表的页码。
1
TotalCount
Integer
列表条目数。
100

请求示例

POST https://open.volcengineapi.com?Action=ListBasicAccelerators&Version=2022-03-01
{
    "AcceleratorId": "accinstance-basic-xxxx"
}

返回示例

{
    "ResponseMetadata": {
        "RequestId": "20230604110420****100232280022D31",
        "Action": "ListBasicAccelerators",
        "Version": "2022-03-01",
        "Service": "ga",
        "Region": "cn-north-1"
    },
    "Result": {
        "Accelerators": [
            {
                "AcceleratorId": "accinstance-basic-xxxx",
                "CrossDomainBandwidthIds": [
                    "crb-xx"
                ],
                "BandwidthPackageIds": [
                    "gbwp-xx"
                ],
                "EndPointGroups": [
                    {
                        "EndPointGroupId": "endpointgroup-basic-xxxx",
                        "Region": "CN_South"
                    }
                ],
                "IPSets": [
                    {
                        "IPSetId": "CN_South",
                        "Region": "华南"
                    }
                ],
                "CreateTime": 1717127708,
                "ExpiredTime": 1719719708,
                "BeginTime": 1717127708,
                "Name": "test-name",
                "State": "active",
                "BillingType": "PayByBandwidthMonthly",
                "RenewType": 0,
                "ChargeType": "POSTPAY",
                "AccountID": "1234567890",
                "AccountName": "GA-test"
            }
        ],
        "TotalCount": 1,
        "PageSize": 10,
        "PageNum": 1,
        "ProjectName": "default",
        "ResourceTags": {
            "Key": "eeee",
            "Value": "rrrr"
        }
    }
}