タグペイロードファイル

システムにより資産タグが追加、編集、または削除されると、Tenable データストリームはペイロードファイルを AWS バケットに送信します。このファイルでは、更新は updates 配列に表示され、削除はタイムスタンプ付きで deletes 配列に表示されます。

注意: Tenable API との互換性を維持するために、Tenable データストリームは空のタグオブジェクトを持つ資産ペイロードファイルも送信します。

次の例は、タグペイロードファイルの形式を示しています。このファイルのプロパティの定義については、タグプロパティを参照してください。

コピー
{
  "payload_id": "tags-1727096866393-5",
  "version": 1,
  "type": "TAGS",
  "count_updated": 1,
  "count_deleted": 0,
  "updates": [
    {
      "target": {
        "asset_uuid": "03215919-88c1-4ed9-a59e-7d530940c7f4"
      },
      "tags": [
        {
          "type": "DYNAMIC",
          "category_uuid": "bef73bb5-c35c-4a70-a1fd-3bfcf8b034bb",
          "value_uuid": "5317410c-87b0-4a96-8cca-fc2d3e56c94b",
          "category_name": "Asset Type",
          "tag_name": "sample",
          "created_by": null,
          "created_at": 1727096866286,
          "updated_by": null,
          "updated_at": 1727096866286,
          "description": null,
          "category_description": null,
          "product": "IO"
        }
      ]
    }
  ],
  "deletes": [],
  "first_ts": "1727096866345",
  "last_ts": "1727096866345"
}