38 KiB
- original_name
vpc_bandwidth_0002.html
Querying Bandwidths
Function
This API is used to query bandwidths using search criteria.
URI
GET /v1/{project_id}/bandwidths
Table 1 <vpc_bandwidth_0002__table62833603>
describes the parameters.
Name | Mandatory | Type | Description |
---|---|---|---|
project_id | Yes | String | Specifies the project ID. |
marker | No | String | Specifies a resource ID for pagination query, indicating that the query starts from the next record of the specified resource ID. This parameter can work together with the parameter limit.
|
limit | No | Integer | Specifies the number of records that will be returned on each page. The value is from 0 to intmax (2^31-1). limit can be used together with marker. For details, see the parameter description of marker. |
enterprise_project_id | No | String |
Note This parameter is unsupported. Do not use it. |
Request Message
Request parameter
Table 2 Request header parameter Parameter Mandatory Type Description X-Auth-Token Yes String Specifies the user token. The token can be obtained by calling the IAM API used for obtaining a user token. The value of X-Subject-Token in the response header is the user token. Example request
GET https://{Endpoint}/v1/{project_id}/bandwidths?limit={limit}&marker={marker}
Response Message
Response parameter
Table 3 Response parameter Name Type Description bandwidths Array of bandwidths <vpc_bandwidth_0002__table17227723>
objectsSpecifies the bandwidth objects. For details, see Table 4 <vpc_bandwidth_0002__table17227723>
.Table 4 Description of the bandwidths field Name Type Description name String - Specifies the bandwidth name.
- The value can contain 1 to 64 characters, including letters, digits, underscores (_), hyphens (-), and periods (.).
size Integer - Specifies the bandwidth size in Mbit/s.
- The value ranges from 1 Mbit/s to 1000 Mbit/s by default. (The specific range may vary depending on the configuration in each region. You can see the bandwidth range of each region on the management console.)
id String Specifies the bandwidth ID, which uniquely identifies the bandwidth. share_type String - Possible values are as follows:
- PER: Dedicated bandwidth
- WHOLE: Shared bandwidth
publicip_info Array of publicip_info <vpc_bandwidth_0002__table30936422>
objects- Specifies the information about the EIP that uses the bandwidth. For details, see
Table 5 <vpc_bandwidth_0002__table30936422>
.
tenant_id String Specifies the project ID. bandwidth_type String - Specifies the bandwidth type.
- The value can be:
- share: Shared bandwidth
- gray: Dedicated load balancer
- bgp: Dynamic BGP
charge_mode String If the value is traffic, the bandwidth is billed by traffic. 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 is 0 or a string that contains a maximum of 36 characters in UUID format with hyphens (-). Value 0 indicates the default enterprise project. To obtain the bandwidth bound to all enterprise projects of the user, set all_granted_eps.
- When creating a bandwidth, associate the enterprise project ID with the bandwidth.
Note
This parameter is unsupported. Do not use it.
status String - Specifies the bandwidth status.
- Possible values are as follows:
- FREEZED (Frozen)
- NORMAL (Normal)
created_at String - Specifies the time (UTC) when the bandwidth is created.
- Format: yyyy-MM-ddTHH:mm:ss
updated_at String - Specifies the time (UTC) when the bandwidth is updated.
- Format: yyyy-MM-ddTHH:mm:ss
Table 5 publicip_info object Name Type Description publicip_id String Specifies the ID of the EIP that uses the bandwidth. publicip_address String Specifies the obtained EIP if only IPv4 EIPs are available. publicip_type String - Specifies the EIP type.
- The value can be 5_bgp (Dynamic BGP), 5_mailbgp (Mail BGP), or 5_gray (Dedicated load balancer, shared load balancer).
- 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.
Example response
{ "bandwidths": [ { "id": "09b99c91-da7c-449f-94e2-f4934c5b2a71", "name": "vpngw-f632a7b0-ef50-4ac5-97e9-ddc56b3d5977", "size": 200, "share_type": "PER", "publicip_info": [ { "publicip_id": "2a65923c-7133-415d-ae3b-cf9635a942c5", "publicip_address": "10.xx.xx.3", "ip_version": 4, "publicip_type": "5_bgp", } ], "tenant_id": "26ae5181a416420998eb2093aaed84d9", "bandwidth_type": "bgp", "charge_mode": "traffic", "billing_info": "", "enterprise_project_id": "0", "status": "NORMAL" }, { "id": "0a583ff1-b43e-4000-ade3-e7af0097f832", "name": "vpngw-7e880d5b-f458-40ad-a7e5-735c44cd8b7d", "size": 300, "share_type": "PER", "publicip_info": [ { "publicip_id": "c754bc9a-16d5-4763-9674-d7561917aa80", "publicip_address": "10.xx.xx.9", "ip_version": 4, "publicip_type": "5_bgp", } ], "tenant_id": "26ae5181a416420998eb2093aaed84d9", "bandwidth_type": "bgp", "charge_mode": "traffic", "billing_info": "", "enterprise_project_id": "0", "status": "NORMAL" }, { "id": "0a673f00-3640-4a13-949e-7049b2916baf", "name": "bandwidth123", "size": 10, "share_type": "PER", "publicip_info": [ { "publicip_id": "cec7fb70-2f82-4561-bd83-2121fb642fdc", "publicip_address": "10.xx.xx.184", "ip_version": 4, "publicip_type": "5_bgp", } ], "tenant_id": "26ae5181a416420998eb2093aaed84d9", "bandwidth_type": "bgp", "charge_mode": "traffic", "billing_info": "", "enterprise_project_id": "0", "status": "NORMAL" }, { "id": "0dde1eae-1783-46dc-998c-930fbe261ff9", "name": "bandwidth123", "size": 100, "share_type": "PER", "publicip_info": [ { "publicip_id": "24232038-e178-40ad-80e4-5abb75db84be", "publicip_address": "10.xx.xx.101", "ip_version": 4, "publicip_type": "5_bgp", } ], "tenant_id": "26ae5181a416420998eb2093aaed84d9", "bandwidth_type": "bgp", "charge_mode": "traffic", "billing_info": "", "enterprise_project_id": "0", "status": "NORMAL" } ] }
Status Code
See Status Codes <vpc_api_0002>
.
Error Code
See Error Codes <vpc_api_0003>
.