action rudder_delete_secret { label: "Delete a secret" description: "Remove the secret by his unique name" provider: rudder method: DELETE path: "/secret/{name}" encoding: json output: { type: "object" required: ["action", "data", "result"] properties: { action: { type: "string" description: "The id of the action" enum: ["deleteSecret"] } 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"] } } } }