Updated on 2025-02-24 GMT+08:00

Creating an IP Address Group

Function

This API is used to create an IP address group.

Each IP address group can contain a single IP address, IP address ranges, or CIDR blocks. Each IP address range must be in the format of ip-ip, for example, 10.12.3.1-10.12.3.10. Both IPv4 and IPv6 addresses are supported.

0.0.0.0 will be considered the same as 0.0.0.0/32. If you enter both 0.0.0.0 and 0.0.0.0/32, only one will be kept. 0:0:0:0:0:0:0:1 will be considered the same as ::1 and ::1/128. If you enter 0:0:0:0:0:0:0:1, ::1 and ::1/128, only one will be kept.

Calling Method

For details, see Calling APIs.

URI

POST /v3/{project_id}/elb/ipgroups

Table 1 Path Parameters

Parameter

Mandatory

Type

Description

project_id

Yes

String

Specifies the project ID.

Request Parameters

Table 2 Request header parameters

Parameter

Mandatory

Type

Description

X-Auth-Token

Yes

String

Specifies the token used for IAM authentication.

Table 3 Request body parameters

Parameter

Mandatory

Type

Description

ipgroup

Yes

CreateIpGroupOption object

Specifies the request body for creating an IP address group.

Table 4 CreateIpGroupOption

Parameter

Mandatory

Type

Description

project_id

No

String

Specifies the project ID of the IP address group.

description

No

String

Provides supplementary information about the IP address group.

name

No

String

Specifies the IP address group name.

ip_list

Yes

Array of CreateIpGroupIpOption objects

Specifies the IP addresses or CIDR blocks in the IP address group. [] indicates any IP address.

enterprise_project_id

No

String

Specifies the ID of the enterprise project that the IP address group belongs to.

Table 5 CreateIpGroupIpOption

Parameter

Mandatory

Type

Description

ip

Yes

String

Specifies the IP addresses in the IP address group. An IP address range can be in the format of ip-ip, for example, 192.168.1.2-192.168.2.253 or 2001:0DB8:02de::0e12-2001:0DB8:02de::0e13. The end IP address must be greater than the start IP address.

description

No

String

Provides remarks about the IP address group.

Response Parameters

Status code: 201

Table 6 Response body parameters

Parameter

Type

Description

ipgroup

IpGroup object

Specifies the response body for creating an IP address group.

request_id

String

Specifies the request ID.

Note: The value is automatically generated.

Table 7 IpGroup

Parameter

Type

Description

id

String

Specifies the ID of the IP address group.

name

String

Specifies the IP address group name.

description

String

Provides supplementary information about the IP address group.

ip_list

Array of IpInfo objects

Specifies the IP addresses or CIDR blocks in the IP address group. [] indicates any IP address.

listeners

Array of ListenerRef objects

Lists the IDs of listeners with which the IP address group is associated.

project_id

String

Specifies the project ID of the IP address group.

enterprise_project_id

String

Specifies the ID of the enterprise project that the IP address group belongs to.

created_at

String

Specifies the time when the IP address group was created.

updated_at

String

Specifies the time when the IP address group was updated.

Table 8 IpInfo

Parameter

Type

Description

ip

String

Specifies the IP addresses in the IP address group.

description

String

Provides remarks about the IP address group.

Table 9 ListenerRef

Parameter

Type

Description

id

String

Specifies the listener ID.

Example Requests

Creating an IP address group and specifying IP addresses

POST https://{ELB_Endpoint}/v3/45977fa2dbd7482098dd68d0d8970117/elb/ipgroups

{
  "ipgroup" : {
    "name" : "test_ipg",
    "ip_list" : [ {
      "ip" : "192.168.1.123"
    }, {
      "ip" : "192.168.3.0/24",
      "description" : "test_ip"
    }, {
      "ip" : "2001:0DB8:02de:0000:0000:0000:0000:0e13"
    } ]
  }
}

Example Responses

Status code: 201

Normal response to POST requests.

{
  "ipgroup" : {
    "description" : "",
    "id" : "8722e0e0-9cc9-4490-9660-8c9a5732fbb0",
    "name" : "test_ipg",
    "project_id" : "45977fa2dbd7482098dd68d0d8970117",
    "ip_list" : [ {
      "ip" : "192.168.1.123",
      "description" : ""
    }, {
      "ip" : "192.168.3.0/24",
      "description" : "test_ip"
    } ],
    "listeners" : [ {
      "id" : "88f9c079-29cb-435a-b98f-0c5c0b90c2bd"
    }, {
      "id" : "2f4c9644-d5d2-4cf8-a3c0-944239a4f58c"
    } ],
    "created_at" : "2018-01-16T03:19:16",
    "updated_at" : "2018-01-16T03:19:16"
  }
}

Status Codes

Status Code

Description

201

Normal response to POST requests.

Error Codes

See Error Codes.