Proxmox
Open-source virtualization/backup/mail-security vendor. getIsoDownloads is live — the current ISO installer(s) for any or all of Proxmox VE, Proxmox…
Open-source virtualization/backup/mail-security vendor. getIsoDownloads is live — the current ISO installer(s) for any or all of Proxmox VE, Proxmox Backup Server, Proxmox Mail Gateway and Proxmox Datacenter Manager, straight off proxmox.com's own downloads pages: version, file size, last-updated date, SHA256 checksum, and the real enterprise.proxmox.com download/torrent URLs.
Domain: proxmox.com
Also known as: Proxmox, Proxmox VE, Proxmox Virtual Environment, Proxmox Datacenter Manager, Proxmox Backup Server, Proxmox Mail Gateway, PVE, PDM, proxmox.com
Call it directly
bowmark.providers.proxmox.getIsoDownloads(product?: "proxmox-virtual-environment" | "proxmox-backup-server" | "proxmox-mail-gateway" | "proxmox-datacenter-manager"): Promise<ProxmoxIsoDownload[]>Functions
| Function | What it does |
|---|---|
getIsoDownloads | Gets the current ISO installer download(s) for one Proxmox product, or for all four when product is omitted. |
Types
type ProxmoxProductSlug =
| "proxmox-virtual-environment"
| "proxmox-backup-server"
| "proxmox-mail-gateway"
| "proxmox-datacenter-manager";
interface ProxmoxIsoDownload {
product: ProxmoxProductSlug;
productName: string;
title: string;
version: string;
fileSizeText: string;
lastUpdated: string;
sha256: string | null;
downloadUrl: string;
torrentUrl: string | null;
pageUrl: string;
}