action anchore_list_secret_search_results { label: "Return a list of analyzer artifacts of the specified type" provider: anchore method: GET path: "/images/{imageDigest}/artifacts/secret_search" encoding: json input: { type: "object" properties: { imageDigest: { type: "string" } } required: ["imageDigest"] additionalProperties: false } output: { type: "array" description: "Simple array of RetrievedFileMetadata objects" items: { type: "object" description: "The retrieved file entry including content (b64 encoded)" properties: { matches: { type: "array" items: { type: "object" description: "Match of a named regex on a file" properties: { lines: { type: "array" description: "A list of line numbers in the file that matched the regex" items: { type: "integer" } } name: { type: "string" description: "The name associated with the regular expression" } regex: { type: "string" description: "The regular expression used for the match" } } } } path: { type: "string" } } } } }