getScannerHistories
- 印刷する
- PDF
getScannerHistories
- 印刷する
- PDF
記事の要約
この要約は役に立ちましたか?
ご意見ありがとうございます
VPC環境で利用できます。
ユーザー catalogの特定の scannerの実行履歴を確認します。
リクエスト
リクエスト URL
GET {DATA_CATALOG API_URL}/catalogs/{catalog-id}/scanners/{scanner-id}/histories
リクエストパラメータ
パラメータ名 | 要否 | タイプ | 制約事項 | 説明 |
---|---|---|---|---|
catalogId | Yes | String | catalogの固有 id (ref: getCatalogs) | |
scannerId | Yes | String | scannerの固有 id | |
fromTimestamp | Yes | Long | 履歴を確認する開始時間(milliseconds timestamp) | |
toTimestamp | Yes | Long | 履歴を確認する終了時間(milliseconds timestamp) | |
pageNo | No | int | ページ番号デフォルト値: 1 | |
pageSize | No | int | 最大値: 200 | 結果リストサイズのデフォルト値: 20 |
リクエストヘッダ
リクエスト例
curl -X GET "https://datacatalog.apigw.ntruss.com/api/v1/catalogs/{catalog-id}/scanners/{scanner-id}/histories?fromTimestamp=1673794800000&toTimestamp=1686841200000" \
-H "x-ncp-apigw-timestamp: {x-ncp-apigw-timestamp}" \
-H "x-ncp-iam-access-key: {x-ncp-iam-access-key}" \
-H "x-ncp-apigw-signature-v2: {x-ncp-apigw-signature-v2}"
- fromTimestamp: 1673794800000(2023年1月16日午前12:00:00)
- GMT: 2023年1月15日午後3:00:00
- toTimestamp: 1686841200000(2023年6月16日午前12:00:00)
- GMT: 2023年6月15日午後3:00:00
レスポンス
レスポンスボディ
- scannerHistoryListResponseList: scannerの実行履歴リスト
項目 | タイプ | 説明 |
---|---|---|
scannerId | int | scannerの固有 id |
catalogId | int | ユーザー catalogの固有 id |
beginTime | Date | scannerの実行開始時刻 |
endTime | Date | scannerの実行終了時刻 |
result | String | scannerの実行結果に対する成功/失敗 |
resultMessage | String | scannerの実行結果に対するメッセージ |
tableChanges | String | scannerの実行結果によって追加/変更されたテーブル、追加/変更されたパーティション情報 |
elapsedTime | int | scannerの実行にかかった時間 |
createTime | Date | scannerの作成時間 |
レスポンス例
HTTP
HTTP Status | Description |
---|---|
200 | OK |
JSON
{
"pageNo": 1,
"pageSize": 1,
"totalCount": 1,
"scannerHistoryListResponseList": [
{
"scannerId": 89,
"catalogId": 301,
"beginTime": "2023-05-25T10:38:49+0900",
"endTime": "2023-05-25T10:38:56+0900",
"result": "SUCCESS",
"resultMessage": "",
"tableChanges": "{\"table_added\": {\"count\": 0, \"list\": []}, \"table_updated\": {\"count\": 0, \"list\": []}, \"table_failed\": {\"count\": 0, \"list\": []}, \"partition_added\": {\"count\": 0, \"list\": []}, \"partition_updated\": {\"count\": 0, \"list\": []}, \"partition_failed\": {\"count\": 0, \"list\": []}}",
"elapsedTime": 5,
"createTime": "2023-05-25T10:38:56+0900"
}
]
}
この記事は役に立ちましたか?