mirror of
https://github.com/Tribufu/ProxmoxSharp
synced 2026-08-18 01:01:05 +00:00
Create basic api client
This commit is contained in:
parent
3f80ace7b8
commit
6d584cc063
29 changed files with 1008 additions and 1 deletions
34
src/Tribufu.Proxmox/Models/ProxmoxSupportInfo.cs
Normal file
34
src/Tribufu.Proxmox/Models/ProxmoxSupportInfo.cs
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
// Copyright (c) Tribufu. All Rights Reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Tribufu.Proxmox.Models
|
||||
{
|
||||
public class ProxmoxSupportInfo
|
||||
{
|
||||
[JsonProperty("backup-max-workers")]
|
||||
public bool BackupMaxWorkers { get; set; }
|
||||
|
||||
[JsonProperty("pbs-library-version")]
|
||||
public string PbsLibraryVersion { get; set; }
|
||||
|
||||
[JsonProperty("pbs-masterkey")]
|
||||
public bool PbsMasterkey { get; set; }
|
||||
|
||||
[JsonProperty("backup-fleecing")]
|
||||
public bool BackupFleecing { get; set; }
|
||||
|
||||
[JsonProperty("query-bitmap-info")]
|
||||
public bool QueryBitmapInfo { get; set; }
|
||||
|
||||
[JsonProperty("pbs-dirty-bitmap")]
|
||||
public bool PbsDirtyBitmap { get; set; }
|
||||
|
||||
[JsonProperty("pbs-dirty-bitmap-savevm")]
|
||||
public bool PbsDirtyBitmapSaveVm { get; set; }
|
||||
|
||||
[JsonProperty("pbs-dirty-bitmap-migration")]
|
||||
public bool PbsDirtyBitmapMigration { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue