本接口用于查询指定的终端节点组。
参数名称 | 数据类型 | 是否必选 | 参数说明 |
---|---|---|---|
Action | String | 是 | 接口名称。当前 API 的名称为 DescribeEndpointGroup 。 |
Version | String | 是 | 接口版本。当前 API 的版本为 2022-03-01 。 |
参数名称 | 数据类型 | 是否必选 | 参数说明 | 示例 |
---|---|---|---|---|
ListenerId | String | 是 | 监听器ID。 | listener-xxxx |
EndpointGroupId | String | 是 | 标准型加速器的终端节点组ID。 | endpointgroup-xxxx |
参数名称 | 数据类型 | 参数说明 | 示例 |
---|---|---|---|
AcceleratorId | String | 标准型加速器 ID 。 | accelerator-xxxx |
ListenerId | String | 监听器 ID。 | listener-xxxx |
EndpointGroupId | String | 终端节点组 ID。 | endpointgroup-xxxx |
Name | String | 终端节点组名称。 | test |
Region | String | 终端节点组的区域。
| CN_East |
State | String | 终端节点组状态:
| active |
TrafficPercentage | Integer | 流量调配权重,即本终端节点组接入的流量在所有终端节点组接入流量的比例。
| 1 |
KeepClientIP | Boolean | 是否开启了保持客户端源IP功能。
| true |
KeepClientIPMethod | String | 保持客户端源IP的方法:
注意 如果您的后端服务器不支持解析Proxy Protocol,则会导致后端服务器无法正确解析加速流量。 | Proxy Protocol v1 |
EndpointType | String | 终端节点类型,支持取值:
| public |
SourceIP | Object[] | 表示私网回源IP网段,仅在终端节点为私网类型时存在。 | - |
EndpointConfigurations | Object[] | 终端节点的配置信息。 | - |
HealthyConfig | Object | 健康检查的配置信息。 | - |
HealthCheckStatus | String | 终端节点组的健康检查状态:
| normal |
POST https://open.volcengineapi.com?Action=DescribeEndpointGroup&Version=2022-03-01 { "EndpointGroupId": "endpointgroup-xxxx", "ListenerId": "listener-xxxx" }
{ "ResponseMetadata": { "RequestId": "20230604110420****100232280022D31", "Action": "DescribeEndpointGroup", "Version": "2022-03-01", "Service": "ga", "Region": "cn-north-1" }, "Result": { "AcceleratorId": "accelerator-xxxx", "ListenerId": "listener-xxxx", "Region": "CN_East", "EndpointGroupId": "endpointgroup-xxxx", "Name": "test", "State": "active", "TrafficPercentage": 1, "HealthCheckStatus": "normal", "KeepClientIP": true, "KeepClientIPMethod": "Proxy Protocol v1", "EndpointType": "public", "HealthyConfig": { "HealthCheckEnable": true, "HealthCheckProtocol": "TCP", "HealthCheckPort": 80, "HealthResponseTimeOut": 2, "HealthCheckInterval": 2, "HealthyThreshold": 3 }, "EndpointConfigurations": [ { "Type": "IP", "Endpoint": "1.1.1.1", "Weight": 1, "HealthCheckStatus": "normal" } ] } }