Help Center
Adding an EIP to a Shared Bandwidth
Function
This API is used to add an EIP to a shared bandwidth.
URI
POST /v2.0/{project_id}/bandwidths/{bandwidth_id}/insert
|
Name |
Mandatory |
Description |
|---|---|---|
|
project_id |
Yes |
Specifies the project ID. For details about how to obtain a project ID, see Obtaining a Project ID. |
|
bandwidth_id |
Yes |
Specifies the bandwidth ID, which uniquely identifies the bandwidth. |
Request Message
- Request parameter
Table 2 Request parameter Name
Mandatory
Type
Description
bandwidth
Yes
Object
Specifies the bandwidth objects. For details, see Table 3.
Table 3 Description of the bandwidth field Name
Mandatory
Type
Description
publicip_info
Yes
Array of publicip_info objects
- Specifies information about the EIP to be added to the shared bandwidth. For details, see Table 4.
- The bandwidth, whose type is WHOLE, can be used by multiple EIPs. The number of EIPs varies depending on the tenant quota. By default, a shared bandwidth can be used by up to 20 EIPs.
Table 4 publicip_info object Name
Mandatory
Type
Description
publicip_id
Yes
String
Specifies the ID of the EIP that uses the bandwidth.
publicip_type
No
String
- Specifies the EIP type.
- Possible values are 5_telcom (China Telecom), 5_union (China Unicom), 5_bgp (dynamic BGP), and 5_sbgp (static BGP).
- CN Northeast-Dalian: 5_telcom and 5_union
- CN South-Guangzhou: 5_bgp and 5_sbgp
- CN East-Shanghai1: 5_bgp and 5_sbgp
- CN East-Shanghai2: 5_bgp and 5_sbgp
- CN North-Beijing1: 5_bgp and 5_sbgp
- AP-Hong Kong: 5_bgp
- AP-Bangkok: 5_bgp
- AP-Singapore: 5_bgp
- AF-Johannesburg: 5_bgp
- CN Southwest-Guiyang1: 5_sbgp
- CN North-Beijing4: 5_bgp, 5_sbgp, and 5_dualStack
- LA-Santiago: 5_bgp
- LA-Sao Paulo1: 5_bgp
- LA-Mexico City1: 5_bgp
- LA-Buenos Aires1: 5_bgp
- LA-Lima1: 5_bgp
- LA-Santiago2: 5_bgp
- Constraints:
- The configured value must be supported by the system.
- publicip_id is an IPv4 port. If publicip_type is not specified, the default value is 5_bgp.
- If the publicip_id value is the EIP ID, this parameter will be ignored. If publicip_id is the ID of the IPv6 port, this parameter must be set to 5_dualStack. This only applies to the CN North-Beijing4 region.
- Example request
POST https://{Endpoint}/v2.0/{project_id}/bandwidths/{bandwidth_id}/insert { "bandwidth": { "publicip_info": [ { "publicip_id": "1d184b2c-4ec9-49b5-a3f9-27600a76ba3f", "publicip_type": "5_bgp" } ] } }
Response Message
- Response parameter
Table 5 Response parameter Name
Type
Description
bandwidth
Object
Specifies the bandwidth objects. For details, see Table 6.
Table 6 Description of the bandwidth field Name
Type
Description
name
String
- Specifies the bandwidth name.
- The value is a string of 1 to 64 characters that can contain letters, digits, underscores (_), hyphens (-), and periods (.).
size
Integer
- Specifies the bandwidth size.
- The value ranges from 5 Mbit/s to 2000 Mbit/s by default. (The specific range may vary depending on the configuration in each region. You can see the available bandwidth range on the management console.)
id
String
Specifies the bandwidth ID, which uniquely identifies the bandwidth.
share_type
String
- Specifies whether the bandwidth is shared or dedicated.
- The value can be PER or WHOLE.
- WHOLE: Shared bandwidth
- PER: Dedicated bandwidth
publicip_info
Array of publicip_info objects
- Specifies information about the EIP that uses the bandwidth. For details, see Table 7.
- The bandwidth, whose type is WHOLE, can be used by multiple EIPs. The bandwidth, whose type is PER, can be used by only one EIP.
tenant_id
String
Specifies the project ID.
bandwidth_type
String
- Specifies the bandwidth type. The default value for the shared bandwidth is share.
- The value can be share, bgp, telcom, or sbgp.
- share: Shared bandwidth
- bgp: Dynamic BGP
- telcom: China Unicom
- sbgp: Static BGP
charge_mode
String
- Specifies whether the billing is based on traffic, bandwidth, or 95th percentile bandwidth (enhanced).
- Possible values can be bandwidth (billed by bandwidth), traffic (billed by traffic), or 95peak_plus (billed by enhanced 95th percentile bandwidth). If the value is an empty character string or no value is specified, value bandwidth is used.
- Only the shared bandwidth supports 95peak_plus (billed by enhanced 95th percentile bandwidth). If you use the enhanced 95th percentile bandwidth, you need to specify the guaranteed bandwidth percentage. The default value is 20%.
billing_info
String
Specifies the bill information.
If billing_info is specified, the bandwidth is in yearly/monthly billing mode.
enterprise_project_id
String
- Specifies the enterprise project ID. The value can contain a maximum of 36 characters. It is string "0" or in UUID format with hyphens (-). When creating a shared bandwidth, associate the enterprise project ID with the shared bandwidth.
NOTE:For more information about enterprise projects and how to obtain enterprise project IDs, see the Enterprise Management User Guide.
status
String
- Specifies the bandwidth status.
- Possible values are as follows:
- FREEZED (Frozen)
- NORMAL (Normal)
Table 7 publicip_info objects Name
Type
Description
publicip_id
String
Specifies the ID of the EIP or IPv6 port that uses the bandwidth.
publicip_address
String
Specifies the obtained EIP if only IPv4 EIPs are available. Specifies the IPv4 address corresponding to the IPv6 address if IPv6 EIPs are available.
publicipv6_address
String
Specifies the obtained EIP if IPv6 EIPs are available. This parameter does not exist if only IPv4 EIPs are available.
ip_version
Integer
- Specifies the IP address version.
- Possible values are as follows:
- 4: IPv4 address
- 6: IPv6 address
publicip_type
String
- Specifies the EIP type.
- Possible values are 5_telcom (China Telecom), 5_union (China Unicom), 5_bgp (dynamic BGP), and 5_sbgp (static BGP).
- CN Northeast-Dalian: 5_telcom and 5_union
- CN South-Guangzhou: 5_bgp and 5_sbgp
- CN East-Shanghai1: 5_bgp and 5_sbgp
- CN East-Shanghai2: 5_bgp and 5_sbgp
- CN North-Beijing1: 5_bgp and 5_sbgp
- AP-Hong Kong: 5_bgp
- AP-Bangkok: 5_bgp
- AP-Singapore: 5_bgp
- AF-Johannesburg: 5_bgp
- CN Southwest-Guiyang1: 5_sbgp
- CN North-Beijing4: 5_bgp and 5_sbgp
- LA-Santiago: 5_bgp
- LA-Sao Paulo1: 5_bgp
- LA-Mexico City1: 5_bgp
- LA-Buenos Aires1: 5_bgp
- LA-Lima1: 5_bgp
- LA-Santiago2: 5_bgp
- The configured value must be supported by the system.
- Example response
{ "bandwidth": { "id": "3fa5b383-5a73-4dcb-a314-c6128546d855", "name": "bandwidth123", "size": 10, "share_type": "WHOLE", "publicip_info": [ { "publicip_id": "d91b0028-6f6b-4478-808a-297b75b6812a", "publicip_address": "::ffff:192.168.89.9", "publicip_type": "5_dualStack", "ip_version": 6 }, { "publicip_id": "1d184b2c-4ec9-49b5-a3f9-27600a76ba3f", "publicip_address": "99.xx.xx.82", "publicip_type": "5_bgp", "ip_version": 4 } ], "tenant_id": "8b7e35ad379141fc9df3e178bd64f55c", "charge_mode": "traffic", "bandwidth_type": "share", "billing_info": "CS1712121146TSQOJ:0616e2a5dc9f4985ba52ea8c0c7e273c:southchina:35f2b308f5d64441a6fa7999fbcd4321" } }
Status Code
See Status Codes.
Error Code
See Error Codes.
Last Article: Deleting a Shared Bandwidth
Next Article: Removing an EIP from a Shared Bandwidth
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.