Corsinvest.ProxmoxVE.Api.Metadata 2.9.0

Corsinvest.ProxmoxVE.Api

License Nuget Nuget Nuget Nuget

Proxmox VE Client API .Net

Proxmox VE Api

Nuget Api

Nuget Extension

Nuget Metadata

Nuget Shell

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

Corsinvest for Proxmox VE Api Client  (Made in Italy)

Copyright: Corsinvest Srl For licensing details please visit LICENSE.md

Commercial Support

This software is part of a suite of tools called cv4pve-tools. If you want commercial support, visit the site

General

The client is generated from a JSON Api on Proxmox VE.

Main features

  • Easy to learn
  • Method named
  • Method native suffix Rest (prevent)
    • GetRest
    • CreateRest (Post)
    • SetRest (Put)
    • DeleteRest
  • Set ResponseType json, png
  • Full class and method generated from documentation (about client)
  • Comment any method and parameters
  • Parameters indexed eg [n] is structured in array index and value
  • Tree structure
    • client.Nodes["pve1"].Qemu[100].Snapshot().snapshotList().Response.data
  • Return data Proxmox VE
  • Debug Level show to console information REST call
  • Return result
    • Request
    • Response
    • Status
  • Last result action
  • Task utility
    • WaitForTaskToFinish
    • TaskIsRunning
    • GetExitStatusTask
  • Method direct access
    • Get
    • Create (Post)
    • Set (Put)
    • Delete
  • Login return bool if access
  • Return Result class more information
  • ClientBase lite function
  • Form Proxmox VE 6.2 support Api Token for user

Api token

From version 6.2 of Proxmox VE is possible to use Api token. This feature permit execute Api without using user and password. If using Privilege Separation when create api token remember specify in permission. Format USER@REALM!TOKENID=UUID

Result

The result is class Result and contain properties:

  • Response returned from Proxmox VE (data,errors,...) dynamic ExpandoObject
  • ResponseToDictionary return response to dictionary IDictionary<String, object>
  • ResponseInError (bool) : Contains errors from Proxmox VE.
  • StatusCode (System.Net.HttpStatusCode): Status code of the HTTP response.
  • ReasonPhrase (string): The reason phrase which typically is sent by servers together with the status code.
  • IsSuccessStatusCode (bool) : Gets a value that indicates if the HTTP response was successful.
  • GetError() (string) : Get error.

Example result:

{
  "data": {
    "smbios1": "uuid=9246585e-0c8b-4d02-8fe2-f48fd0da3975",
    "ide2": "none,media=cdrom",
    "onboot": 1,
    "boot": "cdn",
    "cores": 2,
    "agent": 1,
    "memory": 4096,
    "numa": 0,
    "bootdisk": "virtio0",
    "sockets": 1,
    "net0": "virtio=3A:39:38:30:36:31,bridge=vmbr0",
    "parent": "auto4hours170904080002",
    "digest": "acafde32daab50bce801fef2e029440c54ebe2f7",
    "vga": "qxl",
    "virtio0": "local-zfs:vm-100-disk-1,cache=writeback,size=50G",
    "ostype": "win8",
    "name": "phenometa"
  }
}

Usage

//if you want use lite version only get/set/create/delete use PveClientBase

var client = new PveClient("10.92.90.91");
if (client.Login("root", "password"))
{
    var vm = client.Nodes["pve1"].Qemu[100];

    //config vm
    var config = vm.Config.VmConfig();
    Console.WriteLine(JsonConvert.SerializeObject(config.Response,Formatting.Indented));

    //create snapshot
    var response = vm.Snapshot.Snapshot("pippo2311");

    //update snapshot description
    vm.Snapshot["pippo2311"].Config.UpdateSnapshotConfig("description");

    //delete snapshot
    vm.Snapshot["pippo2311"].Delsnapshot();

    //list of snapshot
    foreach (var snapshot in vm.Snapshot.SnapshotList().Response.data)
    {
        Console.WriteLine(JsonConvert.SerializeObject(snapshot,Formatting.Indented));
        Console.WriteLine(snapshot.name);
    }

    //change response type from json to png
    client.ResponseType = "png";
    var dataImg = client.Nodes["pve1"].Rrd.Rrd("cpu", "day").Response;
    Console.WriteLine("<img src=\"{dataImg}\" \>");
}

//using Api Token
var client = new PveClient("10.92.100.33");
client.ApiToken = "root@pam!qqqqqq=8a8c1cd4-d373-43f1-b366-05ce4cb8061f";
var version = client.Version.Version();
Console.WriteLine(JsonConvert.SerializeObject(version.Response.data, Formatting.Indented));

No packages depend on Corsinvest.ProxmoxVE.Api.Metadata.

Change licensing

.NET Standard 2.0

Version Downloads Last updated
9.2.1 5 08/13/2026
9.2.0 1 08/21/2026
9.1.18 3 08/21/2026
9.1.17 2 08/21/2026
9.1.16 1 08/21/2026
9.1.15 2 08/21/2026
9.1.14 2 08/21/2026
9.1.13 2 08/21/2026
9.1.12 2 08/21/2026
9.1.11 1 08/21/2026
9.1.10 2 08/21/2026
9.1.9 2 08/21/2026
9.1.8 1 08/21/2026
9.1.7 2 08/21/2026
9.1.6 3 08/21/2026
9.1.5 2 08/21/2026
9.1.4 2 08/21/2026
9.1.3 2 08/21/2026
9.1.2 2 08/21/2026
9.1.1 2 08/21/2026
9.1.0 2 08/21/2026
9.0.0 1 08/21/2026
8.4.1 2 08/21/2026
8.4.0 2 08/21/2026
8.3.3 2 08/21/2026
8.3.2 1 08/21/2026
8.3.1 3 08/21/2026
8.3.0 2 08/21/2026
8.2.5 1 08/21/2026
8.2.4 2 08/21/2026
8.2.3 2 08/21/2026
8.2.2 2 08/21/2026
8.2.1 1 08/21/2026
8.2.0 2 08/21/2026
8.1.7 2 08/21/2026
8.1.6 2 08/21/2026
8.1.5 2 08/21/2026
8.1.4 2 08/21/2026
8.1.3 2 08/21/2026
8.1.2 2 08/21/2026
8.1.1 2 08/21/2026
8.1.0 2 08/21/2026
8.0.3 2 08/21/2026
8.0.2 2 08/21/2026
8.0.1 2 08/21/2026
8.0.0 2 08/21/2026
7.4.6 2 08/21/2026
7.4.5 2 08/21/2026
7.4.4 3 08/21/2026
7.4.3 2 08/21/2026
7.4.2 2 08/21/2026
7.4.1 2 08/21/2026
7.4.0 2 08/21/2026
3.1.0 2 08/21/2026
3.0.2 2 08/21/2026
3.0.1 3 08/21/2026
3.0.0 3 08/21/2026
2.9.0 1 08/21/2026
2.8.0 2 08/21/2026
2.5.0 1 08/21/2026
2.3.0 2 08/21/2026
1.2.0 2 08/21/2026
1.1.0 2 08/21/2026
1.0.1 2 08/21/2026
1.0.0 2 08/21/2026