Corsinvest.ProxmoxVE.Api.Shell 1.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Corsinvest.ProxmoxVE.Api.Shell --version 1.0.1
NuGet\Install-Package Corsinvest.ProxmoxVE.Api.Shell -Version 1.0.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.Shell" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Corsinvest.ProxmoxVE.Api.Shell --version 1.0.1
#r "nuget: Corsinvest.ProxmoxVE.Api.Shell, 1.0.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.
// Install Corsinvest.ProxmoxVE.Api.Shell as a Cake Addin
#addin nuget:?package=Corsinvest.ProxmoxVE.Api.Shell&version=1.0.1

// Install Corsinvest.ProxmoxVE.Api.Shell as a Cake Tool
#tool nuget:?package=Corsinvest.ProxmoxVE.Api.Shell&version=1.0.1

Corsinvest.ProxmoxVE.Api

License Nuget Nuget Nuget Nuget AppVeyor branch

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

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(Client.ObjectToJson(config.Response));

    //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(Client.ObjectToJson(snapshot));
        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}\" \>");
}
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 was computed.  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. 
.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

This package is not used by any NuGet packages.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Corsinvest.ProxmoxVE.Api.Shell:

Repository Stars
Corsinvest/cv4pve-autosnap
Automatic snapshot tool for Proxmox VE
Version Downloads Last updated
8.1.5 33 3/28/2024
8.1.4 50 3/22/2024
8.1.3 43 2/29/2024
8.1.2 61 2/13/2024
8.1.1 53 2/12/2024
8.1.0 155 12/11/2023
8.0.3 110 9/22/2023
8.0.2 70 9/18/2023
8.0.1 107 8/11/2023
8.0.0 96 6/23/2023
7.4.6 107 6/16/2023
7.4.5 88 6/8/2023
7.4.4 90 5/29/2023
7.4.3 81 5/10/2023
7.4.2 90 5/5/2023
7.4.1 114 4/14/2023
7.4.0 112 3/23/2023
7.3.8 136 11/3/2022
7.3.7 322 9/7/2022
7.3.6 121 6/16/2022
7.3.5 121 6/14/2022
7.3.4 133 5/27/2022
7.3.2 217 5/3/2022
7.3.1 130 4/26/2022
7.3.0 128 4/24/2022
3.2.0 499 1/31/2022
3.1.2 310 1/4/2022
3.1.1 308 12/16/2021
3.1.0 628 12/6/2021
3.0.0 397 10/31/2021
2.8.1 391 5/1/2021
2.8.0 359 4/28/2021
2.7.0 505 12/15/2020
2.6.11 490 10/19/2020
2.6.10 434 10/15/2020
2.6.9 426 10/12/2020
2.6.8 420 9/28/2020
2.6.7 441 9/28/2020
2.6.6 420 9/25/2020
2.6.5 472 8/24/2020
2.6.3 500 7/30/2020
2.6.2 477 7/23/2020
2.6.1 463 7/20/2020
2.6.0 477 7/17/2020
2.5.7 461 7/14/2020
2.5.6 478 7/13/2020
2.5.4 470 6/22/2020
2.5.3 514 6/20/2020
2.5.2 501 6/20/2020
2.5.1 508 6/20/2020
2.5.0 483 6/20/2020
2.4.0 475 5/12/2020
2.3.3 485 5/10/2020
2.3.2 491 5/8/2020
2.3.1 462 4/24/2020
2.3.0 462 4/16/2020
1.3.0 464 4/15/2020
1.2.0 478 2/25/2020
1.1.1 506 2/21/2020
1.1.0 586 1/30/2020
1.0.1 499 12/27/2019
1.0.0 530 12/17/2019