action influxdata_get_tasks_idruns_idlogs { label: "Retrieve all logs for a run" provider: influxdata method: GET path: "/tasks/{taskID}/runs/{runID}/logs" encoding: json input: { type: "object" properties: { runID: { type: "string" } taskID: { type: "string" } } required: ["runID", "taskID"] additionalProperties: false } output: { type: "object" properties: { events: { type: "array" items: { type: "object" properties: { message: { type: "string" description: "A description of the event that occurred." } runID: { type: "string" description: "the ID of the task that logged" } time: { type: "string" format: "date-time" description: "Time event occurred, RFC3339Nano." } } } } } } }