Help Center/ Elastic Load Balance/ API Reference/ APIs (V3)/ IP Address Group/ Updating IP Addresses in an IP Address Group
Updated on 2025-08-29 GMT+08:00

Updating IP Addresses in an IP Address Group

Function

This API is used to add IP addresses to an IP address group, or update the descriptions of existing IP addresses. This API cannot be used to delete IP addresses.

Note:

  • 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, either 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.

  • Updating the entries defined by ip_list will affect all associated listeners.

Calling Method

For details, see Calling APIs.

URI

POST /v3/{project_id}/elb/ipgroups/{ipgroup_id}/iplist/create-or-update

Table 1 Path Parameters

Parameter

Mandatory

Type

Description

project_id

Yes

String

Definition: Specifies the project ID. For details about how to obtain a project ID, see Obtaining a Project ID.

Constraints: N/A

Range: The value can contain a maximum of 32 characters, including digits and lowercase letters.

Default value: N/A

ipgroup_id

Yes

String

Definition: Specifies the ID of an IP address group.

Constraints: N/A

Range: N/A

Default value: N/A

Request Parameters

Table 2 Request header parameters

Parameter

Mandatory

Type

Description

X-Auth-Token

No

String

Definition: Specifies the token used for IAM authentication.

Constraints: N/A

Range: N/A

Default value: N/A

Table 3 Request body parameters

Parameter

Mandatory

Type

Description

ipgroup

No

UpdateIpListOption object

Definition: Specifies the request parameters for updating IP entries in an IP address group.

Constraints: N/A

Table 4 UpdateIpListOption

Parameter

Mandatory

Type

Description

name

No

String

Definition: Specifies the name of an IP address group.

Constraints: N/A

Range: N/A

Default value: N/A

ip_list

No

Array of UpdateIpGroupIpOption objects

Definition: Specifies IP entries in an IP address group.

The specified IP entries will be added to the IP address group, or the descriptions of existing IP entries will be updated. But the existing IP entries will not be deleted or modified.

Constraints: N/A

Range: N/A

Default value: N/A

description

No

String

Definition: Specifies remarks about the IP address group.

Constraints: N/A

Range: 0 to 255 characters.

Default value: N/A

Table 5 UpdateIpGroupIpOption

Parameter

Mandatory

Type

Description

ip

Yes

String

Definition: Specifies the IP entries in the IP address group.

Constraints: N/A

Range: Each entry can be an IP address, IP address range, or CIDR block. Each IP address range must 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. Both IPv4 and IPv6 addresses are supported.

Default value: N/A

description

No

String

Definition: Specifies remarks about the IP address group.

Constraints: N/A

Range: 0 to 255 characters.

Default value: N/A

Response Parameters

Status code: 200

Table 6 Response body parameters

Parameter

Type

Description

ipgroup

IpGroup object

Definition: Shows the IP address group information.

request_id

String

Definition: Specifies the request ID.

Range: The value is automatically generated, and can contain characters including digits, lowercase letters, and hyphens (-).

Table 7 IpGroup

Parameter

Type

Description

id

String

Definition: Specifies the ID of an IP address group.

Range: N/A

name

String

Definition: Specifies the name of an IP address group.

Range: N/A

description

String

Definition: Provides supplementary information about an IP address group.

Range: N/A

ip_list

Array of IpInfo objects

Definition: Specifies IP addresses in an IP address group. [] indicates any IP address.

listeners

Array of ListenerRef objects

Definition: Specifies the IDs of listeners with which the IP address group is associated.

project_id

String

Definition: Specifies the project ID of the IP address group.

Range: N/A

enterprise_project_id

String

Definition: Specifies the ID of the enterprise project.

Range:

  • 0: The resource belongs to the default enterprise project.

  • A string in UUID format indicates a non-default enterprise project.

created_at

String

Definition: Specifies the time when the IP address group was created.

Range: The value must be a UTC time in the yyyy-MM-dd'T'HH:mm:ss'Z' format.

updated_at

String

Definition: Specifies the time when the IP address group was updated.

Range: The value must be a UTC time in the yyyy-MM-dd'T'HH:mm:ss'Z' format.

Table 8 IpInfo

Parameter

Type

Description

ip

String

Definition: Specifies the IP entries in the IP address group.

Range: Each IP address range must 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

String

Definition: Provides remarks about the IP address group.

Range: 0 to 255 characters.

Table 9 ListenerRef

Parameter

Type

Description

id

String

Definition: Specifies the listener ID.

Range: N/A

Example Requests

Updating IP addresses in an IP address group

PUT https://{ELB_Endpoint}/v3/45977fa2dbd7482098dd68d0d8970117/elb/ipgroups/8722e0e0-9cc9-4490-9660-8c9a5732fbb0/iplist/create-or-update

{
  "ipgroup" : {
    "name" : "test_ipg",
    "ip_list" : [ {
      "ip" : "192.168.1.123",
      "description" : "test"
    }, {
      "ip" : "192.168.1.120",
      "description" : "test update ip0"
    } ]
  }
}

Example Responses

Status code: 200

Successful request.

{
  "request_id" : "46d0dcbec23987f1429491731dce0feb",
  "ipgroup" : {
    "id" : "353d6c3b-aca0-40b7-a059-fad8b20419e7",
    "name" : "test_ipg",
    "project_id" : "060576798a80d5762fafc01a9b5eedc7",
    "description" : "",
    "ip_list" : [ {
      "ip" : "192.168.1.120",
      "description" : "test update ip0"
    }, {
      "ip" : "192.168.1.122",
      "description" : "test update ip2"
    }, {
      "ip" : "192.168.1.123",
      "description" : "test"
    } ],
    "listeners" : [ {
      "id" : "acef0c4d-3bd5-4cd0-8d83-c53e5b1fd652"
    }, {
      "id" : "edb23879-5511-4412-8b7b-9574de7a1295"
    } ],
    "created_at" : "2021-11-29T10:40:30Z",
    "updated_at" : "2022-12-05T13:14:01Z"
  }
}

Status Codes

Status Code

Description

200

Successful request.

Error Codes

See Error Codes.