2026-06-11 02:50:30 +00:00
|
|
|
// Proxmox integration module
|
|
|
|
|
// Provides management for Proxmox VE and Proxmox Backup Server clusters
|
|
|
|
|
|
2026-06-11 14:38:36 +00:00
|
|
|
pub mod acme;
|
|
|
|
|
pub mod apt;
|
|
|
|
|
pub mod auth_realm;
|
2026-06-11 02:50:30 +00:00
|
|
|
pub mod backup;
|
|
|
|
|
pub mod ceph;
|
2026-06-11 14:38:36 +00:00
|
|
|
pub mod ceph_cluster;
|
|
|
|
|
pub mod certificates;
|
2026-06-11 02:50:30 +00:00
|
|
|
pub mod client;
|
|
|
|
|
pub mod cluster;
|
|
|
|
|
pub mod firewall;
|
|
|
|
|
pub mod ha;
|
|
|
|
|
pub mod metrics;
|
2026-06-11 14:38:36 +00:00
|
|
|
pub mod migration;
|
2026-06-22 01:04:28 +00:00
|
|
|
pub mod network;
|
2026-06-11 02:50:30 +00:00
|
|
|
pub mod node;
|
|
|
|
|
pub mod sdn;
|
2026-06-11 14:38:36 +00:00
|
|
|
pub mod shell;
|
2026-06-11 02:50:30 +00:00
|
|
|
pub mod storage;
|
2026-06-11 14:38:36 +00:00
|
|
|
pub mod tasks;
|
2026-06-11 02:50:30 +00:00
|
|
|
pub mod updates;
|
2026-06-11 14:38:36 +00:00
|
|
|
pub mod updates_ext;
|
|
|
|
|
pub mod views;
|
2026-06-11 02:50:30 +00:00
|
|
|
pub mod vm;
|
|
|
|
|
|
|
|
|
|
pub use client::ProxmoxClient;
|
|
|
|
|
pub use cluster::{ClusterInfo, ClusterRegistry, ClusterType};
|