Available in VPC
Get the list of Data Box Frame infrastructures.
Request
This section describes the request format. The method and URI are as follows:
Method | URI |
---|---|
GET | /api/v1/data-box-frame/get-data-box-frame-infra-list |
Request headers
For information about the headers common to all Data Box Frame APIs, see Data Box Frame request headers.
Request query parameters
You can use the following query parameters with your request:
Field | Type | Required | Description |
---|---|---|---|
dataBoxFrameNo |
Integer | Required | Data Box Frame number |
pageNo |
Integer | Optional | Page number
|
pageSize |
Integer | Optional | Page output count
|
Request example
The request example is as follows:
curl --location --request GET 'https://databoxframe.apigw.ntruss.com/api/v1/data-box-frame/get-data-box-frame-infra-list?dataBoxFrameNo=83' \
--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 |
---|---|---|---|
totalCount |
Integer | - | Number of response results |
content |
Array | - | Data Box Frame list |
usePseudonymInfo |
String | - | Whether to strengthen infrastructure management permissions
|
content
The following describes content
.
Field | Type | Required | Description |
---|---|---|---|
infraType |
String | - | Infrastructure type
|
instanceName |
String | - | Infrastructure name |
privateIp |
String | - | Infrastructure private IP
|
publicIp |
String | - | Infrastructure public IP
|
osName |
String | - | Server operating system name
|
specName |
String | - | Server or NAS specification name
|
userName |
String | - | Server access account name
|
prodSpecId |
String | - | Server spec code
|
connectInfo |
String | - | Access information
|
useData |
String | - | Used data (GB)
|
createDate |
String | - | Data Box Frame creation date and time
|
statusCode |
String | - | Data Box Frame status code
|
statusName |
String | - | Data Box Frame status name
|
instanceNo |
String | - | Infrastructure number |
contractInstanceNo |
String | - | Infrastructure instance number |
nasVolumeSize |
String | - | NAS volume size (GB)
|
Response status codes
For information about the response status codes common to all Data Box Frame APIs, see Data Box Frame API response status codes.
Response example
The response example is as follows:
{
"totalCount": 2,
"content": [
{
"infraType": "Server",
"instanceName": "admin-83-1",
"privateIp": "***.***.***.***",
"publicIp": "***.***.***.***",
"osName": "Ubuntu",
"specName": "CPU Linux Server (S2 L1 : 2vCPU 8GB Mem)",
"prodSpecId": 2001,
"userName": "root",
"connectInfo": "root",
"createDate": "2025-03-25 11:20:10",
"statusCode": "USE",
"statusName": "Using",
"instanceNo": "*********",
"contractInstanceNo": "-",
"instanceStatusCode": "RUN"
},
{
"infraType": "NAS",
"instanceName": "pub83n1",
"specName": "500",
"userName": "root",
"connectInfo": "/mnt/nasr/pub83n1",
"useData": "0",
"createDate": "2025-03-25 11:20:10",
"statusCode": "USE",
"statusName": "Using",
"instanceNo": "********",
"contractInstanceNo": "-",
"nasVolumeSize": "500"
}
],
"usePseudonymInfo": "N"
}