Available in VPC
Get the list of network interfaces.
Request
This section describes the request format. The method and URI are as follows:
Method | URI |
---|---|
GET | POST | /vserver/v2/getNetworkInterfaceList |
Note
This guide is based on the GET method. POST method call tests can be performed through Swagger in the API Gateway service of the NAVER Cloud Platform console.
Request headers
For information about the headers common to all Server APIs, see Server request headers.
Request query parameters
You can use the following query parameters with your request:
Field | Type | Required | Description |
---|---|---|---|
regionCode |
String | Optional | Region code
|
subnetName |
String | Optional | Filter by the subnet name.
|
networkInterfaceNoList.N |
Array | Optional | Network interface number list
|
networkInterfaceName |
String | Optional | Filter by the network interface name. |
networkInterfaceStatusCode |
String | Optional | Filter by the network interface status code.
|
ip |
String | Optional | Filter by the IP address. |
secondaryIpList.N |
Array | Optional | Secondary IP address list
|
instanceNo |
String | Optional | Filter by the instance number.
|
isDefault |
Boolean | Optional | Filter by whether it is a default network interface.
|
deviceName |
String | Optional | Filter by the device name.
|
serverName |
String | Optional | Filter by the assigned server name. |
pageNo |
Integer | Optional | Page number
|
pageSize |
Integer | Conditional | Number of items per page
|
responseFormatType |
String | Optional | Format of the response data
|
Request example
The request example is as follows:
curl --location --request GET 'https://ncloud.apigw.ntruss.com/vserver/v2/getNetworkInterfaceList
?regionCode=KR
&networkInterfaceName=nic
&subnetName=sb1
&deviceName=eth0
&pageNo=1
&pageSize=2
&responseFormatType=json' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}'
Response
This section describes the response format.
Response body
The response body includes the following data:
Field | Type | Required | Description |
---|---|---|---|
getNetworkInterfaceListResponse |
Object | - | Response result
|
getNetworkInterfaceListResponse.requestId |
String | - | ID for the request
|
getNetworkInterfaceListResponse.returnCode |
String | - | Response code |
getNetworkInterfaceListResponse.returnMessage |
String | - | Response message |
Response status codes
For information about the response status codes common to all Server APIs, see Server response status codes.
Response example
The response example is as follows:
{
"getNetworkInterfaceListResponse": {
"totalRows": 4,
"networkInterfaceList": [
{
"networkInterfaceNo": "70***6",
"networkInterfaceName": "nic-70***6",
"subnetNo": "3***4",
"deleteOnTermination": true,
"isDefault": true,
"deviceName": "eth0",
"networkInterfaceStatus": {
"code": "USED",
"codeName": "In use"
},
"instanceType": {
"code": "VSVR",
"codeName": "Server (VPC)"
},
"instanceNo": "10*****18",
"ip": "10.0.10.6",
"macAddress": "F2:**:**:**:**:AC",
"enableFlowLog": false,
"accessControlGroupNoList": [
"1***1"
],
"networkInterfaceDescription": "",
"secondaryIpList": []
},
{
"networkInterfaceNo": "70***5",
"networkInterfaceName": "nic-70***5",
"subnetNo": "3***4",
"deleteOnTermination": true,
"isDefault": true,
"deviceName": "eth0",
"networkInterfaceStatus": {
"code": "USED",
"codeName": "In use"
},
"instanceType": {
"code": "VSVR",
"codeName": "Server (VPC)"
},
"instanceNo": "10*****61",
"ip": "10.0.10.7",
"macAddress": "F2:**:**:**:**:1E",
"enableFlowLog": false,
"accessControlGroupNoList": [
"1***1"
],
"networkInterfaceDescription": "",
"secondaryIpList": []
}
],
"requestId": "85b22651-****-****-****-45a5ed2bc52b",
"returnCode": "0",
"returnMessage": "success"
}
}