Adding an Endpoint Group
Function
This API is used to add an endpoint group.
Calling Method
For details, see Calling APIs.
URI
POST /v1/endpoint-groups
Request Parameters
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
X-Auth-Token |
Yes |
String |
Specifies the user token. The token can be obtained by calling the IAM API. The value of X-Subject-Token in the response header is the user token. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
endpoint_group |
Yes |
CreateEndpointGroupOption object |
Specifies the detailed information about adding an endpoint group. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
name |
Yes |
String |
Specifies the endpoint group name. The name can contain 1 to 64 characters. Only letters, digits, and hyphens (-) are allowed. |
description |
No |
String |
Specifies the information about the endpoint group. The value can contain 0 to 255 characters. The following characters are not allowed: <> |
traffic_dial_percentage |
No |
Integer |
Specifies the percentage of traffic distributed to the endpoint group. |
region_id |
Yes |
String |
Specifies the region where the endpoint group belongs. |
listeners |
Yes |
Array of Id objects |
Specifies the listener associated with the endpoint group. An endpoint group can have only one listener. |
Response Parameters
Status code: 201
Parameter |
Type |
Description |
---|---|---|
endpoint_group |
EndpointGroupDetail object |
Specifies the endpoint group. |
request_id |
String |
Specifies the request ID. |
Parameter |
Type |
Description |
---|---|---|
id |
String |
Specifies the endpoint group ID. |
name |
String |
Specifies the endpoint group name. The name can contain 1 to 64 characters. Only letters, digits, and hyphens (-) are allowed. |
description |
String |
Specifies the information about the endpoint group. The value can contain 0 to 255 characters. The following characters are not allowed: <> |
status |
String |
Specifies the provisioning status. The value can be one of the following:
|
traffic_dial_percentage |
Integer |
Specifies the percentage of traffic distributed to the endpoint group. |
region_id |
String |
Specifies the region where the endpoint group belongs. |
listeners |
Array of Id objects |
Specifies the listeners associated with the endpoint group. |
created_at |
String |
Specifies when the endpoint group was added. |
updated_at |
String |
Specifies when the endpoint group was updated. |
domain_id |
String |
Specifies the tenant ID. |
frozen_info |
FrozenInfo object |
Specifies the frozen details of cloud services or resources. |
Parameter |
Type |
Description |
---|---|---|
status |
Integer |
Specifies the status of a cloud service or resource. The value can be one of the following:
|
effect |
Integer |
Specifies the status of the resource after being frozen. The value can be one of the following:
|
scene |
Array of strings |
Specifies the service scenario. The value can be one of the following:
|
Example Requests
Creating an endpoint group whose traffic dial is 10 in ap-southeast-1
POST https://{ga_endpoint}/v1/endpoint-groups { "endpoint_group" : { "name" : "endpoint-group-name", "description" : "endpoint-group description", "traffic_dial_percentage" : 10, "region_id" : "ap-southeast-1", "listeners" : [ { "id" : "1b11747a-b139-492f-9692-2df0b1c87193" } ] } }
Example Responses
Status code: 201
Endpoint group added.
{ "endpoint_group" : { "id" : "3a9f50bb-f041-4eac-a117-82472d8a0007", "name" : "endpoint-group-name", "description" : "endpoint-group description", "status" : "ACTIVE", "traffic_dial_percentage" : 10, "region_id" : "ap-southeast-1", "listeners" : [ { "id" : "1b11747a-b139-492f-9692-2df0b1c87193" } ], "created_at" : "2019-01-08T01:21:37.151Z", "updated_at" : "2019-01-08T01:21:37.151Z", "domain_id" : "99a3fff0d03c428eac3678da6a7d0f24", "frozen_info" : { "status" : 2, "effect" : 1, "scene" : [ "ARREAR", "POLICE" ] } }, "request_id" : "915a14a6-867b-4af7-83d1-70efceb146f9" }
Status Codes
Status Code |
Description |
---|---|
201 |
Endpoint group added. |
Error Codes
See Error Codes.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot