action rudder_get_all_secrets { label: "List all secrets" description: "Get the list of all secrets without their value" provider: rudder method: GET path: "/secret/" encoding: json output: { type: "object" required: ["action", "data", "result"] properties: { action: { type: "string" description: "The id of the action" enum: ["getAllSecrets"] } data: { type: "object" required: ["secrets"] properties: { secrets: { type: "array" description: "List of API version and status" items: { type: "object" required: ["name", "description"] properties: { description: { type: "string" description: "The description of the secret to identify it more easily" } name: { type: "string" description: "The name of the secret used as a reference on the value" } } } } } } result: { type: "string" description: "Result of the request" enum: ["success", "error"] } } } }