action rudder_update_cvecheck_configuration { label: "Update cve check config" description: "Update cve check config" provider: rudder method: POST path: "/cve/check/config" encoding: json input: { type: "object" description: "CVE check config" properties: { apiKey: { type: "string" description: "Token used by to contact the API to check CVE" } url: { type: "string" description: "Url used to check CVE" } } } output: { type: "object" required: ["action", "data", "result"] properties: { action: { type: "string" description: "The id of the action" enum: ["updateCVECheckConfiguration"] } data: { type: "object" properties: { apiKey: { type: "string" description: "Token used by to contact the API to check CVE" } url: { type: "string" description: "Url used to check CVE" } } } result: { type: "string" description: "Result of the request" enum: ["success", "error"] } } } }