action anchore_delete_registry { label: "Delete a registry configuration" description: "Delete a registry configuration record from the system. Does not remove any images." provider: anchore method: DELETE path: "/registries/{registry}" encoding: json input: { type: "object" properties: { registry: { type: "string" format: "path" } "x-anchore-account": { type: "string" } } required: ["registry"] additionalProperties: false } output: { type: "object" additionalProperties: true } }