Corsinvest.ProxmoxVE.Api.Metadata 9.1.1

dotnet add package Corsinvest.ProxmoxVE.Api.Metadata --version 9.1.1
                    
NuGet\Install-Package Corsinvest.ProxmoxVE.Api.Metadata -Version 9.1.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Corsinvest.ProxmoxVE.Api.Metadata" Version="9.1.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Corsinvest.ProxmoxVE.Api.Metadata" Version="9.1.1" />
                    
Directory.Packages.props
<PackageReference Include="Corsinvest.ProxmoxVE.Api.Metadata" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Corsinvest.ProxmoxVE.Api.Metadata --version 9.1.1
                    
#r "nuget: Corsinvest.ProxmoxVE.Api.Metadata, 9.1.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Corsinvest.ProxmoxVE.Api.Metadata@9.1.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Corsinvest.ProxmoxVE.Api.Metadata&version=9.1.1
                    
Install as a Cake Addin
#tool nuget:?package=Corsinvest.ProxmoxVE.Api.Metadata&version=9.1.1
                    
Install as a Cake Tool

<div align="center">

Corsinvest.ProxmoxVE.Api

   ______                _                      __
  / ____/___  __________(_)___ _   _____  _____/ /_
 / /   / __ \/ ___/ ___/ / __ \ | / / _ \/ ___/ __/
/ /___/ /_/ / /  (__  ) / / / / |/ /  __(__  ) /_
\____/\____/_/  /____/_/_/ /_/|___/\___/____/\__/

Proxmox VE API Client for .NET (Made in Italy)

License .NET

</div>


Quick Start

# Install the main API package
dotnet add package Corsinvest.ProxmoxVE.Api

# Install extension package for additional functionality
dotnet add package Corsinvest.ProxmoxVE.Api.Extension
using Corsinvest.ProxmoxVE.Api;

var client = new PveClient("your-proxmox-host.com");
if (await client.Login("root", "your-password"))
{
    // Get cluster status
    var status = await client.Cluster.Status.Status();
    Console.WriteLine($"Cluster: {status.Response.data[0].name}");

    // Manage VMs
    var vm = await client.Nodes["pve1"].Qemu[100].Config.VmConfig();
    Console.WriteLine($"VM: {vm.Response.data.name}");
}

Package Suite

Corsinvest.ProxmoxVE.Api

NuGet Downloads

Core .NET client library for Proxmox VE API. Foundation package with complete API coverage.

Corsinvest.ProxmoxVE.Api.Extension

NuGet Downloads

Extension methods and helper utilities for common operations and task management.

Corsinvest.ProxmoxVE.Api.Shared

NuGet Downloads

Shared models, utilities, and common types used across the package suite.

Corsinvest.ProxmoxVE.Api.Console

NuGet Downloads

Console application helpers for building CLI tools with Proxmox VE.

Corsinvest.ProxmoxVE.Api.Metadata

NuGet Downloads

API metadata extraction and documentation generation tools.


Key Features

Developer Experience

  • Async/Await throughout the library
  • Strongly typed models and responses
  • IntelliSense support in all IDEs
  • Auto-generated from official API docs
  • Tree structure matching Proxmox VE API

Core Functionality

  • Full API coverage for Proxmox VE
  • VM/CT management (create, configure, snapshot)
  • Cluster operations (status, resources, HA)
  • Storage management (local, shared, backup)
  • Network configuration (bridges, VLANs, SDN)

Enterprise Ready

  • API token authentication (Proxmox VE 6.2+)
  • Two-factor authentication support
  • SSL certificate validation
  • Configurable timeouts and retry logic
  • Microsoft.Extensions.Logging integration

Advanced Features

  • Extension methods for common operations
  • Task management utilities
  • Bulk operations with pattern matching
  • Response type switching (JSON, PNG)
  • Console application helpers

Documentation

Getting Started

API Reference


Examples

VM Management

// Create and configure a VM
var client = new PveClient("pve.example.com");
await client.Login("admin@pve", "password");

var result = await client.Nodes["pve1"].Qemu.CreateVm(
    vmid: 100,
    name: "web-server",
    memory: 4096,
    cores: 2
);

if (result.IsSuccessStatusCode)
{
    Console.WriteLine("VM created successfully!");
}

Cluster Monitoring

using Corsinvest.ProxmoxVE.Api.Extension;

// Get cluster overview with extension methods
var nodes = await client.GetNodesAsync();
foreach (var node in nodes)
{
    Console.WriteLine($"Node {node.Node}: CPU {node.CpuUsage:P2}, Memory {node.MemoryUsage:P2}");
}

VM Discovery

// Find VMs using patterns (like cv4pve-autosnap)
var productionVms = await client.GetVmsAsync("@tag-production");
var webVms = await client.GetVmsAsync("web%");
var allExceptTest = await client.GetVmsAsync("@all,-@tag-test");

Support

Professional support and consulting available through Corsinvest.


<div align="center"> <sub>Part of <a href="https://www.corsinvest.it/cv4pve">cv4pve</a> suite | Made with ❤️ in Italy by <a href="https://www.corsinvest.it">Corsinvest</a></sub> <br> <sub>Copyright © Corsinvest Srl</sub> </div>

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Corsinvest.ProxmoxVE.Api.Metadata:

Package Downloads
Corsinvest.ProxmoxVE.Api.Extension

Corsinvest for Proxmox VE Api Client Extension

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
9.1.1 0 12/12/2025
9.1.0 307 12/4/2025
9.0.0 249 10/24/2025
8.4.1 2,063 7/7/2025
8.4.0 611 4/9/2025
8.3.3 476 3/21/2025
8.3.2 322 1/29/2025
8.3.1 331 1/3/2025
8.3.0 391 12/19/2024
8.2.5 1,041 9/19/2024
8.2.4 1,383 8/13/2024
8.2.3 486 7/15/2024
8.2.2 9,668 6/14/2024
8.2.1 2,563 5/8/2024
8.2.0 530 4/26/2024
8.1.7 374 4/19/2024
8.1.6 525 4/2/2024
8.1.5 358 3/28/2024
8.1.4 317 3/22/2024
8.1.3 6,327 2/29/2024
8.1.2 301 2/13/2024
8.1.1 261 2/12/2024
8.1.0 6,946 12/11/2023
8.0.3 1,151 9/22/2023
8.0.2 675 9/18/2023
8.0.1 449 8/11/2023
8.0.0 516 6/23/2023
7.4.6 2,022 6/16/2023
7.4.5 427 6/8/2023
7.4.4 1,225 5/29/2023
7.4.3 551 5/10/2023
7.4.2 411 5/5/2023
7.4.1 799 4/14/2023
7.4.0 431 3/23/2023
3.1.0 2,269 9/7/2022
3.0.2 598 6/21/2022
3.0.1 7,454 4/5/2022
3.0.0 1,396 1/31/2022
2.9.0 2,116 12/16/2021
2.8.0 5,276 4/28/2021
2.5.0 16,764 6/20/2020
2.3.0 4,928 4/16/2020
1.2.0 698 4/15/2020
1.1.0 4,460 10/22/2019
1.0.1 962 10/9/2019
1.0.0 1,285 8/26/2019