action anchore_list_archives { label: "list_archives" provider: anchore method: GET path: "/archives" encoding: json output: { type: "object" description: "A summarization of the available archives, a place to for long-term storage of audit, analysis, or other data to remove it from the system's working set but keep it available." properties: { images: { type: "object" description: "A summarization of the analysis archive, including size, counts, etc. This archive stores image analysis only, never the actual image content or layers." properties: { last_updated: { type: "string" format: "date-time" description: "The timestamp of the most recent archived image" } total_data_bytes: { type: "integer" description: "The total sum of all the bytes stored to the backing storage. Accounts for anchore-applied compression, but not compression by the underlying storage system." } total_image_count: { type: "integer" description: "The number of unique images (digests) in the archive" } total_tag_count: { type: "integer" description: "The number of tag records (registry/repo:tag pull strings) in the archive. This may include repeated tags but will always have a unique tag->digest mapping per record." } } } rules: { type: "object" description: "Summary of the transition rule set" properties: { count: { type: "integer" description: "The number of rules for this account" } last_updated: { type: "string" format: "date-time" description: "The newest last_updated timestamp from the set of rules" } } } } } }