本接口用于获取基础型加速器的终端节点组列表。
参数名称 | 数据类型 | 是否必选 | 参数说明 |
---|---|---|---|
Action | String | 是 | 接口名称。当前 API 的名称为 ListBasicEndpointGroups 。 |
Version | String | 是 | 接口版本。当前 API 的版本为 2022-03-01 。 |
参数名称 | 数据类型 | 是否必选 | 参数说明 | 示例 |
---|---|---|---|---|
AcceleratorId | String | 是 | 基础型加速器的 ID。 | accinstance-basic-xxxx |
PageSize | Integer | 否 | 分页查询时每页的行数。默认值:10。最大值:100。 | 10 |
PageNum | Integer | 否 | 列表的页码,默认值为1。 | 1 |
参数名称 | 数据类型 | 参数说明 | 示例 |
---|---|---|---|
EndpointGroups | Object[] | 终端节点组的列表。 | - |
TotalCount | Integer | 列表条目数。 | 100 |
PageSize | Integer | 分页查询时每页的行数。 | 10 |
PageNum | Integer | 列表的页码。 | 1 |
POST https://open.volcengineapi.com?Action=ListBasicEndpointGroups&Version=2022-03-01 { "AcceleratorId": "accinstance-basic-xxxx" }
{ "ResponseMetadata": { "RequestId": "20230604110420****100232280022D31", "Action": "ListBasicEndpointGroups", "Version": "2022-03-01", "Service": "ga", "Region": "cn-north-1" }, "Result": { "EndpointGroups": [ { "EndpointGroupId": "endpointgroup-basic-xxxx", "AcceleratorId": "accinstance-basic-xxxx", "Name": "GA-group", "State": "active", "Region": "CN_East", "Endpoints": [ { "EndpointId": "endpoint-basic-xxxx", "Type": "ECS", "EndpointAddress": "1.1.1.1" } ] } ], "TotalCount": 1, "PageSize": 10, "PageNum": 1 } }