action anchore_invalidate_operation { label: "Invalidate operation ID so it can be garbage collected" provider: anchore method: DELETE path: "/imports/images/{operation_id}" encoding: json input: { type: "object" properties: { operation_id: { type: "string" } } required: ["operation_id"] additionalProperties: false } output: { type: "object" description: "An import record, creating a unique identifier for referencing the operation as well as its state" properties: { created_at: { type: "string" format: "date-time" } expires_at: { type: "string" format: "date-time" } status: { type: "string" enum: ["pending", "queued", "processing", "complete", "failed", "expired"] } uuid: { type: "string" } } } }