attachNetworkInterface

Prev Next

Available in VPC

Assign a network interface to a server instance.

Request

This section describes the request format. The method and URI are as follows:

Method URI
GET | POST /vserver/v2/attachNetworkInterface
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
serverInstanceNo String Required Server instance number
networkInterfaceNo String Required Network interface number
subnetNo String Required Subnet number
responseFormatType String Optional Format of the response data
  • xml (default) | json

Request example

The request example is as follows:

curl --location --request GET 'https://ncloud.apigw.ntruss.com/vserver/v2/attachNetworkInterface
?regionCode=KR
&serverInstanceNo=10*****61
&networkInterfaceNo=70***0
&subnetNo=3***5
&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
attachNetworkInterfaceResponse Object - Response result
attachNetworkInterfaceResponse.requestId String - ID for the request
  • UUID format
attachNetworkInterfaceResponse.returnCode String - Response code
attachNetworkInterfaceResponse.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:

{
  "attachNetworkInterfaceResponse": {
    "totalRows": 1,
    "networkInterfaceList": [
      {
        "networkInterfaceNo": "70***0",
        "networkInterfaceName": "mynic",
        "subnetNo": "3***5",
        "deleteOnTermination": false,
        "isDefault": false,
        "deviceName": "eth1",
        "networkInterfaceStatus": {
          "code": "SET",
          "codeName": "Configuring"
        },
        "instanceType": {
          "code": "VSVR",
          "codeName": "Server (VPC)"
        },
        "instanceNo": "10*****61",
        "ip": "10.0.20.6",
        "macAddress": "F2:**:**:**:**:A3",
        "enableFlowLog": false,
        "accessControlGroupNoList": [],
        "networkInterfaceDescription": "",
        "secondaryIpList": []
      }
    ],
    "requestId": "cff6f287-****-****-****-742c290d0811",
    "returnCode": "0",
    "returnMessage": "success"
  }
}