Corsinvest.ProxmoxVE.Api.Extension
2.1.0
See the version list below for details.
dotnet add package Corsinvest.ProxmoxVE.Api.Extension --version 2.1.0
NuGet\Install-Package Corsinvest.ProxmoxVE.Api.Extension -Version 2.1.0
<PackageReference Include="Corsinvest.ProxmoxVE.Api.Extension" Version="2.1.0" />
paket add Corsinvest.ProxmoxVE.Api.Extension --version 2.1.0
#r "nuget: Corsinvest.ProxmoxVE.Api.Extension, 2.1.0"
// Install Corsinvest.ProxmoxVE.Api.Extension as a Cake Addin #addin nuget:?package=Corsinvest.ProxmoxVE.Api.Extension&version=2.1.0 // Install Corsinvest.ProxmoxVE.Api.Extension as a Cake Tool #tool nuget:?package=Corsinvest.ProxmoxVE.Api.Extension&version=2.1.0
Corsinvest.ProxmoxVE.Api
Proxmox VE Client API .Net
______ _ __
/ ____/___ __________(_)___ _ _____ _____/ /_
/ / / __ \/ ___/ ___/ / __ \ | / / _ \/ ___/ __/
/ /___/ /_/ / / (__ ) / / / / |/ / __(__ ) /_
\____/\____/_/ /____/_/_/ /_/|___/\___/____/\__/
Corsinvest for Proxmox VE Api Client (Made in Italy)
Copyright and License
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
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 | Versions 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. |
-
.NETStandard 2.0
- BetterConsoleTables (>= 1.1.2)
- Corsinvest.ProxmoxVE.Api (>= 2.1.0)
- Corsinvest.ProxmoxVE.Api.Metadata (>= 1.1.0)
- McMaster.Extensions.CommandLineUtils (>= 2.4.2)
NuGet packages (6)
Showing the top 5 NuGet packages that depend on Corsinvest.ProxmoxVE.Api.Extension:
Package | Downloads |
---|---|
Corsinvest.ProxmoxVE.Api.Shell
Corsinvest for Proxmox VE Api Shell |
|
Corsinvest.ProxmoxVE.AutoSnap.Api
Package Description |
|
Corsinvest.ProxmoxVE.Diagnostic.Api
Corsinvest for Proxmox VE Diagnostic Api |
|
Corsinvest.ProxmoxVE.Metrics.Exporter.Api
Corsinvest for Proxmox VE Metrics Exporter Api |
|
Corsinvest.ProxmoxVE.NodeProtect.Api
Corsinvest for Proxmox VE Node Protrect |
GitHub repositories (2)
Showing the top 2 popular GitHub repositories that depend on Corsinvest.ProxmoxVE.Api.Extension:
Repository | Stars |
---|---|
Corsinvest/cv4pve-autosnap
Automatic snapshot tool for Proxmox VE
|
|
Corsinvest/cv4pve-admin
Corsinvest for Proxmox VE Web Admin Clusters - vCenter but for Proxmoxm VE
|
Version | Downloads | Last updated |
---|---|---|
8.2.5 | 296 | 9/19/2024 |
8.2.4 | 383 | 8/13/2024 |
8.2.3 | 320 | 7/15/2024 |
8.2.2 | 5,398 | 6/14/2024 |
8.2.1 | 2,307 | 5/8/2024 |
8.2.0 | 283 | 4/26/2024 |
8.1.7 | 184 | 4/19/2024 |
8.1.6 | 334 | 4/2/2024 |
8.1.5 | 206 | 3/28/2024 |
8.1.4 | 166 | 3/22/2024 |
8.1.3 | 6,126 | 2/29/2024 |
8.1.2 | 138 | 2/13/2024 |
8.1.1 | 107 | 2/12/2024 |
8.1.0 | 6,795 | 12/11/2023 |
8.0.3 | 1,020 | 9/22/2023 |
8.0.2 | 440 | 9/18/2023 |
8.0.1 | 300 | 8/11/2023 |
8.0.0 | 300 | 6/23/2023 |
7.4.6 | 1,821 | 6/16/2023 |
7.4.5 | 241 | 6/8/2023 |
7.4.4 | 774 | 5/29/2023 |
7.4.3 | 350 | 5/10/2023 |
7.4.2 | 197 | 5/5/2023 |
7.4.1 | 512 | 4/14/2023 |
7.4.0 | 323 | 3/23/2023 |
7.3.8 | 631 | 11/3/2022 |
7.3.7 | 1,169 | 9/7/2022 |
7.3.6 | 1,421 | 6/16/2022 |
7.3.5 | 650 | 6/14/2022 |
7.3.4 | 3,171 | 5/27/2022 |
7.3.2 | 1,001 | 5/3/2022 |
7.3.1 | 800 | 4/26/2022 |
7.3.0 | 733 | 4/5/2022 |
3.2.0 | 884 | 1/31/2022 |
3.1.3 | 1,272 | 1/4/2022 |
3.1.2 | 514 | 12/16/2021 |
3.1.1 | 509 | 12/16/2021 |
3.1.0 | 865 | 12/6/2021 |
3.0.0 | 1,216 | 10/31/2021 |
2.8.0 | 1,654 | 4/28/2021 |
2.7.0 | 1,496 | 12/15/2020 |
2.6.11 | 1,039 | 10/19/2020 |
2.6.10 | 716 | 10/15/2020 |
2.6.9 | 1,702 | 10/12/2020 |
2.6.8 | 734 | 9/28/2020 |
2.6.7 | 1,982 | 9/28/2020 |
2.6.6 | 714 | 9/25/2020 |
2.6.5 | 1,453 | 8/24/2020 |
2.6.2 | 1,479 | 7/30/2020 |
2.6.1 | 1,378 | 7/20/2020 |
2.6.0 | 1,452 | 7/17/2020 |
2.5.7 | 1,247 | 7/14/2020 |
2.5.6 | 758 | 7/13/2020 |
2.5.4 | 705 | 6/22/2020 |
2.5.3 | 1,995 | 6/20/2020 |
2.5.2 | 773 | 6/20/2020 |
2.5.1 | 807 | 6/20/2020 |
2.5.0 | 798 | 6/20/2020 |
2.4.0 | 1,694 | 5/12/2020 |
2.3.3 | 790 | 5/10/2020 |
2.3.1 | 808 | 5/8/2020 |
2.3.0 | 2,019 | 4/16/2020 |
2.2.3 | 1,489 | 2/21/2020 |
2.2.2 | 1,305 | 1/30/2020 |
2.2.1 | 980 | 12/27/2019 |
2.2.0 | 1,021 | 12/17/2019 |
2.1.0 | 617 | 10/22/2019 |
2.0.0 | 602 | 10/9/2019 |
1.2.0 | 635 | 9/5/2019 |
1.1.3 | 641 | 8/26/2019 |
1.1.2 | 848 | 7/4/2019 |
1.1.1 | 645 | 7/4/2019 |
1.1.0 | 973 | 7/2/2019 |
Change licensing