action dracoon_request_log_operations {
label: "Request allowed Log Operations"
description: "
🚀 Since v4.3.0
\n\n### Description: \nRetrieve eventlog (audit log) operation IDs and the associated log operation description.\n\n### Precondition:\nRole 👤 Log Auditor required.\n\n### Postcondition:\nList of available log operations is returned.\n\n### Further Information:\nNone."
provider: dracoon
method: GET
path: "/v4/eventlog/operations"
encoding: json
input: {
type: "object"
properties: {
"X-Sds-Auth-Token": {
type: "string"
}
is_deprecated: {
type: "boolean"
}
}
additionalProperties: false
}
output: {
type: "object"
description: "List of log operations"
required: ["operationList"]
properties: {
operationList: {
type: "array"
description: "List of all log operations"
items: {
type: "object"
description: "Log operation"
required: ["id", "isDeprecated", "name"]
properties: {
id: {
type: "integer"
format: "int32"
description: "Operation type ID"
}
isDeprecated: {
type: "boolean"
description: "Determines whether log operation is deprecated or not"
}
name: {
type: "string"
description: "Operation name"
}
}
}
}
}
}
}