action conjur_info { label: "Basic information about the Conjur Enterprise server" description: "Information about the Conjur Enterprise node which was queried against.\n\nIncludes authenticator info, release/version info, configuration details,\ninternal services, and role information.\n" provider: conjur method: GET path: "/info" encoding: json output: { type: "object" properties: { authenticators: { type: "object" properties: { configured: { type: "array" items: { type: "string" } } enabled: { type: "array" items: { type: "string" } } installed: { type: "array" items: { type: "string" } } } } configuration: { type: "object" } container: { type: "string" } release: { type: "string" } role: { type: "string" } services: { type: "object" } version: { type: "string" } } } }