View snapshot creation history
- Print
- PDF
View snapshot creation history
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Available in VPC
Description
View snapshot creation history.
Request
Request URL
POST https://vpcsearchengine.apigw.ntruss.com/api/v2/snapshot/getSnapshotHistory/{service-group-instance-no} [KR]
POST https://vpcsearchengine.apigw.ntruss.com/api/sgn-v2/snapshot/getSnapshotHistory/{service-group-instance-no} [SGN]
Request header
Header name | Description |
---|---|
x-ncp-apigw-timestamp | This is the number of milliseconds that have elapsed since January 1, 1970 00:00:00 UTC. If the time difference compared to the API Gateway server is more than 5 minutes, then the request is considered invalid. x-ncp-apigw-timestamp:{Timestamp} |
x-ncp-iam-access-key | Access Key ID value issued on the NAVER Cloud Platform portalx-ncp-iam-access-key:{Account Access Key} |
x-ncp-apigw-signature-v2 | Signature encrypted with the Access Key ID value and Secret Keyx-ncp-apigw-signature-v2:{API Gateway Signature} |
Content-Type | Specifies the request body content type as application/jsonContent-Type: application/json |
Request parameters
Parameter | Type | Requirement status | Description |
---|---|---|---|
pageNo | Integer | N | This is the page number. Default : 1 ex) 1, 2 |
pageSize | Integer | N | This is the page size.Defatlt : 10 ex) 10, 20 |
Request example
POST https://vpcsearchengine.apigw.ntruss.com/api/v2/snapshot/getSnapshotHistory/1531843
HOST: vpcsearchengine.apigw.ntruss.com
Content-Type: application/json
x-ncp-apigw-signature-v2: zq0FrtlU8JZJi9esTK31bCQUNG3H+jo4CMjMkJDoWSc=
x-ncp-apigw-timestamp: 1593848345548
x-ncp-iam-access-key: 7fIvgFY428mtY6sY8maw
{
}
curl -X POST "https://vpcsearchengine.apigw.ntruss.com/api/v2/snapshot/getSnapshotHistory/1531843 \
-H "accept: application/json" \
-H "Content-Type: application/json" \
-H "x-ncp-iam-access-key: 7fIvgFY428mtY6sY8maw" \
-H "x-ncp-apigw-timestamp: 1601971222179" \
-H "x-ncp-apigw-signature-v2: zrCelnR48AADdK/uh6Xe3yy468i8KpQoewYHUmeqYh4=" \
-d \
'{
}'
Response parameters
public class SnapshotHistoryListResponseVo extends PagerResponseVo{
List<SnapshotHistoryResponseVo> snapshotHistoryResponseList;
}
public class SnapshotHistoryResponseVo {
Integer idx;
String clusterName;
String snapshotName;
String memberNo;
Integer serviceGroupInstanceNo;
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Seoul")
Date actionDate;
String duration;
String requestType;
String message;
String bucketName;
boolean hasErrorLog;
}
public class PagerResponseVo {
Integer currentPage;
Boolean isFirst;
Boolean isLast;
Integer pageSize;
Long totalCount;
Integer totalPage;
}
Response example
{
"code": 0,
"message": "SUCCESS",
"result": {
"currentPage": 1,
"isFirst": true,
"isLast": true,
"pageSize": 10,
"totalCount": 4,
"totalPage": 1,
"snapshotHistoryResponseList": [
{
"idx": 40,
"clusterName": "common",
"snapshotName": "commonsnapshot2",
"memberNo": "703",
"serviceGroupInstanceNo": 1728943,
"actionDate": "2021-06-16 17:51:05",
"duration": "600ms",
"requestType": "C",
"message": "commonsnapshot2 snapshot creation complete",
"bucketName": "common-1473858190",
"hasErrorLog": false
},
{
"idx": 39,
"clusterName": "common",
"snapshotName": "commonsnapshot2",
"memberNo": "703",
"serviceGroupInstanceNo": 1728943,
"actionDate": "2021-06-16 17:51:04",
"duration": null,
"requestType": "R",
"message": "commonsnapshot2 snapshot creation started",
"bucketName": "common-1473858190",
"hasErrorLog": false
},
{
"idx": 38,
"clusterName": "common",
"snapshotName": "commonsnapshot",
"memberNo": "703",
"serviceGroupInstanceNo": 1728943,
"actionDate": "2021-06-16 17:50:07",
"duration": "1.2s",
"requestType": "C",
"message": "commonsnapshot snapshot creation complete",
"bucketName": "common-1473858190",
"hasErrorLog": false
},
{
"idx": 37,
"clusterName": "common",
"snapshotName": "commonsnapshot",
"memberNo": "703",
"serviceGroupInstanceNo": 1728943,
"actionDate": "2021-06-16 17:50:05",
"duration": null,
"requestType": "R",
"message": "commonsnapshot snapshot creation started",
"bucketName": "common-1473858190",
"hasErrorLog": false
}
]
},
"requestId": "93fd2a5a-7a0-4ea3-a040-a69204947048"
}
Was this article helpful?