Available in VPC
Get the datafence infrastructure history.
Request
This section describes the request format. The method and URI are as follows:
Method | URI |
---|---|
GET | /api/v1/fence/get-datafence-infra-history |
Request headers
For information about the headers common to all Datafence APIs, see Datafence request headers.
Request query parameters
You can use the following query parameters with your request:
Field | Type | Required | Description |
---|---|---|---|
fenceId |
Integer | Required | Datafence number
|
page |
Integer | Optional | Page number
|
size |
Integer | Optional | Number of items per page
|
Request example
The request example is as follows:
curl --location --request GET 'https://datafence.apigw.ntruss.com/api/v1/fence/get-datafence-infra-history?fenceId=26&page=1&size=10' \
--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 | - | Datafence history |
content
The following describes content
.
Field | Type | Required | Description |
---|---|---|---|
infraType |
String | - | Infrastructure type
|
instanceNo |
Integer | - | Infrastructure instance number |
instanceName |
String | - | Infrastructure instance name |
createDate |
String | - | Datafence creation date and time
|
endDate |
String | - | Datafence termination date and time
|
statusCode |
String | - | Datafence status code
|
statusName |
String | - | Datafence status name
|
Response status codes
For information about the HTTP status codes common to all Datafence APIs, see Datafence API response status codes.
Response example
The response example is as follows:
{
"totalCount": 5,
"content": [
{
"infraType": "Server",
"instanceNo": "-",
"instanceName": "fence-XX-Y",
"createDate": "2025-01-09T13:51:10+09:00",
"endDate": "2025-03-25T15:40:40+09:00",
"statusCode": "TERMINATE",
"statusName": "Termination completed"
},
{
"infraType": "Server",
"instanceNo": "-",
"instanceName": "fence-XX-Y",
"createDate": "2025-02-28T14:18:29+09:00",
"endDate": "2025-03-24T16:03:10+09:00",
"statusCode": "TERMINATE",
"statusName": "Termination completed"
}
]
}