0

我正在尝试通过 API 创建一些计划任务,但我不断收到 404 错误并显示以下消息:

"RESTEASY003210: Could not find resource for full path: https://localhost/v1/api/scheduledtasks"

这是我的 api 调用的样子:

curl -k -X GET https://localhost:443/api/scheduledtasks -H 'api-secret-key: redacted' -H 'api-version: v1'

我可以使用 api 列出其他配置,例如策略和系统设置,所以我认为这不是身份验证问题。

任何帮助将不胜感激!

4

1 回答 1

2

计划任务端点在趋势科技服务器深度安全防护系统 11.1 中不可用。您可以将管理器升级到版本 11.2.225 以使用该端点。(我在趋势科技担任 CSE)

这是使用版本 11.2.225 的示例 cURL 请求:

curl -X GET \
  https://localhost:80/api/scheduledtasks \
  -H 'api-secret-key: redacted' \
  -H 'api-version: v1' --insecure

回复:

{
  "scheduledTasks": [{
    "name": "Component Update Task",
    "type": "check-for-security-updates",
    "scheduleDetails": {
      "timeZone": "America/Bahia_Banderas",
      "recurrenceType": "daily",
      "dailyScheduleParameters": {
        "startTime": 1535477100000,
        "frequencyType": "everyday"
      }
    },
    "enabled": true,
    "lastRunTime": 1542651954042,
    "nextRunTime": 1542738300000,
    "checkForSecurityUpdatesTaskParameters": {
      "computerFilter": {
        "type": "all-computers"
      }
    },
    "ID": 1
  }]
}
于 2018-11-20T00:46:18.587 回答