forked from docs/doc-exports
Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com> Co-authored-by: guoyanyan <guoyanyan3@huawei.com> Co-committed-by: guoyanyan <guoyanyan3@huawei.com>
12 KiB
12 KiB
Querying the Specified Network of an ECS
Function
This API is used to query the specified network of an ECS.
Constraints
None
URI
GET /v2.1/{project_id}/servers/{server_id}/ips/{networkName}
GET /v2/{project_id}/servers/{server_id}/ips/{networkName}
Table 1 describes the parameters in the URI.
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
server_id |
Yes |
String |
Specifies the ECS ID. |
networkName |
Yes |
String |
Specifies the ECS network name. |
Request
None
Response
Table 3 describes the response parameters.
Parameter |
Type |
Description |
---|---|---|
Name of the network where the ECS accesses |
List(Dict) |
Specifies the network where the ECS accesses. For details about the network, see Table 4. |
Example Request
GET https://{endpoint}/v2/{project_id}/servers/{server_id}/ips/{networkName} GET https://{endpoint}/v2.1/{project_id}/servers/{server_id}/ips/{networkName}
Example Response
{ "Name of the network where the ECS accesses": [ { "version": 4, "addr": "10.0.0.4" }, { "version": 4, "addr": "192.150.73.132" } ] }
Returned Values
Parent topic: Network Management