You need to enable JavaScript to run this app.
导航
创建基础型加速器的终端节点组CreateBasicEndpointGroup
最近更新时间:2024.09.29 15:03:38首次发布时间:2024.09.29 15:03:38

本接口用于为基础型加速器创建终端节点组。

请求说明

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

请求参数

Query

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

Body

参数名称
数据类型
是否必选
参数说明
示例
AcceleratorId
String
基础型加速器 ID 。
accinstance-basic-xxxx
Name
String
终端节点组的名称。
endpointgroup-basic-xxxx
EndpointType
String

终端节点组类型,支持取值:

  • public:公网

  • private:私网

public
Region
String

终端节点组所在区域。

  • CN_North:华北
  • CN_East:华东
  • CN_South:华南
  • CN_NorthEast:东北
  • CN_Central:华中
  • CN_NorthWest:西北
  • CN_SouthWest:西南
  • AP1:亚太1
CN_East
Endpoints
Object[]
终端节点组内终端节点的信息。
-

返回参数

参数名称
数据类型
参数说明
示例
EndpointGroupId
String
终端节点组 ID 。
endpointgroup-basic-xxxx

请求示例

POST https://open.volcengineapi.com?Action=CreateBasicEndpointGroup&Version=2022-03-01
{
    "AcceleratorId": "accinstance-basic-xxxx",
    "Name": "endpointgroup-basic-xxxx",
    "Region": "CN_East",
    "Endpoints": [
        {
            "Type": "ECS",
            "EndpointAddress": "1.1.1.1"
        }
    ],
    "EndpointType": "public"
}

返回示例

{
    "ResponseMetadata": {
        "RequestId": "20230604110420****100232280022D31",
        "Action": "CreateBasicEndpointGroup",
        "Version": "2022-03-01",
        "Service": "ga",
        "Region": "cn-north-1"
    },
    "Result": {
        "EndpointGroupId": "endpointgroup-basic-xxxx"
    }
}